zioinfo-mail/workspace/guardia-manager/frontend/node_modules/es-errors
DESKTOP-TKLFCPR\ython cfe2901a55 refactor(structure): consolidate all projects under workspace/
- itsm/    -> workspace/guardia-itsm/
- manager/ -> workspace/guardia-manager/
- app/     -> workspace/guardia-messenger/
- manual/  -> workspace/guardia-docs/

workspace/zioinfo-web/ unchanged.
git mv preserves full commit history.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-05-31 23:50:56 +09:00
..
.github refactor(structure): consolidate all projects under workspace/ 2026-05-31 23:50:56 +09:00
test refactor(structure): consolidate all projects under workspace/ 2026-05-31 23:50:56 +09:00
.eslintrc refactor(structure): consolidate all projects under workspace/ 2026-05-31 23:50:56 +09:00
CHANGELOG.md refactor(structure): consolidate all projects under workspace/ 2026-05-31 23:50:56 +09:00
eval.d.ts refactor(structure): consolidate all projects under workspace/ 2026-05-31 23:50:56 +09:00
eval.js refactor(structure): consolidate all projects under workspace/ 2026-05-31 23:50:56 +09:00
index.d.ts refactor(structure): consolidate all projects under workspace/ 2026-05-31 23:50:56 +09:00
index.js refactor(structure): consolidate all projects under workspace/ 2026-05-31 23:50:56 +09:00
LICENSE refactor(structure): consolidate all projects under workspace/ 2026-05-31 23:50:56 +09:00
package.json refactor(structure): consolidate all projects under workspace/ 2026-05-31 23:50:56 +09:00
range.d.ts refactor(structure): consolidate all projects under workspace/ 2026-05-31 23:50:56 +09:00
range.js refactor(structure): consolidate all projects under workspace/ 2026-05-31 23:50:56 +09:00
README.md refactor(structure): consolidate all projects under workspace/ 2026-05-31 23:50:56 +09:00
ref.d.ts refactor(structure): consolidate all projects under workspace/ 2026-05-31 23:50:56 +09:00
ref.js refactor(structure): consolidate all projects under workspace/ 2026-05-31 23:50:56 +09:00
syntax.d.ts refactor(structure): consolidate all projects under workspace/ 2026-05-31 23:50:56 +09:00
syntax.js refactor(structure): consolidate all projects under workspace/ 2026-05-31 23:50:56 +09:00
tsconfig.json refactor(structure): consolidate all projects under workspace/ 2026-05-31 23:50:56 +09:00
type.d.ts refactor(structure): consolidate all projects under workspace/ 2026-05-31 23:50:56 +09:00
type.js refactor(structure): consolidate all projects under workspace/ 2026-05-31 23:50:56 +09:00
uri.d.ts refactor(structure): consolidate all projects under workspace/ 2026-05-31 23:50:56 +09:00
uri.js refactor(structure): consolidate all projects under workspace/ 2026-05-31 23:50:56 +09: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.