Repository URL to install this package:
|
Version:
2.4.3 ▾
|
// Underscore.js 1.8.3
// http://underscorejs.org
// (c) 2009-2015 Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors
// Underscore may be freely distributed under the MIT license.
export function throttle(func, wait, options = {}) {
let context, args, result;
let timeout = null;
let previous = 0;
const later = function () {
previous = options.leading === false ? 0 : Date.now();
timeout = null;
result = func.apply(context, args);
if (!timeout)
context = args = null;
};
return function () {
const now = Date.now();
if (!previous && options.leading === false)
previous = now;
const remaining = wait - (now - previous);
context = this;
args = arguments;
if (remaining <= 0 || remaining > wait) {
if (timeout) {
clearTimeout(timeout);
timeout = null;
}
previous = now;
result = func.apply(context, args);
if (!timeout)
context = args = null;
}
else if (!timeout && options.trailing !== false) {
timeout = setTimeout(later, remaining);
}
return result;
};
}
export function once(func) {
let done = false;
let memo;
return function () {
if (!done) {
done = true;
memo = func();
}
return memo;
};
}
//# sourceMappingURL=callback.js.map