(value)
| 17436 | var promise = new Promise(); |
| 17437 | |
| 17438 | function resolveFn(value) { |
| 17439 | resolvePromise(promise, value); |
| 17440 | } |
| 17441 | |
| 17442 | function rejectFn(reason) { |
| 17443 | rejectPromise(promise, reason); |
nothing calls this directly
no test coverage detected