├── .github └── workflows │ └── test.yml ├── .gitignore ├── .npmignore ├── .prettierrc ├── CHANGELOG.md ├── LICENSE ├── Readme.md ├── lib ├── inflection.d.ts └── inflection.js ├── package.json ├── src └── inflection.ts ├── test └── inflection.test.ts ├── tsconfig.json └── vite.config.js /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamerslab/node.inflection/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamerslab/node.inflection/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamerslab/node.inflection/HEAD/.npmignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- 1 | { 2 | "singleQuote": true 3 | } -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamerslab/node.inflection/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamerslab/node.inflection/HEAD/LICENSE -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamerslab/node.inflection/HEAD/Readme.md -------------------------------------------------------------------------------- /lib/inflection.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamerslab/node.inflection/HEAD/lib/inflection.d.ts -------------------------------------------------------------------------------- /lib/inflection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamerslab/node.inflection/HEAD/lib/inflection.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamerslab/node.inflection/HEAD/package.json -------------------------------------------------------------------------------- /src/inflection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamerslab/node.inflection/HEAD/src/inflection.ts -------------------------------------------------------------------------------- /test/inflection.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamerslab/node.inflection/HEAD/test/inflection.test.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamerslab/node.inflection/HEAD/tsconfig.json -------------------------------------------------------------------------------- /vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamerslab/node.inflection/HEAD/vite.config.js --------------------------------------------------------------------------------