(test: any, block: Function, otherwise?: Function)
| 28 | |
| 29 | declare const global: any; |
| 30 | export function ifEnvSupports(test: any, block: Function, otherwise?: Function): () => void { |
| 31 | return _ifEnvSupports(test, block, otherwise); |
| 32 | } |
| 33 | |
| 34 | export function ifEnvSupportsWithDone( |
| 35 | test: any, |
no test coverage detected
searching dependent graphs…