0.1.1 • Published 9 years ago

raf-debounce v0.1.1

Weekly downloads
140
License
-
Repository
-
Last release
9 years ago

raf-debounce

Debounces the execution of a function until the next animation frame.

The supplied function gets called only once. The last arguments supplied to the debounced function will be used, which can be called multiple times.

How to use

import debounce from 'raf-debounce';
const paint = debounce(function(val){
  document.body.innerHTML = val;
});
window.onmousemove = function(){
  paint(ev.clientX);
}
0.1.1

9 years ago

0.1.0

9 years ago