/taimaa

Yet another stable timer implementation using `ended` event fired by AudioBufferSourceNode

Primary LanguageJavaScript

taimaa Node.js CI

taima

Yet another stable timer implementation using ended event fired by AudioBufferSourceNode

install

$ npm install taimaa

Usage

import Timer from "taimaa";

var t = new Timer(new AudioContext());
var id;

id = t.setTimeout(fn, ms);
t.clearTimeout(id);

id = t.setInterval(fn, ms);
t.clearInterval(id);