├── .editorconfig ├── .github └── workflows │ └── ci.yml ├── .gitignore ├── bench ├── assert.js ├── index.js ├── package.json └── test │ ├── a.js │ ├── a.md │ ├── b.js │ ├── b.md │ ├── c.js │ └── dirA │ ├── aa.js │ ├── aa.md │ ├── bb.js │ ├── bb.md │ └── cc.js ├── index.d.ts ├── index.js ├── license ├── package.json ├── readme.md ├── sync.d.ts ├── sync.js ├── test ├── fixtures │ ├── .a-hidden.txt │ ├── a.js │ ├── a.mp3 │ ├── a.txt │ ├── b.js │ ├── b.txt │ ├── deep │ │ ├── a │ │ │ └── e │ │ └── b │ │ │ └── c │ │ │ └── d │ ├── ond │ │ ├── .b-hidden.txt │ │ └── a.txt │ ├── one │ │ ├── a.js │ │ ├── a.md │ │ ├── a.txt │ │ ├── b.txt │ │ └── child │ │ │ ├── a.js │ │ │ ├── a.md │ │ │ └── a.txt │ └── two │ │ └── a.txt ├── glob.js └── helpers │ └── index.js └── tiny-glob.png /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terkelg/tiny-glob/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terkelg/tiny-glob/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terkelg/tiny-glob/HEAD/.gitignore -------------------------------------------------------------------------------- /bench/assert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terkelg/tiny-glob/HEAD/bench/assert.js -------------------------------------------------------------------------------- /bench/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terkelg/tiny-glob/HEAD/bench/index.js -------------------------------------------------------------------------------- /bench/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terkelg/tiny-glob/HEAD/bench/package.json -------------------------------------------------------------------------------- /bench/test/a.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bench/test/a.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bench/test/b.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bench/test/b.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bench/test/c.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bench/test/dirA/aa.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bench/test/dirA/aa.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bench/test/dirA/bb.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bench/test/dirA/bb.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bench/test/dirA/cc.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terkelg/tiny-glob/HEAD/index.d.ts -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terkelg/tiny-glob/HEAD/index.js -------------------------------------------------------------------------------- /license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terkelg/tiny-glob/HEAD/license -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terkelg/tiny-glob/HEAD/package.json -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terkelg/tiny-glob/HEAD/readme.md -------------------------------------------------------------------------------- /sync.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terkelg/tiny-glob/HEAD/sync.d.ts -------------------------------------------------------------------------------- /sync.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terkelg/tiny-glob/HEAD/sync.js -------------------------------------------------------------------------------- /test/fixtures/.a-hidden.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/a.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/a.mp3: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/a.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/b.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/b.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/deep/a/e: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/deep/b/c/d: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/ond/.b-hidden.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/ond/a.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/one/a.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/one/a.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/one/a.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/one/b.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/one/child/a.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/one/child/a.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/one/child/a.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/two/a.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/glob.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terkelg/tiny-glob/HEAD/test/glob.js -------------------------------------------------------------------------------- /test/helpers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terkelg/tiny-glob/HEAD/test/helpers/index.js -------------------------------------------------------------------------------- /tiny-glob.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terkelg/tiny-glob/HEAD/tiny-glob.png --------------------------------------------------------------------------------