├── .editorconfig ├── .eslintrc.json ├── .gitattributes ├── .github ├── CODEOWNERS ├── FUNDING.yml ├── ISSUE_TEMPLATE.md ├── PULL_REQUEST_TEMPLATE.md └── workflows │ ├── ci.yml │ └── publish.yml ├── .gitignore ├── .npmrc ├── .vscode └── settings.json ├── CHANGELOG.md ├── FULL_CHANGELOG.md ├── LICENSE ├── README.md ├── code-of-conduct.md ├── package.json ├── src ├── benchmarks │ ├── normalize-sync.bench.ts │ └── normalize.bench.ts ├── diacritics.ts ├── index.ts ├── normalize-sync.ts ├── normalize.ts ├── tests │ ├── error.test.ts │ ├── normalize-sync.test.ts │ ├── normalize.test.ts │ └── types.ts └── types.ts ├── tsconfig.json └── vite.config.ts /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motss/normalize-diacritics/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motss/normalize-diacritics/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motss/normalize-diacritics/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @motss 2 | -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motss/normalize-diacritics/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motss/normalize-diacritics/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motss/normalize-diacritics/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motss/normalize-diacritics/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motss/normalize-diacritics/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motss/normalize-diacritics/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motss/normalize-diacritics/HEAD/.npmrc -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motss/normalize-diacritics/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motss/normalize-diacritics/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /FULL_CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motss/normalize-diacritics/HEAD/FULL_CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motss/normalize-diacritics/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motss/normalize-diacritics/HEAD/README.md -------------------------------------------------------------------------------- /code-of-conduct.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motss/normalize-diacritics/HEAD/code-of-conduct.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motss/normalize-diacritics/HEAD/package.json -------------------------------------------------------------------------------- /src/benchmarks/normalize-sync.bench.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motss/normalize-diacritics/HEAD/src/benchmarks/normalize-sync.bench.ts -------------------------------------------------------------------------------- /src/benchmarks/normalize.bench.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motss/normalize-diacritics/HEAD/src/benchmarks/normalize.bench.ts -------------------------------------------------------------------------------- /src/diacritics.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motss/normalize-diacritics/HEAD/src/diacritics.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motss/normalize-diacritics/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/normalize-sync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motss/normalize-diacritics/HEAD/src/normalize-sync.ts -------------------------------------------------------------------------------- /src/normalize.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motss/normalize-diacritics/HEAD/src/normalize.ts -------------------------------------------------------------------------------- /src/tests/error.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motss/normalize-diacritics/HEAD/src/tests/error.test.ts -------------------------------------------------------------------------------- /src/tests/normalize-sync.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motss/normalize-diacritics/HEAD/src/tests/normalize-sync.test.ts -------------------------------------------------------------------------------- /src/tests/normalize.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motss/normalize-diacritics/HEAD/src/tests/normalize.test.ts -------------------------------------------------------------------------------- /src/tests/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motss/normalize-diacritics/HEAD/src/tests/types.ts -------------------------------------------------------------------------------- /src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motss/normalize-diacritics/HEAD/src/types.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motss/normalize-diacritics/HEAD/tsconfig.json -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motss/normalize-diacritics/HEAD/vite.config.ts --------------------------------------------------------------------------------