UNPKG

v-debounce

Version:

Input debounce directive for Vue.js

13 lines (11 loc) 264 B
module.exports = function (fn, delay) { let timeoutID = null return function () { clearTimeout(timeoutID) const args = arguments const self = this timeoutID = setTimeout(function () { fn.apply(self, args) }, delay) } }