time-to-botec/squiggle/node_modules/@stdlib/utils/global/docs/repl.txt

26 lines
559 B
Plaintext
Raw Normal View History

{{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
--------