Skip to content

Latest commit

 

History

History
94 lines (55 loc) · 2.39 KB

File metadata and controls

94 lines (55 loc) · 2.39 KB

IS_ELECTRON_RENDERER

Check if the runtime is the Electron renderer process.

Usage

var IS_ELECTRON_RENDERER = require( '@stdlib/assert/is-electron-renderer' );

IS_ELECTRON_RENDERER

Boolean indicating if the runtime is the Electron renderer process.

var bool = IS_ELECTRON_RENDERER;
// returns <boolean>

Examples

var IS_ELECTRON_RENDERER = require( '@stdlib/assert/is-electron-renderer' );

console.log( IS_ELECTRON_RENDERER );
// => <boolean>

See Also