AK-21/Graphite-Industrial-Intelligence
0
1# tinyglobby2 3[](https://npmjs.com/package/tinyglobby)4[](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 