frame-debounce
v1.0.1
Published
Decorate a function so that it only fires once per frame, using `requestAnimationFrame` in the browser and `setImmediate` or `process.nextTick` in node.
Readme
frame-debounce 
Decorate a function so that it only fires once per frame, using
requestAnimationFrame in the browser and setImmediate or process.nextTick
in node.
Usage
debounced = debounce(fn, [immediate])
Returns a decorated version of fn, that can only be called once per frame
See Also
License
MIT. See LICENSE.md for details.

