Skip to content

Latest commit

 

History

History
15 lines (11 loc) · 192 Bytes

README.md

File metadata and controls

15 lines (11 loc) · 192 Bytes

A human-readable timer

var clock = new Clock();

clock.setInterval('1h 10m 15s 300ms');
clock.setTicker(function() {
	// ...
});

clock.start();

// stops the ticker
clock.stop();