├── .github └── workflows │ └── ci.yml ├── .gitignore ├── LICENSE.md ├── README.md ├── bench ├── index.js ├── package.json └── runBenchmark.js ├── index.d.ts ├── index.js ├── package.json └── tests └── index.test.js /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorgebucaran/classcat/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorgebucaran/classcat/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorgebucaran/classcat/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorgebucaran/classcat/HEAD/README.md -------------------------------------------------------------------------------- /bench/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorgebucaran/classcat/HEAD/bench/index.js -------------------------------------------------------------------------------- /bench/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorgebucaran/classcat/HEAD/bench/package.json -------------------------------------------------------------------------------- /bench/runBenchmark.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorgebucaran/classcat/HEAD/bench/runBenchmark.js -------------------------------------------------------------------------------- /index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorgebucaran/classcat/HEAD/index.d.ts -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorgebucaran/classcat/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorgebucaran/classcat/HEAD/package.json -------------------------------------------------------------------------------- /tests/index.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorgebucaran/classcat/HEAD/tests/index.test.js --------------------------------------------------------------------------------