Detect native
SharedArrayBuffer
support.
var hasSharedArrayBufferSupport = require( '@stdlib/assert/has-sharedarraybuffer-support' );
Detects if a runtime environment supports SharedArrayBuffer
.
var bool = hasSharedArrayBufferSupport();
// returns <boolean>
var hasSharedArrayBufferSupport = require( '@stdlib/assert/has-sharedarraybuffer-support' );
var bool = hasSharedArrayBufferSupport();
if ( bool ) {
console.log( 'Environment has SharedArrayBuffer support.' );
} else {
console.log( 'Environment lacks SharedArrayBuffer support.' );
}
Usage: has-sharedarraybuffer-support [options]
Options:
-h, --help Print this message.
-V, --version Print the package version.
$ has-sharedarraybuffer-support
<boolean>