/var/www/greso.tech/server/nsm/node_modules/timers-ext
NameSizeModeActions
promise/-0755rm
promise_/-0755rm
test/-0755rm
.editorconfig2720644editdlrm
CHANGELOG.md13830644editdlrm
CHANGES5770644editdlrm
delay.js5060644editdlrm
LICENSE7730644editdlrm
max-timeout.js440644editdlrm
once.js10020644editdlrm
package.json8860644editdlrm
README.md25720644editdlrm
throttle.js7270644editdlrm
valid-timeout.js2880644editdlrm
Edit: /var/www/greso.tech/server/nsm/node_modules/timers-ext/once.js (1002B)
// It's actually "debounce" "use strict"; var isValue = require("es5-ext/object/is-value") , callable = require("es5-ext/object/valid-callable") , nextTick = require("next-tick") , validTimeout = require("./valid-timeout"); var apply = Function.prototype.apply; module.exports = function (fn/*, timeout*/) { var scheduled, run, context, args, delay, timeout = arguments[1], handle; callable(fn); if (isValue(timeout)) { timeout = validTimeout(timeout); delay = setTimeout; } else { delay = nextTick; } run = function () { if (!scheduled) return; // IE8 tends to not clear immediate timeouts properly scheduled = false; handle = null; apply.call(fn, context, args); context = null; args = null; }; return function () { if (scheduled) { if (!isValue(handle)) { // 'nextTick' based, no room for debounce return; } clearTimeout(handle); } scheduled = true; context = this; args = arguments; handle = delay(run, timeout); }; };