(e)
| 9430 | } |
| 9431 | |
| 9432 | function originatesFromRejection(e) { |
| 9433 | if (e == null) return false; |
| 9434 | return ((e instanceof Error["__BluebirdErrorTypes__"].OperationalError) || |
| 9435 | e["isOperational"] === true); |
| 9436 | } |
| 9437 | |
| 9438 | function canAttachTrace(obj) { |
| 9439 | return isError(obj) && es5.propertyIsWritable(obj, "stack"); |
nothing calls this directly
no outgoing calls
no test coverage detected