time-to-botec/js/node_modules/@stdlib/assert/has-bigint64array-support/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

2.0 KiB

BigInt64Array Support

Detect native BigInt64Array support.

Usage

var hasBigInt64ArraySupport = require( '@stdlib/assert/has-bigint64array-support' );

hasBigInt64ArraySupport()

Detects if a runtime environment supports BigInt64Array.

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

Examples

var hasBigInt64ArraySupport = require( '@stdlib/assert/has-bigint64array-support' );

var bool = hasBigInt64ArraySupport();
if ( bool ) {
    console.log( 'Environment has BigInt64Array support.' );
} else {
    console.log( 'Environment lacks BigInt64Array support.' );
}

CLI

Usage

Usage: has-bigint64array-support [options]

Options:

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

Examples

$ has-bigint64array-support
<boolean>