time-to-botec/js/node_modules/@stdlib/os/arch/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.6 KiB

Architecture

Operating system CPU architecture.

Usage

var ARCH = require( '@stdlib/os/arch' );

ARCH

Operating system CPU architecture.

console.log( ARCH );
// => <string>

Examples

var ARCH = require( '@stdlib/os/arch' );

if ( ARCH === 'arm' || ARCH === 'arm64' ) {
    console.log( 'Running on ARM...' );
} else {
    console.log( 'Running on something else...' );
}

CLI

Usage

Usage: arch [options]

Options:

  -h,    --help                Print this message.
  -V,    --version             Print the package version.

Examples

$ arch