Skip to content

Latest commit

 

History

History
93 lines (56 loc) · 1.36 KB

File metadata and controls

93 lines (56 loc) · 1.36 KB

Int16Array Support

Detect native Int16Array support.

Usage

var hasInt16ArraySupport = require( '@stdlib/utils/detect-int16array-support' );

hasInt16ArraySupport()

Detects if a runtime environment supports Int16Array.

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

Examples

var hasInt16ArraySupport = require( '@stdlib/utils/detect-int16array-support' );

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

CLI

Usage

Usage: hasint16arrays [options]

Options:

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

Examples

$ hasint16arrays
<boolean>