wing-timer Install $ npm install wing-timer Usage import { Timeout, Interval } from 'wing-timer'; const timer = new Timeout(1000, () => { console.log('Timeout timer excuted.'); }); function start() { timer.start(); } function stop() { if (timer.excuted) timer.clear(); }