Superchupu
Superchupu
that wouldn't just apply to ** patterns though
i can tell you better if you can provide a minimal repro
interesting. what does fast-glob do?
i could make it return false on undefined, but would that be ideal for users?
investigating the trailing `/` issue it looks like `fast-glob` has really inconsistent behavior around trailing `/` in patterns and the behavior of only returning directories is only present if the...
yeah but i imagine making `tinyglobby` not returning files if the pattern ends with `/` in a consistent way would probably break way more users and existing usecases
basically what i mentioned above, using a pattern like `src/index.ts/` which currently matches `src/index.ts` (assuming it's a file) in both `fast-glob` and `tinyglobby`. i'm not sure how often that's used...
how does `fs.glob` handle patterns without trailing slashes that refer to directories (i.e. a `"src"` pattern)? all i know is that `fast-glob` matches directories without needing a trailing slash on...
just opened mrmlnc/fast-glob#458
it is possible to add (fdir exposes an option for it), but i'm not sure about adding extra options just because they could be useful for some (that's how libraries...