time-to-botec/squiggle/node_modules/@stdlib/utils/global/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

26 lines
559 B
Plaintext

{{alias}}( [codegen] )
Returns the global object.
Parameters
----------
codegen: boolean (optional)
Boolean indicating whether to use code generation to resolve the global
object. Code generation is the *most* reliable means for resolving the
global object; however, using code generation may violate content
security policies (CSPs). Default: false.
Returns
-------
global: Object
Global object.
Examples
--------
> var g = {{alias}}()
{...}
See Also
--------