电速宝
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
dong 488fa3b88d 更换接口日常优化 1年前
..
.github 更换接口日常优化 1年前
test 更换接口日常优化 1年前
.eslintrc 更换接口日常优化 1年前
CHANGELOG.md 更换接口日常优化 1年前
LICENSE 更换接口日常优化 1年前
README.md 更换接口日常优化 1年前
eval.d.ts 更换接口日常优化 1年前
eval.js 更换接口日常优化 1年前
index.d.ts 更换接口日常优化 1年前
index.js 更换接口日常优化 1年前
package.json 更换接口日常优化 1年前
range.d.ts 更换接口日常优化 1年前
range.js 更换接口日常优化 1年前
ref.d.ts 更换接口日常优化 1年前
ref.js 更换接口日常优化 1年前
syntax.d.ts 更换接口日常优化 1年前
syntax.js 更换接口日常优化 1年前
tsconfig.json 更换接口日常优化 1年前
type.d.ts 更换接口日常优化 1年前
type.js 更换接口日常优化 1年前
uri.d.ts 更换接口日常优化 1年前
uri.js 更换接口日常优化 1年前

README.md

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.