( test: any, block: Function, otherwise?: Function, )
| 32 | } |
| 33 | |
| 34 | export function ifEnvSupportsWithDone( |
| 35 | test: any, |
| 36 | block: Function, |
| 37 | otherwise?: Function, |
| 38 | ): (done: Function) => void { |
| 39 | return _ifEnvSupports(test, block, otherwise, true); |
| 40 | } |
| 41 | |
| 42 | function _ifEnvSupports(test: any, block: Function, otherwise?: Function, withDone = false) { |
| 43 | if (withDone) { |
no test coverage detected
searching dependent graphs…