(entries: [string, string][])
| 5 | import { glob, grep } from '@/lib/copilot/vfs/operations' |
| 6 | |
| 7 | function vfsFromEntries(entries: [string, string][]): Map<string, string> { |
| 8 | return new Map(entries) |
| 9 | } |
| 10 | |
| 11 | describe('glob', () => { |
| 12 | it('matches nested file metadata paths with a single-star segment', () => { |