Skip to content

Latest commit

 

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

README.md

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>

See Also