# IS_ELECTRON > Check if the runtime is [Electron][electron].
## Usage ```javascript var IS_ELECTRON = require( '@stdlib/assert/is-electron' ); ``` #### IS_ELECTRON `Boolean` indicating if the runtime is [Electron][electron]. ```javascript var bool = IS_ELECTRON; // returns ```
## Examples ```javascript var IS_ELECTRON = require( '@stdlib/assert/is-electron' ); console.log( IS_ELECTRON ); // => ```