time-to-botec/js/node_modules/@stdlib/assert/is-big-endian/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.7 KiB

Big Endian

Check if an environment is big endian.

Usage

var IS_BIG_ENDIAN = require( '@stdlib/assert/is-big-endian' );

IS_BIG_ENDIAN

Boolean indicating if an environment is big endian.

var bool = IS_BIG_ENDIAN;
// returns <boolean>

Examples

var IS_BIG_ENDIAN = require( '@stdlib/assert/is-big-endian' );

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

## CLI

Usage

Usage: is-big-endian [options]

Options:

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

Examples

$ is-big-endian
<boolean>