@alcadica/debounce
v1.0.0
Published
A function debouncer
Downloads
2
Readme
@alcadica/service.debounce
Install
npm i --save @alcadica/service.debounce
Examples
import debounce from '@alcadica/debounce';
let counter = 0;
const debounce = debounce(() => counter++, 400);
debounce();
debounce();
debounce();
setTimeout(() => {
console.log(counter); // will output 1
}, 1000)