文件名称:serialize-error:将错误序列化为一个普通对象
文件大小:9KB
文件格式:ZIP
更新时间:2024-05-18 07:48:45
JavaScript
序列化错误 将错误序列化/反序列化为普通对象 例如,在需要JSON.stringify()或process.send()错误时JSON.stringify() 。 安装 $ npm install serialize-error 用法 const { serializeError , deserializeError } = require ( 'serialize-error' ) ; const error = new Error ( ':unicorn:' ) ; console . log ( error ) ; //=> [Error: :unicorn:] const serialized = serializeError ( error ) console . log ( serialized ) ; //=> {name: 'Error', message: ':unicorn:', stack: 'Error: :unicorn:\n
【文件预览】:
serialize-error-main
----index.js(3KB)
----test.js(9KB)
----package.json(743B)
----index.test-d.ts(430B)
----readme.md(3KB)
----.github()
--------funding.yml(91B)
--------workflows()
----license(1KB)
----index.d.ts(3KB)
----.gitignore(23B)
----.npmrc(19B)
----.editorconfig(175B)
----.gitattributes(19B)