1.0.0 • Published 11 years ago
bloody-debounce-af v1.0.0
debounce af
install
$ npm install bloody-debounce-afrequire
var daf = require("bloody-debounce-af")api
daf(fn) > debounced
creates a function which, when called, waits until there is no call
until an animation frame is triggered. then executes fn with its
the last arguments that has been passed to debounced.
example
var render = daf(function(text){
div.textContent = text
})
input.addEventListener("input", function(eventObject){
render(eventObject.currentTarget.value)
})1.0.0
11 years ago