shevchenko
Version:
JavaScript library for declension of Ukrainian anthroponyms
20 lines (18 loc) • 638 B
JavaScript
/**
* @file JavaScript library for declension of Ukrainian anthroponyms
* @module shevchenko
* @version 3.2.2
* @author Oleksandr Tolochko <shevchenko-js@tooleks.com>
* @license MIT
* @copyright 2017-2026 Oleksandr Tolochko <shevchenko-js@tooleks.com>
* @see {@link git+https://github.com/tooleks/shevchenko-js.git}
*/
;
/**
* Enum representing the possible grammatical genders.
*/
exports.GrammaticalGender = void 0;
(function (GrammaticalGender) {
GrammaticalGender["MASCULINE"] = "masculine";
GrammaticalGender["FEMININE"] = "feminine";
})(exports.GrammaticalGender || (exports.GrammaticalGender = {}));