(value)
| 9244 | } |
| 9245 | |
| 9246 | function isObject(value) { |
| 9247 | return typeof value === "function" || |
| 9248 | typeof value === "object" && value !== null; |
| 9249 | } |
| 9250 | |
| 9251 | function maybeWrapAsError(maybeError) { |
| 9252 | if (!isPrimitive(maybeError)) return maybeError; |
no outgoing calls
no test coverage detected