1.0.0 • Published 10 years ago
dothis v1.0.0
dothis
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.' ) });
1.0.0
10 years ago