UNPKG

kuyruk

Version:

Multifunctional Asynchronous Concurrent Queue

13 lines (10 loc) 179 B
'use strict'; // prettier-ignore const debounce = (fn, interval) => (...args) => { setTimeout(fn, interval, null, ...args); }; module.exports = { debounce, };