(glob: string)
| 13 | const TRUNCATION_MESSAGE = `(Results truncated. Consider using a more specific pattern, specifying a repo, or increasing the limit.)`; |
| 14 | |
| 15 | function globToFileRegexp(glob: string): string { |
| 16 | const re = globToRegexp(glob, { extended: true, globstar: true }); |
| 17 | return re.source.replace(/^\^/, ''); |
| 18 | } |
| 19 | |
| 20 | const globShape = { |
| 21 | pattern: z |