32 lines
622 B
JavaScript
32 lines
622 B
JavaScript
/**
|
|
* DO NOT EDIT THIS FILE.
|
|
* See the following change record for more information,
|
|
* https://www.drupal.org/node/2815083
|
|
* @preserve
|
|
**/
|
|
|
|
Drupal.debounce = function (func, wait, immediate) {
|
|
let timeout;
|
|
let result;
|
|
return function (...args) {
|
|
const context = this;
|
|
|
|
const later = function () {
|
|
timeout = null;
|
|
|
|
if (!immediate) {
|
|
result = func.apply(context, args);
|
|
}
|
|
};
|
|
|
|
const callNow = immediate && !timeout;
|
|
clearTimeout(timeout);
|
|
timeout = setTimeout(later, wait);
|
|
|
|
if (callNow) {
|
|
result = func.apply(context, args);
|
|
}
|
|
|
|
return result;
|
|
};
|
|
}; |