Skip to content

fabiospampinato/immediato

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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

About

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

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published