Package Exports
- debounce-fn
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (debounce-fn) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
debounce-fn
Return a debounced version of the given function
Install
$ npm install debounce-fnUsage
var debounce = require('debounce-fn')
var yo = debounce(printYo, 250) // debounce for 250ms
yo()
yo()
yo()
setTimeout(yo, 300)
// first two calls will be debounced, and will give two outputs:
// "yo"
// "yo"
function printYo () {
console.log('yo')
}