(path: string)
| 42 | const SENSITIVE_DOT_VARIANT_SUFFIX_SET = new Set<string>(SENSITIVE_DOT_VARIANT_SUFFIXES); |
| 43 | |
| 44 | function comparable(path: string): string { |
| 45 | return path.toLowerCase(); |
| 46 | } |
| 47 | |
| 48 | export function isSensitiveFile(path: string): boolean { |
| 49 | const name = basename(path); |