adi-o3-multipass/frontend/node_modules/es-errors
2025-09-16 07:53:27 -05:00
..
.github added front end - can process one at a time currently - need to fix multi-upload and processing 2025-09-16 07:53:27 -05:00
test added front end - can process one at a time currently - need to fix multi-upload and processing 2025-09-16 07:53:27 -05:00
.eslintrc added front end - can process one at a time currently - need to fix multi-upload and processing 2025-09-16 07:53:27 -05:00
CHANGELOG.md added front end - can process one at a time currently - need to fix multi-upload and processing 2025-09-16 07:53:27 -05:00
eval.d.ts added front end - can process one at a time currently - need to fix multi-upload and processing 2025-09-16 07:53:27 -05:00
eval.js added front end - can process one at a time currently - need to fix multi-upload and processing 2025-09-16 07:53:27 -05:00
index.d.ts added front end - can process one at a time currently - need to fix multi-upload and processing 2025-09-16 07:53:27 -05:00
index.js added front end - can process one at a time currently - need to fix multi-upload and processing 2025-09-16 07:53:27 -05:00
LICENSE added front end - can process one at a time currently - need to fix multi-upload and processing 2025-09-16 07:53:27 -05:00
package.json added front end - can process one at a time currently - need to fix multi-upload and processing 2025-09-16 07:53:27 -05:00
range.d.ts added front end - can process one at a time currently - need to fix multi-upload and processing 2025-09-16 07:53:27 -05:00
range.js added front end - can process one at a time currently - need to fix multi-upload and processing 2025-09-16 07:53:27 -05:00
README.md added front end - can process one at a time currently - need to fix multi-upload and processing 2025-09-16 07:53:27 -05:00
ref.d.ts added front end - can process one at a time currently - need to fix multi-upload and processing 2025-09-16 07:53:27 -05:00
ref.js added front end - can process one at a time currently - need to fix multi-upload and processing 2025-09-16 07:53:27 -05:00
syntax.d.ts added front end - can process one at a time currently - need to fix multi-upload and processing 2025-09-16 07:53:27 -05:00
syntax.js added front end - can process one at a time currently - need to fix multi-upload and processing 2025-09-16 07:53:27 -05:00
tsconfig.json added front end - can process one at a time currently - need to fix multi-upload and processing 2025-09-16 07:53:27 -05:00
type.d.ts added front end - can process one at a time currently - need to fix multi-upload and processing 2025-09-16 07:53:27 -05:00
type.js added front end - can process one at a time currently - need to fix multi-upload and processing 2025-09-16 07:53:27 -05:00
uri.d.ts added front end - can process one at a time currently - need to fix multi-upload and processing 2025-09-16 07:53:27 -05:00
uri.js added front end - can process one at a time currently - need to fix multi-upload and processing 2025-09-16 07:53:27 -05:00

es-errors Version Badge

github actions coverage License Downloads

npm badge

A simple cache for a few of the JS Error constructors.

Example

const assert = require('assert');

const Base = require('es-errors');
const Eval = require('es-errors/eval');
const Range = require('es-errors/range');
const Ref = require('es-errors/ref');
const Syntax = require('es-errors/syntax');
const Type = require('es-errors/type');
const URI = require('es-errors/uri');

assert.equal(Base, Error);
assert.equal(Eval, EvalError);
assert.equal(Range, RangeError);
assert.equal(Ref, ReferenceError);
assert.equal(Syntax, SyntaxError);
assert.equal(Type, TypeError);
assert.equal(URI, URIError);

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.