AJNB 376d9cfaf8 hjj | пре 2 месеци | |
---|---|---|
.. | ||
.github | пре 2 месеци | |
test | пре 2 месеци | |
.eslintrc | пре 2 месеци | |
CHANGELOG.md | пре 2 месеци | |
LICENSE | пре 2 месеци | |
README.md | пре 2 месеци | |
eval.d.ts | пре 2 месеци | |
eval.js | пре 2 месеци | |
index.d.ts | пре 2 месеци | |
index.js | пре 2 месеци | |
package.json | пре 2 месеци | |
range.d.ts | пре 2 месеци | |
range.js | пре 2 месеци | |
ref.d.ts | пре 2 месеци | |
ref.js | пре 2 месеци | |
syntax.d.ts | пре 2 месеци | |
syntax.js | пре 2 месеци | |
tsconfig.json | пре 2 месеци | |
type.d.ts | пре 2 месеци | |
type.js | пре 2 месеци | |
uri.d.ts | пре 2 месеци | |
uri.js | пре 2 месеци |
A simple cache for a few of the JS Error constructors.
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);
Simply clone the repo, npm install
, and run npm test
Please email @ljharb or see https://tidelift.com/security if you have a potential security vulnerability to report.