2.0.1 • Published 10 years ago

set-dateout v2.0.1

Weekly downloads
3
License
MIT
Repository
github
Last release
10 years ago

set-dateout

Like setTimeout, but for dates in the far future. (specifically, this module overcomes the 32-bit integer overflow issue)

Install

$ npm install set-dateout

Use

var setDateout = require('set-dateout');

setDateout(function (){
  console.log('yeah!! it\'s a new century, baby!!');
}, new Date('January 1, 2100'));

License

MIT

solution modified from http://stackoverflow.com/a/18182660