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

1.9 KiB

Int16Array Support

Detect native Int16Array support.

Usage

var hasInt16ArraySupport = require( '@stdlib/assert/has-int16array-support' );

hasInt16ArraySupport()

Detects if a runtime environment supports Int16Array.

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

Examples

var hasInt16ArraySupport = require( '@stdlib/assert/has-int16array-support' );

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

CLI

Usage

Usage: has-int16array-support [options]

Options:

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

Examples

$ has-int16array-support
<boolean>