文件名称:node-custom-error:NodeJS 的自定义错误
文件大小:10KB
文件格式:ZIP
更新时间:2024-06-18 17:57:02
JavaScript
节点自定义错误 NodeJS 的自定义错误 安装 npm install node-custom-error 用法 var MyCustomError = require('node-custom-error'); function doSomethingBad() { throw new MyCustomError('It went bad!', 42); } 或者 var MyCustomError = require('node-custom-error'); function doSomethingBad() { throw new MyCustomError(err, 'It went bad!', 42); } 测试 npm test 贡献 代替正式的风格指南,注意维护现有的编码风格。 为任何新的或更改的功能添加单元测试。 Lint 并测试您的代码。 发布历史
【文件预览】:
node-custom-error-master
----.gitignore(514B)
----package.json(765B)
----LICENSE(18KB)
----customerror.js(966B)
----README.md(795B)
----test-customerror.js(2KB)