Create
Example
const Timer = require('nodetimer.js')
const timer = new Timer(
'5 seconds',
's',
() => { console.log("Timer is done!") },
(at) => { console.log(at) }
)Params (in order)
endAt
tickTime
onEnd
onTick
Last updated