Skip to main content

isSharedArrayBuffer

function isSharedArrayBuffer
Jump to headingisSharedArrayBuffer(object: unknown): object is SharedArrayBuffer

Returns true if the value is a built-in SharedArrayBuffer instance. This does not include ArrayBuffer instances. Usually, it is desirable to test for both; See util.types.isAnyArrayBuffer() for that.

util.types.isSharedArrayBuffer(new ArrayBuffer());  // Returns false
util.types.isSharedArrayBuffer(new SharedArrayBuffer());  // Returns true

Parameters Jump to heading

Jump to headingobject: unknown

Return Type Jump to heading

object is SharedArrayBuffer
Back to top