1.0.4 • Published 7 months ago

wtimer v1.0.4

Weekly downloads
-
License
SEE LICENSE IN LI...
Repository
github
Last release
7 months 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

7 months ago

1.0.3

7 months ago

1.0.2

7 months ago

1.0.1

7 months ago

1.0.0

7 months ago