(files: string[], pattern: string)
| 3413 | } |
| 3414 | |
| 3415 | function minimatches(files: string[], pattern: string): boolean { |
| 3416 | return files.some( |
| 3417 | file => file === pattern || minimatch(file, pattern, { dot: true }) |
| 3418 | ); |
| 3419 | } |
| 3420 | |
| 3421 | function fileChanged( |
| 3422 | name: string, |
no outgoing calls
no test coverage detected