xiaofu-ruoyi-vue/node_modules/possible-typed-array-names
ffr b5131258d8 第一次提交 2024-04-23 08:05:40 +08:00
..
.github 第一次提交 2024-04-23 08:05:40 +08:00
test 第一次提交 2024-04-22 22:43:17 +08:00
.eslintrc 第一次提交 2024-04-23 08:05:40 +08:00
CHANGELOG.md 第一次提交 2024-04-23 08:05:40 +08:00
LICENSE 第一次提交 2024-04-23 08:05:40 +08:00
README.md 第一次提交 2024-04-23 08:05:40 +08:00
index.d.ts 第一次提交 2024-04-23 08:05:40 +08:00
index.js 第一次提交 2024-04-23 08:05:40 +08:00
package.json 第一次提交 2024-04-23 08:05:40 +08:00
tsconfig.json 第一次提交 2024-04-23 08:05:40 +08:00

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.