2.0.1 • Published 9 years ago

frp-tick v2.0.1

Weekly downloads
1
License
MIT
Repository
github
Last release
9 years ago

frp-tick

experimental

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

NPM

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 associated

License

MIT, see LICENSE.md for details.