1.3.0 • Published 8 years ago
next-job v1.3.0
next-job
Another environment agnostic nextTick polyfill
To be used in environment agnostic modules that need nextTick functionality.
- When run in Node.js
process.nextTickis used - In modern browsers microtask resolution is guaranteed by
MutationObserver93.82%] - In other engines
setTimeout(fn)is used as fallback
Installation
npm install --save next-jobSyntax
nextJob(func[, context, param1, param2, ...])func
A function to be executed.
context Optional
The context to be bound by func.
param1, param2, ..., paramN Optional
Additional parameters which are passed through to func.
1.3.0
8 years ago