IS_ELECTRON_MAIN

Check if the runtime is the main Electron process.

Usage

var IS_ELECTRON_MAIN = require( '@stdlib/assert/is-electron-main' );

IS_ELECTRON_MAIN

Boolean indicating if the runtime is the main Electron process.

var bool = IS_ELECTRON_MAIN;
// returns <boolean>

Examples

var IS_ELECTRON_MAIN = require( '@stdlib/assert/is-electron-main' );

console.log( IS_ELECTRON_MAIN );
// => <boolean>
Did you find this page helpful?