time-to-botec/js/node_modules/@stdlib/utils/global
2022-12-07 19:14:31 +00:00
..
docs feat: add the node modules 2022-12-03 12:44:49 +00:00
lib tweak: make null window an object in order for this to run with bun 2022-12-07 19:14:31 +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 );