SAP-BTP-Spielwiese/app1/node_modules/es-errors
Markus Rettig 775ac7b58c completed step 3 from the tutorial
you must login with an BTP account in order to see the app
2024-02-08 16:13:36 +01:00
..
.github completed step 3 from the tutorial 2024-02-08 16:13:36 +01:00
test completed step 3 from the tutorial 2024-02-08 16:13:36 +01:00
.eslintrc completed step 3 from the tutorial 2024-02-08 16:13:36 +01:00
CHANGELOG.md completed step 3 from the tutorial 2024-02-08 16:13:36 +01:00
eval.d.ts completed step 3 from the tutorial 2024-02-08 16:13:36 +01:00
eval.js completed step 3 from the tutorial 2024-02-08 16:13:36 +01:00
index.d.ts completed step 3 from the tutorial 2024-02-08 16:13:36 +01:00
index.js completed step 3 from the tutorial 2024-02-08 16:13:36 +01:00
LICENSE completed step 3 from the tutorial 2024-02-08 16:13:36 +01:00
package.json completed step 3 from the tutorial 2024-02-08 16:13:36 +01:00
range.d.ts completed step 3 from the tutorial 2024-02-08 16:13:36 +01:00
range.js completed step 3 from the tutorial 2024-02-08 16:13:36 +01:00
README.md completed step 3 from the tutorial 2024-02-08 16:13:36 +01:00
ref.d.ts completed step 3 from the tutorial 2024-02-08 16:13:36 +01:00
ref.js completed step 3 from the tutorial 2024-02-08 16:13:36 +01:00
syntax.d.ts completed step 3 from the tutorial 2024-02-08 16:13:36 +01:00
syntax.js completed step 3 from the tutorial 2024-02-08 16:13:36 +01:00
tsconfig.json completed step 3 from the tutorial 2024-02-08 16:13:36 +01:00
type.d.ts completed step 3 from the tutorial 2024-02-08 16:13:36 +01:00
type.js completed step 3 from the tutorial 2024-02-08 16:13:36 +01:00
uri.d.ts completed step 3 from the tutorial 2024-02-08 16:13:36 +01:00
uri.js completed step 3 from the tutorial 2024-02-08 16:13:36 +01: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.