Detalhes do pacote

is-global-object

lamansky16.1kMIT1.0.0

Returns true if a value is the global or window object.

global, window, object, check

readme (leia-me)

is-global-object

Returns true if a value is the global or window object of the current context.

Installation

Requires Node.js 4.0.0 or above.

npm install is-global-object --save

The module exports a single function.

Usage Example

const isGlobalObject = require('is-global-object')

isGlobalObject(global) // true
isGlobalObject({}) // false