Skip to content

Files

Latest commit

bf9a6e1 · Jul 31, 2019

History

History

global

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 );