gitextract_aolffhr8/ ├── .github/ │ └── workflows/ │ ├── ci.yml │ └── typedoc.yml ├── .gitignore ├── .oxlint.json ├── .prettierignore ├── .prettierrc.json ├── .taprc ├── .tshy/ │ ├── build.json │ ├── commonjs.json │ └── esm.json ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── benchclean.cjs ├── benchmark.sh ├── changelog.md ├── examples/ │ ├── g.js │ └── usr-local.js ├── make-benchmark-fixture.sh ├── package.json ├── patterns.sh ├── prof.sh ├── scripts/ │ ├── build.sh │ └── make-big-tree.js ├── src/ │ ├── glob.ts │ ├── has-magic.ts │ ├── ignore.ts │ ├── index.ts │ ├── pattern.ts │ ├── processor.ts │ └── walker.ts ├── tap-snapshots/ │ └── test/ │ ├── bin.ts.test.cjs │ ├── pattern.ts.test.cjs │ └── root.ts.test.cjs ├── test/ │ ├── 00-setup.ts │ ├── absolute-must-be-strings.ts │ ├── absolute.ts │ ├── bash-comparison.ts │ ├── bash-results.ts │ ├── broken-symlink.ts │ ├── custom-fs.ts │ ├── custom-ignore.ts │ ├── cwd-noent.ts │ ├── cwd-test.ts │ ├── dot-relative.ts │ ├── empty-set.ts │ ├── escape.ts │ ├── follow.ts │ ├── has-magic.ts │ ├── ignore.ts │ ├── include-child-matches.ts │ ├── mark.ts │ ├── match-base.ts │ ├── match-parent.ts │ ├── match-root.ts │ ├── max-depth.ts │ ├── memfs.ts │ ├── nocase-magic-only.ts │ ├── nodir.ts │ ├── oom.ts │ ├── pattern.ts │ ├── platform.ts │ ├── progra-tilde.ts │ ├── readme-issue.ts │ ├── realpath.ts │ ├── root.ts │ ├── signal.ts │ ├── slash-cwd.ts │ ├── stat.ts │ ├── stream.ts │ ├── url-cwd.ts │ ├── windows-paths-fs.ts │ └── windows-paths-no-escape.ts ├── tsconfig.json └── typedoc.json