├── .editorconfig ├── .eslintrc.json ├── .gitattributes ├── .github └── workflows │ └── ci.yml ├── .gitignore ├── .verb.md ├── CHANGELOG.md ├── LICENSE ├── README.md ├── bench ├── index.js └── package.json ├── examples ├── compile.js ├── expand.js ├── option-transform.js └── parse.js ├── index.js ├── lib ├── compile.js ├── constants.js ├── expand.js ├── parse.js ├── stringify.js └── utils.js ├── package.json └── test ├── bash-compiled-ranges.js ├── bash-compiled-sets.js ├── bash-expanded-ranges.js ├── bash-expanded-sets.js ├── bash-spec.js ├── braces.compile.js ├── braces.expand.js ├── braces.parse.js ├── minimatch.js ├── mocha-initialization.js ├── multiples.js ├── readme.js └── regression.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micromatch/braces/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micromatch/braces/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micromatch/braces/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micromatch/braces/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micromatch/braces/HEAD/.gitignore -------------------------------------------------------------------------------- /.verb.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micromatch/braces/HEAD/.verb.md -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micromatch/braces/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micromatch/braces/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micromatch/braces/HEAD/README.md -------------------------------------------------------------------------------- /bench/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micromatch/braces/HEAD/bench/index.js -------------------------------------------------------------------------------- /bench/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micromatch/braces/HEAD/bench/package.json -------------------------------------------------------------------------------- /examples/compile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micromatch/braces/HEAD/examples/compile.js -------------------------------------------------------------------------------- /examples/expand.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micromatch/braces/HEAD/examples/expand.js -------------------------------------------------------------------------------- /examples/option-transform.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micromatch/braces/HEAD/examples/option-transform.js -------------------------------------------------------------------------------- /examples/parse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micromatch/braces/HEAD/examples/parse.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micromatch/braces/HEAD/index.js -------------------------------------------------------------------------------- /lib/compile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micromatch/braces/HEAD/lib/compile.js -------------------------------------------------------------------------------- /lib/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micromatch/braces/HEAD/lib/constants.js -------------------------------------------------------------------------------- /lib/expand.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micromatch/braces/HEAD/lib/expand.js -------------------------------------------------------------------------------- /lib/parse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micromatch/braces/HEAD/lib/parse.js -------------------------------------------------------------------------------- /lib/stringify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micromatch/braces/HEAD/lib/stringify.js -------------------------------------------------------------------------------- /lib/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micromatch/braces/HEAD/lib/utils.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micromatch/braces/HEAD/package.json -------------------------------------------------------------------------------- /test/bash-compiled-ranges.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micromatch/braces/HEAD/test/bash-compiled-ranges.js -------------------------------------------------------------------------------- /test/bash-compiled-sets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micromatch/braces/HEAD/test/bash-compiled-sets.js -------------------------------------------------------------------------------- /test/bash-expanded-ranges.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micromatch/braces/HEAD/test/bash-expanded-ranges.js -------------------------------------------------------------------------------- /test/bash-expanded-sets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micromatch/braces/HEAD/test/bash-expanded-sets.js -------------------------------------------------------------------------------- /test/bash-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micromatch/braces/HEAD/test/bash-spec.js -------------------------------------------------------------------------------- /test/braces.compile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micromatch/braces/HEAD/test/braces.compile.js -------------------------------------------------------------------------------- /test/braces.expand.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micromatch/braces/HEAD/test/braces.expand.js -------------------------------------------------------------------------------- /test/braces.parse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micromatch/braces/HEAD/test/braces.parse.js -------------------------------------------------------------------------------- /test/minimatch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micromatch/braces/HEAD/test/minimatch.js -------------------------------------------------------------------------------- /test/mocha-initialization.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micromatch/braces/HEAD/test/mocha-initialization.js -------------------------------------------------------------------------------- /test/multiples.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micromatch/braces/HEAD/test/multiples.js -------------------------------------------------------------------------------- /test/readme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micromatch/braces/HEAD/test/readme.js -------------------------------------------------------------------------------- /test/regression.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micromatch/braces/HEAD/test/regression.js --------------------------------------------------------------------------------