/syllabize-uz

Library for dividing Uzbek words into syllables.

Primary LanguageTypeScriptMIT LicenseMIT

syllabize-uz

Library for dividing Uzbek words into syllables.

Read in

Installation

NPM

npm install syllabize-uz

Yarn

yarn add syllabize-uz

Usage

Library provides a single function: syllabize(word)

import { syllabize } from "syllabize-uz";

const syllables = syllabize("olmaxon"); // ["ol", "ma", "xon"]

console.log(syllables.join("-")); // "ol-ma-xon"