Skip to content

v1.0.13

Choose a tag to compare

@brandonlehmann brandonlehmann released this 27 Dec 19:03
· 5 commits to master since this release
6c4acd5

Event-based Timer/Metronome

Documentation

https://gibme-npm.github.io/timer/

Sample Code

import Timer from '@gibme/timer';

const timer = new Timer(60_000);

timer.on('tick', () => {
   // do something 
});

timer.start();