Bakhtina Sofya b84cb877be 1st comm 3 săptămâni în urmă
..
.github b84cb877be 1st comm 3 săptămâni în urmă
test b84cb877be 1st comm 3 săptămâni în urmă
.eslintrc b84cb877be 1st comm 3 săptămâni în urmă
CHANGELOG.md b84cb877be 1st comm 3 săptămâni în urmă
LICENSE b84cb877be 1st comm 3 săptămâni în urmă
README.md b84cb877be 1st comm 3 săptămâni în urmă
index.d.ts b84cb877be 1st comm 3 săptămâni în urmă
index.js b84cb877be 1st comm 3 săptămâni în urmă
package.json b84cb877be 1st comm 3 săptămâni în urmă
tsconfig.json b84cb877be 1st comm 3 săptămâni în urmă

README.md

possible-typed-array-names Version Badge

github actions coverage License Downloads

npm badge

A simple list of possible Typed Array names.

Example

const assert = require('assert');

const names = require('possible-typed-array-names');

assert(Array.isArray(names));
assert(names.every(name => (
    typeof name === 'string'
    && typeof globalThis[name] === 'function'
    && globalThis[name].name === name
)));

Tests

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

Security

Please email @ljharb or see https://tidelift.com/security if you have a potential security vulnerability to report.