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

isWindows

Boolean indicating if the current process is running on Windows.

Usage

var IS_WINDOWS = require( '@stdlib/assert/is-windows' );

IS_WINDOWS

Boolean indicating if the current process is running on Windows.

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

Examples

var PLATFORM = require( '@stdlib/os/platform' );
var IS_WINDOWS = require( '@stdlib/assert/is-windows' );

if ( IS_WINDOWS ) {
    console.log( 'Running on Windows...' );
} else {
    console.log( 'Running on %s...', PLATFORM );
}