├── .github └── workflows │ ├── merge.yml │ ├── pr.yml │ └── rollback.yml ├── .gitignore ├── LICENSE ├── README.md ├── changelog.md ├── index.d.ts ├── index.js ├── package.json ├── renovate.json └── tests └── index.js /.github/workflows/merge.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanHoyer/classies/HEAD/.github/workflows/merge.yml -------------------------------------------------------------------------------- /.github/workflows/pr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanHoyer/classies/HEAD/.github/workflows/pr.yml -------------------------------------------------------------------------------- /.github/workflows/rollback.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanHoyer/classies/HEAD/.github/workflows/rollback.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanHoyer/classies/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanHoyer/classies/HEAD/README.md -------------------------------------------------------------------------------- /changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanHoyer/classies/HEAD/changelog.md -------------------------------------------------------------------------------- /index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanHoyer/classies/HEAD/index.d.ts -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanHoyer/classies/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanHoyer/classies/HEAD/package.json -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanHoyer/classies/HEAD/renovate.json -------------------------------------------------------------------------------- /tests/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanHoyer/classies/HEAD/tests/index.js --------------------------------------------------------------------------------