Another environment agnostic nextTick polyfill
npm install smart-next-tick

To be used in environment agnostic modules that need nextTick functionality.
- When run in Node.js process.nextTick is used
- In modern browsers microtask resolution is guaranteed by MutationObserver [92.74%]
- In other engines setTimeout(fn) is used as fallback
``bash`
npm install --save smart-next-tick
``
nextTick(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`.