├── .editorconfig ├── .eslintrc.js ├── .github └── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── .gitignore ├── .prettierrc ├── LICENSE ├── README.md ├── babel.config.js ├── dist ├── esm │ ├── index.js │ └── index.js.map ├── types │ ├── constants │ │ ├── constants.d.ts │ │ └── constants.d.ts.map │ ├── functions │ │ ├── toJavanese.d.ts │ │ ├── toJavanese.d.ts.map │ │ ├── toLatin.d.ts │ │ └── toLatin.d.ts.map │ ├── helpers │ │ ├── CarakanHelper.d.ts │ │ ├── CarakanHelper.d.ts.map │ │ ├── LatinHelper.d.ts │ │ ├── LatinHelper.d.ts.map │ │ ├── SyllableBuilder.d.ts │ │ └── SyllableBuilder.d.ts.map │ ├── index.d.ts │ └── index.d.ts.map └── umd │ ├── index.js │ └── index.js.map ├── jest.config.js ├── package.json ├── rollup.config.js ├── src ├── constants │ └── constants.ts ├── functions │ ├── toJavanese.ts │ └── toLatin.ts ├── helpers │ ├── CarakanHelper.ts │ ├── LatinHelper.ts │ └── SyllableBuilder.ts └── index.ts ├── tests └── index.spec.ts ├── tsconfig.json └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masnormen/carakanjs/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masnormen/carakanjs/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masnormen/carakanjs/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masnormen/carakanjs/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masnormen/carakanjs/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masnormen/carakanjs/HEAD/.prettierrc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masnormen/carakanjs/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masnormen/carakanjs/HEAD/README.md -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masnormen/carakanjs/HEAD/babel.config.js -------------------------------------------------------------------------------- /dist/esm/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masnormen/carakanjs/HEAD/dist/esm/index.js -------------------------------------------------------------------------------- /dist/esm/index.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masnormen/carakanjs/HEAD/dist/esm/index.js.map -------------------------------------------------------------------------------- /dist/types/constants/constants.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masnormen/carakanjs/HEAD/dist/types/constants/constants.d.ts -------------------------------------------------------------------------------- /dist/types/constants/constants.d.ts.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masnormen/carakanjs/HEAD/dist/types/constants/constants.d.ts.map -------------------------------------------------------------------------------- /dist/types/functions/toJavanese.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masnormen/carakanjs/HEAD/dist/types/functions/toJavanese.d.ts -------------------------------------------------------------------------------- /dist/types/functions/toJavanese.d.ts.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masnormen/carakanjs/HEAD/dist/types/functions/toJavanese.d.ts.map -------------------------------------------------------------------------------- /dist/types/functions/toLatin.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masnormen/carakanjs/HEAD/dist/types/functions/toLatin.d.ts -------------------------------------------------------------------------------- /dist/types/functions/toLatin.d.ts.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masnormen/carakanjs/HEAD/dist/types/functions/toLatin.d.ts.map -------------------------------------------------------------------------------- /dist/types/helpers/CarakanHelper.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masnormen/carakanjs/HEAD/dist/types/helpers/CarakanHelper.d.ts -------------------------------------------------------------------------------- /dist/types/helpers/CarakanHelper.d.ts.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masnormen/carakanjs/HEAD/dist/types/helpers/CarakanHelper.d.ts.map -------------------------------------------------------------------------------- /dist/types/helpers/LatinHelper.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masnormen/carakanjs/HEAD/dist/types/helpers/LatinHelper.d.ts -------------------------------------------------------------------------------- /dist/types/helpers/LatinHelper.d.ts.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masnormen/carakanjs/HEAD/dist/types/helpers/LatinHelper.d.ts.map -------------------------------------------------------------------------------- /dist/types/helpers/SyllableBuilder.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masnormen/carakanjs/HEAD/dist/types/helpers/SyllableBuilder.d.ts -------------------------------------------------------------------------------- /dist/types/helpers/SyllableBuilder.d.ts.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masnormen/carakanjs/HEAD/dist/types/helpers/SyllableBuilder.d.ts.map -------------------------------------------------------------------------------- /dist/types/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masnormen/carakanjs/HEAD/dist/types/index.d.ts -------------------------------------------------------------------------------- /dist/types/index.d.ts.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masnormen/carakanjs/HEAD/dist/types/index.d.ts.map -------------------------------------------------------------------------------- /dist/umd/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masnormen/carakanjs/HEAD/dist/umd/index.js -------------------------------------------------------------------------------- /dist/umd/index.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masnormen/carakanjs/HEAD/dist/umd/index.js.map -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masnormen/carakanjs/HEAD/jest.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masnormen/carakanjs/HEAD/package.json -------------------------------------------------------------------------------- /rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masnormen/carakanjs/HEAD/rollup.config.js -------------------------------------------------------------------------------- /src/constants/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masnormen/carakanjs/HEAD/src/constants/constants.ts -------------------------------------------------------------------------------- /src/functions/toJavanese.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masnormen/carakanjs/HEAD/src/functions/toJavanese.ts -------------------------------------------------------------------------------- /src/functions/toLatin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masnormen/carakanjs/HEAD/src/functions/toLatin.ts -------------------------------------------------------------------------------- /src/helpers/CarakanHelper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masnormen/carakanjs/HEAD/src/helpers/CarakanHelper.ts -------------------------------------------------------------------------------- /src/helpers/LatinHelper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masnormen/carakanjs/HEAD/src/helpers/LatinHelper.ts -------------------------------------------------------------------------------- /src/helpers/SyllableBuilder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masnormen/carakanjs/HEAD/src/helpers/SyllableBuilder.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masnormen/carakanjs/HEAD/src/index.ts -------------------------------------------------------------------------------- /tests/index.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masnormen/carakanjs/HEAD/tests/index.spec.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masnormen/carakanjs/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masnormen/carakanjs/HEAD/yarn.lock --------------------------------------------------------------------------------