which-typed-array
Version:
Which kind of Typed Array is this JavaScript value? Works cross-realm, without `instanceof`, and despite Symbol.toStringTag.
71 lines (61 loc) • 3.47 kB
Markdown
is this JavaScript value? Works cross-realm, without `instanceof`, and despite Symbol.toStringTag.
```js
var whichTypedArray = require('which-typed-array');
var assert = require('assert');
assert.equal(false, whichTypedArray(undefined));
assert.equal(false, whichTypedArray(null));
assert.equal(false, whichTypedArray(false));
assert.equal(false, whichTypedArray(true));
assert.equal(false, whichTypedArray([]));
assert.equal(false, whichTypedArray({}));
assert.equal(false, whichTypedArray(/a/g));
assert.equal(false, whichTypedArray(new RegExp('a', 'g')));
assert.equal(false, whichTypedArray(new Date()));
assert.equal(false, whichTypedArray(42));
assert.equal(false, whichTypedArray(NaN));
assert.equal(false, whichTypedArray(Infinity));
assert.equal(false, whichTypedArray(new Number(42)));
assert.equal(false, whichTypedArray('foo'));
assert.equal(false, whichTypedArray(Object('foo')));
assert.equal(false, whichTypedArray(function () {}));
assert.equal(false, whichTypedArray(function* () {}));
assert.equal(false, whichTypedArray(x => x * x));
assert.equal(false, whichTypedArray([]));
assert.equal('Int8Array', whichTypedArray(new Int8Array()));
assert.equal('Uint8Array', whichTypedArray(new Uint8Array()));
assert.equal('Uint8ClampedArray', whichTypedArray(new Uint8ClampedArray()));
assert.equal('Int16Array', whichTypedArray(new Int16Array()));
assert.equal('Uint16Array', whichTypedArray(new Uint16Array()));
assert.equal('Int32Array', whichTypedArray(new Int32Array()));
assert.equal('Uint32Array', whichTypedArray(new Uint32Array()));
assert.equal('Float32Array', whichTypedArray(new Float32Array()));
assert.equal('Float64Array', whichTypedArray(new Float64Array()));
assert.equal('BigInt64Array', whichTypedArray(new BigInt64Array()));
assert.equal('BigUint64Array', whichTypedArray(new BigUint64Array()));
```
Simply clone the repo, `npm install`, and run `npm test`
[ ]: https://npmjs.org/package/which-typed-array
[ ]: https://versionbadg.es/inspect-js/which-typed-array.svg
[ ]: https://david-dm.org/inspect-js/which-typed-array.svg
[ ]: https://david-dm.org/inspect-js/which-typed-array
[ ]: https://david-dm.org/inspect-js/which-typed-array/dev-status.svg
[ ]: https://david-dm.org/inspect-js/which-typed-array#info=devDependencies
[ ]: https://nodei.co/npm/which-typed-array.png?downloads=true&stars=true
[ ]: https://img.shields.io/npm/l/which-typed-array.svg
[ ]: LICENSE
[ ]: https://img.shields.io/npm/dm/which-typed-array.svg
[ ]: https://npm-stat.com/charts.html?package=which-typed-array
[ ]: https://codecov.io/gh/inspect-js/which-typed-array/branch/main/graphs/badge.svg
[ ]: https://app.codecov.io/gh/inspect-js/which-typed-array/
[ ]: https://img.shields.io/endpoint?url=https://github-actions-badge-u3jn4tfpocch.runkit.sh/inspect-js/which-typed-array
[ ]: https://github.com/inspect-js/which-typed-array/actions
[![github actions][actions-image]][actions-url]
[![coverage][codecov-image]][codecov-url]
[![dependency status][deps-svg]][deps-url]
[![dev dependency status][dev-deps-svg]][dev-deps-url]
[![License][license-image]][license-url]
[![Downloads][downloads-image]][downloads-url]
[![npm badge][npm-badge-png]][package-url]
Which kind of Typed Array