/
alt3rmann
/
label-studio
Обзор
Документация
Войти
/
alt3rmann
/
label-studio
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
develop
web/libs/editor/src/utils/debounce.js
27 строк
741 B
Raul Martin
ci: enable some rules in biome (#5903)
24 июл 2024, 17:36
Не верифицирован
24 июл 2024, 17:36
69f4e0e
Код
Авторство
О чём код?
/** * Returns a function, that, as long as it continues to be invoked, * will not be triggered. The function will be called after it * stops being called for N milliseconds. If `immediate` is passed, * trigger the function on the leading edge, instead of the trailing. * * @param {function} func * @param {number} wait * @param {boolean} immediate */ export function debounce(func, wait, immediate = false) { let timeout; return function (...args) { const later = () => { timeout = null; if (!immediate) { func.apply(this, args); } }; const callNow = immediate && !timeout; clearTimeout(timeout); timeout = setTimeout(later, wait); if (callNow) func.apply(this, args); }; }