(groupKey: string)
| 33 | } |
| 34 | |
| 35 | function sanitizeGroupKey(groupKey: string): string { |
| 36 | return groupKey.replace(/[^a-zA-Z0-9._-]+/g, '-') |
| 37 | } |
| 38 | |
| 39 | function getRuntimeAssetCandidateDirs(): string[] { |
| 40 | const directories = new Set<string>() |
no outgoing calls
no test coverage detected