Skip to content

Latest commit

 

History

History

has-sharedarraybuffer-support

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

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>

See Also