c2-debounce-af

debounce at animationframe

Usage no npm install needed!

<script type="module">
  import c2DebounceAf from 'https://cdn.skypack.dev/c2-debounce-af';
</script>

README

debounce af

install

$ npm install c2-debounce-af

require

var daf = require("c2-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)
});