time-to-botec/squiggle/node_modules/@stdlib/utils/next-tick/docs/repl.txt
NunoSempere b6addc7f05 feat: add the node modules
Necessary in order to clearly see the squiggle hotwiring.
2022-12-03 12:44:49 +00:00

24 lines
525 B
Plaintext

{{alias}}( clbk[, ...args] )
Adds a callback to the "next tick queue".
The queue is fully drained after the current operation on the JavaScript
stack runs to completion and before the event loop is allowed to continue.
Parameters
----------
clbk: Function
Callback to invoke.
...args: any (optional)
Arguments to provide to the callback upon invocation.
Examples
--------
> function f() { console.log( 'beep' ); };
> {{alias}}( f )
See Also
--------