@techor/glob
TypeScript icon, indicating that this package has built-in type declarations

3.0.23 • Public • Published

A human-friendly set of glob utilities

NPM Version NPM Version NPM package ( download / month ) Follow @mastercorg Github release actions


Getting Started

npm install @techor/glob

Usage

explorePathSync(source: string | string[], options?: Options | undefined): string
explorePathsSync(source: string | string[], options?: Options | undefined): string[]
├── a.json
├── b.json
└── c.json
import { 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


NPM Version

Package Sidebar

Install

npm i @techor/glob

Homepage

aron.tw

Weekly Downloads

467

Version

3.0.23

License

MIT

Unpacked Size

7.31 kB

Total Files

8

Last publish

Collaborators

  • 1aron