@techor/glob
v3.2.5
Published
A human-friendly set of glob utilities
Maintainers
Readme
Getting Started
npm install @techor/globUsage
explorePathSync(source: string | string[], options?: Options | undefined): string
explorePathsSync(source: string | string[], options?: Options | undefined): string[]├── a.json
├── b.json
└── c.jsonimport { explorePathSync } from '@techor/glob'
explorePathSync('a.*')
// 'a.json'
explorePathSync('*.json')
// 'a.json'
explorePathsSync('*.json')
// ['a.json', 'b.json', 'c.json']Options
Inherited from fast-glob options
