time-to-botec/js/node_modules/@stdlib/assert/is-electron-main/README.md
NunoSempere b6addc7f05 feat: add the node modules
Necessary in order to clearly see the squiggle hotwiring.
2022-12-03 12:44:49 +00:00

1.3 KiB

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>