1.0.1 • Published 6 years ago

swiss-watch v1.0.1

Weekly downloads
3
License
GPL-3.0
Repository
github
Last release
6 years ago

swiss-watch

Basic timer that uses diffs in timestamps instead of relying on setTimeout firing at exact times. Can either work like a regular stop watch, or a count down.

countdown

var timer = new SwissWatch();

timer
.on('start', () => { // })
.on('finish', () => { // will be called after 60 seconds })
.on('stop', () => { // })
.on('tick', (status: ISwissWatchStatus) => {

}).start(60);

timer

var timer = new SwissWatch();

timer
.on('start', () => { // })
.on('finish', () => { // })
.on('stop', () => { // })
.on('tick', (status: ISwissWatchStatus) => {

}).start();

setTimeout(() => {
    timer.stop();
}, 5000);