1.0.0 • Published 1 year ago

immediato v1.0.0

Weekly downloads
-
License
-
Repository
github
Last release
1 year ago

Immediato

An isomorphic setImmediate implementation that doesn't prevent the process from exiting naturally.

This implementation requires the MessageChannel API, so it works the same everywhere, and the implementation is tiny.

Install

npm install --save immediato

Usage

import {setImmediate, clearImmediate} from 'immediato';

// Scheduling a function for execution

const immediateId = setImmediate ( () => {
  // Do something...
});

// Cancelling a scheduled function

clearImmediate ( immediateId );

License

MIT © Fabio Spampinato