timeouts
v0.0.1
Published
thin wrapper on setTimeout to keep track of and clear timeouts
Readme
timeouts
trying to make it easier to clean up timeouts
Install
npm install timeoutsUsage
var Timeouts = require('timeouts')
var timeouts = Timeouts()
var tid1 = timeouts.timeout(function() {
console.log('yo')
}, 1000)
var tid2 = timeouts.timeout(function() {
console.log('not yo')
}, 1000)
timeouts.clear(tid1) // clear one timeout
timeouts.clearAll() // clear all timeouts created by this instance