jiuyiUniapp/service/node_modules/serialize-error
sx 61537cc3bd 九亿商家端静态页 2025-02-13 09:59:20 +08:00
..
index.js 九亿商家端静态页 2025-02-13 09:59:20 +08:00
license 九亿商家端静态页 2025-02-13 09:59:20 +08:00
package.json 九亿商家端静态页 2025-02-13 09:59:20 +08:00
readme.md 九亿商家端静态页 2025-02-13 09:59:20 +08:00

readme.md

serialize-error Build Status

Serialize an error into a plain object

Useful if you for example need to JSON.stringify() or process.send() the error.

Install

$ npm install --save serialize-error

Usage

const serializeError = require('serialize-error');
const error = new Error('unicorn');

console.log(error);
//=> [Error: unicorn]

console.log(serializeError(error));
//=> {name: 'Error', message: 'unicorn', stack: 'Error: unicorn\n    at Object.<anonymous> ...'}

License

MIT © Sindre Sorhus