long-span accept timer. >= Math.pow(2, 31)
npm install supertimerInstall with npm:
npm install supertimer
``js`
var supr = require('supertimer');
var timer = supr.setTimeout(function(){ console.log('END.') }, Number.MAX_VALUE);
// => execute "END" after a long-long time.
`html
setTimeout(function(){ console.log('END.') }, Number.MAX_VALUE);
// => execute "END" after a long-long time.
``