UNPKG

shevchenko

Version:

JavaScript library for declension of Ukrainian anthroponyms

16 lines (13 loc) 540 B
/** * @file JavaScript library for declension of Ukrainian anthroponyms * @module shevchenko * @version 3.1.4 * @author Oleksandr Tolochko <shevchenko-js@tooleks.com> * @license MIT * @copyright 2017-2025 Oleksandr Tolochko <shevchenko-js@tooleks.com> * @see {@link git+https://github.com/tooleks/shevchenko-js.git} */ import declensionRules from './rules/artifacts/declension-rules.json.js'; import { WordInflector } from './word-inflector.js'; const wordInflector = new WordInflector(declensionRules); export { wordInflector };