(value)
| 17665 | var promise = new Promise(); |
| 17666 | |
| 17667 | function resolveFn(value) { |
| 17668 | resolvePromise(promise, value); |
| 17669 | } |
| 17670 | |
| 17671 | function rejectFn(reason) { |
| 17672 | rejectPromise(promise, reason); |
nothing calls this directly
no test coverage detected