1.0.0 • Published 9 years ago

dothis v1.0.0

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

dothis

browser support

You can use dothis to be able to call functions after a certain period of time (kind of like setTimeout) or on a specific date.

Example

var dothis = require( 'dothis' );

// Using with a time
dothis( function( offBy, percentage ) {  console.log( 'Finished', offBy, 'milliseconds late.' ); })
.in( 1000 ) // in one second
.update( function( offBy, percentage ) { console.log( 'We\'re', percentage, 'done.' ) });

// Using with a date
dothis( function( offBy, percentage ) {  console.log( 'Finished', offBy, 'milliseconds late.' ); })
.at( new Date( Datw.now() + 1000 ) ) // use a date to represent in one second
.update( function( offBy, percentage ) { console.log( 'We\'re', percentage, 'done.' ) });