(value)
| 18239 | var promise = new Promise(); |
| 18240 | |
| 18241 | function resolveFn(value) { |
| 18242 | resolvePromise(promise, value); |
| 18243 | } |
| 18244 | |
| 18245 | function rejectFn(reason) { |
| 18246 | rejectPromise(promise, reason); |
nothing calls this directly
no test coverage detected