(input: any)
| 357 | } |
| 358 | |
| 359 | export function isOptionalArrayOfString(input: any): input is string[] | undefined { |
| 360 | return input === undefined || isArrayOfString(input); |
| 361 | } |
| 362 | |
| 363 | export function resolveCachePath(input: string | undefined, additionalEnvironment: Record<string, string | string[]>): string { |
| 364 | let resolvedPath: string = ""; |
nothing calls this directly
no test coverage detected