prc b6c02717e6 Upload complete no-internet building environment. пре 1 година
..
.github b6c02717e6 Upload complete no-internet building environment. пре 1 година
test b6c02717e6 Upload complete no-internet building environment. пре 1 година
.eslintignore b6c02717e6 Upload complete no-internet building environment. пре 1 година
.eslintrc b6c02717e6 Upload complete no-internet building environment. пре 1 година
.nycrc b6c02717e6 Upload complete no-internet building environment. пре 1 година
CHANGELOG.md b6c02717e6 Upload complete no-internet building environment. пре 1 година
LICENSE b6c02717e6 Upload complete no-internet building environment. пре 1 година
README.md b6c02717e6 Upload complete no-internet building environment. пре 1 година
index.js b6c02717e6 Upload complete no-internet building environment. пре 1 година
package.json b6c02717e6 Upload complete no-internet building environment. пре 1 година

README.md

is-shared-array-buffer Version Badge

github actions coverage dependency status dev dependency status 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