time-to-botec/js/node_modules/@stdlib/assert/has-int32array-support
NunoSempere b6addc7f05 feat: add the node modules
Necessary in order to clearly see the squiggle hotwiring.
2022-12-03 12:44:49 +00:00
..
bin feat: add the node modules 2022-12-03 12:44:49 +00:00
docs feat: add the node modules 2022-12-03 12:44:49 +00:00
etc feat: add the node modules 2022-12-03 12:44:49 +00:00
lib feat: add the node modules 2022-12-03 12:44:49 +00:00
package.json feat: add the node modules 2022-12-03 12:44:49 +00:00
README.md feat: add the node modules 2022-12-03 12:44:49 +00:00

Int32Array Support

Detect native Int32Array support.

Usage

var hasInt32ArraySupport = require( '@stdlib/assert/has-int32array-support' );

hasInt32ArraySupport()

Detects if a runtime environment supports Int32Array.

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

Examples

var hasInt32ArraySupport = require( '@stdlib/assert/has-int32array-support' );

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

CLI

Usage

Usage: has-int32array-support [options]

Options:

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

Examples

$ has-int32array-support
<boolean>