(executor)
| 10481 | const originalPromiseThen = Promise.prototype.then; |
| 10482 | const originalPromiseReject = Promise.reject.bind(originalPromise); |
| 10483 | function newPromise(executor) { |
| 10484 | return new originalPromise(executor); |
| 10485 | } |
| 10486 | function promiseResolvedWith(value) { |
| 10487 | return newPromise((resolve) => resolve(value)); |
| 10488 | } |
no outgoing calls
no test coverage detected
searching dependent graphs…