(path: string)
| 29 | ] |
| 30 | |
| 31 | function isCoreFile(path: string): boolean { |
| 32 | return !NON_CORE_PATTERNS.some(p => p.test(path)) |
| 33 | } |
| 34 | |
| 35 | /** |
| 36 | * Counts occurrences of items in an array and returns the top N items |
no outgoing calls
no test coverage detected