Skip to content

Latest commit

 

History

History
73 lines (46 loc) · 1.42 KB

File metadata and controls

73 lines (46 loc) · 1.42 KB

IS_DARWIN

Boolean indicating if the current process is running on Darwin.

Usage

var IS_DARWIN = require( '@stdlib/assert/is-darwin' );

IS_DARWIN

Boolean indicating if the current process is running on Darwin.

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

Examples

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

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