Skip to content

Latest commit

 

History

History
9 lines (8 loc) · 162 Bytes

README.md

File metadata and controls

9 lines (8 loc) · 162 Bytes
var thymer = require('thymer');

thymer.wait(5000).every(1000).for(3).do(function(){
	console.log('tick');
}).then(function(){
	console.log('boom');
});