(value)
| 17621 | var promise = new Promise(); |
| 17622 | |
| 17623 | function resolveFn(value) { |
| 17624 | resolvePromise(promise, value); |
| 17625 | } |
| 17626 | |
| 17627 | function rejectFn(reason) { |
| 17628 | rejectPromise(promise, reason); |
nothing calls this directly
no test coverage detected