UNPKG

tiny-debounce

Version:

tiny debounce function alternative to lodash.debounce

12 lines (11 loc) 256 B
module.exports = function debounce (fn, delay) { var timeoutID = null return function () { clearTimeout(timeoutID) var args = arguments var that = this timeoutID = setTimeout(function () { fn.apply(that, args) }, delay) } }