(errorActionPreference: string)
| 64 | } |
| 65 | |
| 66 | function validateErrorActionPref(errorActionPreference: string) { |
| 67 | if(!(errorActionPrefValues.has(errorActionPreference.toUpperCase()))) { |
| 68 | throw new Error(`Invalid errorActionPreference: ${errorActionPreference}`); |
| 69 | } |
| 70 | } |
| 71 | |
| 72 | main() |
no outgoing calls
no test coverage detected
searching dependent graphs…