1.0.4 • Published 3 years ago

wtimer v1.0.4

Weekly downloads
-
License
SEE LICENSE IN LI...
Repository
github
Last release
3 years ago

Getting Started

npm install wtimer

Example

import createInterval from 'wtimer';

// init
const wtimer = createInterval(10); // 10ms interval in worker

// set interval
const p = wtimer.setInterval(() => {
  console.log('Hello World');
}, 1000);
// clear interval
wtimer.clearInterval(p);

// clear all interval
wtimer.terminate();
1.0.4

3 years ago

1.0.3

3 years ago

1.0.2

3 years ago

1.0.1

3 years ago

1.0.0

3 years ago