@f/raf-debounce
v1.0.1
Published
Debounced raf function
Downloads
6
Readme
raf-debounce
Debounced raf (requestAnimationFrame) function
Installation
$ npm install @f/raf-debounce
Usage
var rafDebounce = require('@f/raf-debounce')
var debouncedRender = rafDebounce(render)
subscribe(debouncedRender)
API
rafDebounce(fn)
fn
- The function you want to call no more than once every animation frame.
Returns: A debounced version of fn
that runs only once every animation frame (at most). When called, that function returns a cancel function that can be used to cancel a pending debounce.
License
MIT