(error)
| 203 | |
| 204 | class UncaughtPromiseError extends Error { |
| 205 | constructor(error) { |
| 206 | super(error) |
| 207 | |
| 208 | this.stack = `(in promise) ${error.stack}` |
| 209 | } |
| 210 | } |
| 211 | |
| 212 | module.exports = MyPromise |
nothing calls this directly
no outgoing calls
no test coverage detected