CoolFace
Apppublic

AK-21/Graphite-Industrial-Intelligence

sourceHugging Faceupdated 3mo agoView on Hugging Face
0likes
README.md26 linesDownload Raw Back to tinyglobby
1# tinyglobby2 3[![npm version](https://img.shields.io/npm/v/tinyglobby.svg?maxAge=3600)](https://npmjs.com/package/tinyglobby)4[![weekly downloads](https://img.shields.io/npm/dw/tinyglobby.svg?maxAge=3600)](https://npmjs.com/package/tinyglobby)5 6A fast and minimal alternative to globby and fast-glob, meant to behave the same way.7 8Both globby and fast-glob present some behavior no other globbing lib has,9which makes it hard to manually replace with something smaller and better.10 11This library uses only two subdependencies, compared to `globby`'s [23](https://npmgraph.js.org/?q=globby@16.2.0)12and `fast-glob`'s [17](https://npmgraph.js.org/?q=fast-glob@3.3.3).13 14## Usage15 16```js17import { glob, globSync } from 'tinyglobby';18 19await glob(['files/*.ts', '!**/*.d.ts'], { cwd: 'src' });20globSync('src/**/*.ts', { ignore: '**/*.d.ts' });21```22 23## Documentation24 25Visit https://superchupu.dev/tinyglobby to read the full documentation.26