frp-tick
v2.0.1
Published
will return an Event. The event will fire when requestAnimationFrame evaluates. The event will return the difference in milliseconds since the last call.
Downloads
16
Maintainers
Readme
frp-tick
A function which will return an Event. The event will fire when requestAnimationFrame evaluates. The event will return the difference in milliseconds since the last call.
Usage
Example
var tick = require( 'frp-tick' );
var event = tick(); // created a new requestAnimation loop
event.watch( function( elapsed ) {
console.log( elapsed );
});
tick.stop( event ); // this will stop the Event from firing
tick.start( event ); // this will start it up again
tick.kill( event ); // this will stop the raf loop and clear all memory associatedLicense
MIT, see LICENSE.md for details.

