智慧水务管理系统 - 精河县供水工程综合管理平台
bot_dev1 85df71fc28 feat: 实现供水运营专题大屏BI可视化 пре 4 дана
..
.github feat: 实现供水运营专题大屏BI可视化 пре 4 дана
test feat: 实现供水运营专题大屏BI可视化 пре 4 дана
.eslintrc feat: 实现供水运营专题大屏BI可视化 пре 4 дана
CHANGELOG.md feat: 实现供水运营专题大屏BI可视化 пре 4 дана
LICENSE feat: 实现供水运营专题大屏BI可视化 пре 4 дана
README.md feat: 实现供水运营专题大屏BI可视化 пре 4 дана
eval.d.ts feat: 实现供水运营专题大屏BI可视化 пре 4 дана
eval.js feat: 实现供水运营专题大屏BI可视化 пре 4 дана
index.d.ts feat: 实现供水运营专题大屏BI可视化 пре 4 дана
index.js feat: 实现供水运营专题大屏BI可视化 пре 4 дана
package.json feat: 实现供水运营专题大屏BI可视化 пре 4 дана
range.d.ts feat: 实现供水运营专题大屏BI可视化 пре 4 дана
range.js feat: 实现供水运营专题大屏BI可视化 пре 4 дана
ref.d.ts feat: 实现供水运营专题大屏BI可视化 пре 4 дана
ref.js feat: 实现供水运营专题大屏BI可视化 пре 4 дана
syntax.d.ts feat: 实现供水运营专题大屏BI可视化 пре 4 дана
syntax.js feat: 实现供水运营专题大屏BI可视化 пре 4 дана
tsconfig.json feat: 实现供水运营专题大屏BI可视化 пре 4 дана
type.d.ts feat: 实现供水运营专题大屏BI可视化 пре 4 дана
type.js feat: 实现供水运营专题大屏BI可视化 пре 4 дана
uri.d.ts feat: 实现供水运营专题大屏BI可视化 пре 4 дана
uri.js feat: 实现供水运营专题大屏BI可视化 пре 4 дана

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.