(value)
| 18304 | var promise = new Promise(); |
| 18305 | |
| 18306 | function resolveFn(value) { |
| 18307 | resolvePromise(promise, value); |
| 18308 | } |
| 18309 | |
| 18310 | function rejectFn(reason) { |
| 18311 | rejectPromise(promise, reason); |
nothing calls this directly
no test coverage detected