Mohammad Asif cf937194cb Removed un-waned things 1. hace 5 meses
..
.github cf937194cb Removed un-waned things 1. hace 5 meses
test cf937194cb Removed un-waned things 1. hace 5 meses
.eslintrc cf937194cb Removed un-waned things 1. hace 5 meses
.nycrc cf937194cb Removed un-waned things 1. hace 5 meses
CHANGELOG.md cf937194cb Removed un-waned things 1. hace 5 meses
LICENSE cf937194cb Removed un-waned things 1. hace 5 meses
README.md cf937194cb Removed un-waned things 1. hace 5 meses
index.d.ts cf937194cb Removed un-waned things 1. hace 5 meses
index.js cf937194cb Removed un-waned things 1. hace 5 meses
package.json cf937194cb Removed un-waned things 1. hace 5 meses
tsconfig.json cf937194cb Removed un-waned things 1. hace 5 meses

README.md

is-shared-array-buffer Version Badge

github actions coverage License Downloads

npm badge

Is this value a JS SharedArrayBuffer? This module works cross-realm/iframe, does not depend on instanceof or mutable properties, and despite ES6 Symbol.toStringTag.

Example

var assert = require('assert');
var isSharedArrayBuffer = require('is-shared-array-buffer');

assert(!isSharedArrayBuffer(function () {}));
assert(!isSharedArrayBuffer(null));
assert(!isSharedArrayBuffer(function* () { yield 42; return Infinity; });
assert(!isSharedArrayBuffer(Symbol('foo')));
assert(!isSharedArrayBuffer(1n));
assert(!isSharedArrayBuffer(Object(1n)));

assert(!isSharedArrayBuffer(new Set()));
assert(!isSharedArrayBuffer(new WeakSet()));
assert(!isSharedArrayBuffer(new Map()));
assert(!isSharedArrayBuffer(new WeakMap()));
assert(!isSharedArrayBuffer(new WeakRef({})));
assert(!isSharedArrayBuffer(new FinalizationRegistry(() => {})));
assert(!isSharedArrayBuffer(new ArrayBuffer()));

assert(isSharedArrayBuffer(new SharedArrayBuffer()));

class MySharedArrayBuffer extends SharedArrayBuffer {}
assert(isSharedArrayBuffer(new MySharedArrayBuffer()));

Tests

Simply clone the repo, npm install, and run npm test