time-to-botec/squiggle/node_modules/@stdlib/utils/global
NunoSempere b6addc7f05 feat: add the node modules
Necessary in order to clearly see the squiggle hotwiring.
2022-12-03 12:44:49 +00:00
..
docs feat: add the node modules 2022-12-03 12:44:49 +00:00
lib feat: add the node modules 2022-12-03 12:44:49 +00:00
package.json feat: add the node modules 2022-12-03 12:44:49 +00:00
README.md feat: add the node modules 2022-12-03 12:44:49 +00:00

Global

Return the global object.

Usage

var getGlobal = require( '@stdlib/utils/global' );

getGlobal( [codegen] )

Returns the global object.

var g = getGlobal();
// returns {...}

By default, the function does not use code generation when resolving the global object. While code generation is the most reliable means for resolving the global object, its use may violate content security policies (CSPs). To use code generation, provide a codegen argument equal to true.

var g = getGlobal( true );
// returns {...}

Examples

var getGlobal = require( '@stdlib/utils/global' );

// Resolve the global object:
var g = getGlobal();

// Display the object's contents:
console.log( g );