Skip to content

Latest commit

 

History

History
47 lines (28 loc) · 675 Bytes

File metadata and controls

47 lines (28 loc) · 675 Bytes

isNodeREPL

Check if running in a Node.js REPL environment.

Usage

var isNodeREPL = require( '@stdlib/assert/is-node-repl' );

isNodeREPL()

Returns a boolean indicating if running in a Node.js REPL environment.

var bool = isNodeREPL();
// returns <boolean>

Examples

var isNodeREPL = require( '@stdlib/assert/is-node-repl' );

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