|
||
---|---|---|
.. | ||
bin | ||
docs | ||
etc | ||
lib | ||
package.json | ||
README.md |
SharedArrayBuffer Support
Detect native
SharedArrayBuffer
support.
Usage
var hasSharedArrayBufferSupport = require( '@stdlib/assert/has-sharedarraybuffer-support' );
hasSharedArrayBufferSupport()
Detects if a runtime environment supports SharedArrayBuffer
.
var bool = hasSharedArrayBufferSupport();
// returns <boolean>
Examples
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.' );
}
CLI
Usage
Usage: has-sharedarraybuffer-support [options]
Options:
-h, --help Print this message.
-V, --version Print the package version.
Examples
$ has-sharedarraybuffer-support
<boolean>