1.0.1 • Published 4 years ago

set-interval-immediately v1.0.1

Weekly downloads
4
License
ISC
Repository
github
Last release
4 years ago

set-interval-immediately

To execute callback function of setInterval immediately.

Installation

npm install set-interval-immediately --save

Usage

The same usage as setInterval and works in both browsers & node.js.

const setIntervalImmediately = require('set-interval-immediately');

setIntervalImmediately(
  () => console.log(`I'd be executed immediately`),
  1000,
);