1.0.4 • Published 2 years ago

wtimer v1.0.4

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

2 years ago

1.0.3

2 years ago

1.0.2

2 years ago

1.0.1

2 years ago

1.0.0

2 years ago