(file: string)
| 279 | ): string => { |
| 280 | const { ignoreHash = true } = options; |
| 281 | const getComparable = (file: string) => (ignoreHash ? file.replace(HASH_PATTERN, '') : file); |
| 282 | const matcherFn = toMatcherFn(matcher); |
| 283 | |
| 284 | for (const file of Object.keys(files)) { |
no outgoing calls
no test coverage detected
searching dependent graphs…