setInterval and clearInterval implementation to support keep running on inactive tabs for Chrome, Firefox and IE
npm install worker-interval
npm install worker-interval
`Example
`javascript
import * as workerInterval from 'worker-interval';// setInterval
const intervalId = workerInterval.setInterval(/function/, 1000);
// clearInterval
workerInterval.clearInterval(intervalId);
``