index.js
1.57 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
'use strict';
const {inspect} = require('util');
class NonError extends Error {
constructor(message) {
super(inspect(message));
this.name = 'NonError';
Error.captureStackTrace(this, NonError);
}
}
const commonProperties = [
'name',
'message',
'stack',
'code'
];
const destroyCircular = (from, seen, to_) => {
const to = to_ || (Array.isArray(from) ? [] : {});
seen.push(from);
for (const [key, value] of Object.entries(from)) {
if (typeof value === 'function') {
continue;
}
if (!value || typeof value !== 'object') {
to[key] = value;
continue;
}
if (!seen.includes(from[key])) {
to[key] = destroyCircular(from[key], seen.slice());
continue;
}
to[key] = '[Circular]';
}
for (const property of commonProperties) {
if (typeof from[property] === 'string') {
to[property] = from[property];
}
}
return to;
};
const serializeError = value => {
if (typeof value === 'object' && value !== null) {
return destroyCircular(value, []);
}
// People sometimes throw things besides Error objects…
if (typeof value === 'function') {
// `JSON.stringify()` discards functions. We do too, unless a function is thrown directly.
return `[Function: ${(value.name || 'anonymous')}]`;
}
return value;
};
const deserializeError = value => {
if (value instanceof Error) {
return value;
}
if (typeof value === 'object' && value !== null && !Array.isArray(value)) {
const newError = new Error();
destroyCircular(value, [], newError);
return newError;
}
return new NonError(value);
};
module.exports = {
serializeError,
deserializeError
};