get-global

0.0.1 • Public • Published

Get global

get-global is a simple tool for getting the global object. If it's running in the browser, it will return window, if it's running in node.js it will return GLOBAL, or whatever the global object is in the current runtime.

It will work in 'strict mode' too.

Installation

npm install get-global

How to use

Require get-global:

var getGlobal = require("get-global");
var globalObject = getGlobal();
 
globalObject === window; // in the browser
globalObject === GLOBAL; // in node.js

LICENSE

MIT

Dependencies (0)

    Dev Dependencies (2)

    Package Sidebar

    Install

    npm i get-global

    Weekly Downloads

    14

    Version

    0.0.1

    License

    none

    Last publish

    Collaborators

    • podefr