(value)
| 215 | } |
| 216 | |
| 217 | function isMinimumViableSerializedError(value) { |
| 218 | return ( |
| 219 | Boolean(value) && |
| 220 | typeof value === "object" && |
| 221 | "message" in value && |
| 222 | !Array.isArray(value) |
| 223 | ); |
| 224 | } |
nothing calls this directly
no outgoing calls
no test coverage detected