├── .editorconfig ├── .github └── workflows │ ├── ci.yml │ ├── codeql.yml │ └── scorecard.yml ├── .gitignore ├── History.md ├── LICENSE ├── Readme.md ├── package.json ├── scripts └── redos.ts ├── src ├── cases.spec.ts ├── index.bench.ts ├── index.spec.ts └── index.ts ├── tsconfig.build.json ├── tsconfig.json └── vitest.config.mts /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pillarjs/path-to-regexp/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pillarjs/path-to-regexp/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/codeql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pillarjs/path-to-regexp/HEAD/.github/workflows/codeql.yml -------------------------------------------------------------------------------- /.github/workflows/scorecard.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pillarjs/path-to-regexp/HEAD/.github/workflows/scorecard.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pillarjs/path-to-regexp/HEAD/.gitignore -------------------------------------------------------------------------------- /History.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pillarjs/path-to-regexp/HEAD/History.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pillarjs/path-to-regexp/HEAD/LICENSE -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pillarjs/path-to-regexp/HEAD/Readme.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pillarjs/path-to-regexp/HEAD/package.json -------------------------------------------------------------------------------- /scripts/redos.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pillarjs/path-to-regexp/HEAD/scripts/redos.ts -------------------------------------------------------------------------------- /src/cases.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pillarjs/path-to-regexp/HEAD/src/cases.spec.ts -------------------------------------------------------------------------------- /src/index.bench.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pillarjs/path-to-regexp/HEAD/src/index.bench.ts -------------------------------------------------------------------------------- /src/index.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pillarjs/path-to-regexp/HEAD/src/index.spec.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pillarjs/path-to-regexp/HEAD/src/index.ts -------------------------------------------------------------------------------- /tsconfig.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pillarjs/path-to-regexp/HEAD/tsconfig.build.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pillarjs/path-to-regexp/HEAD/tsconfig.json -------------------------------------------------------------------------------- /vitest.config.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pillarjs/path-to-regexp/HEAD/vitest.config.mts --------------------------------------------------------------------------------