Package Exports
- shevchenko
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (shevchenko) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
shevchenko - JavaScript бібліотека для відмінювання українських прізвищ, імен та по батькові
shevchenko - The JavaScript library to inflect Ukrainian first, middle and last names
Встановлення / Installation
npm install --save shevchenkoВикористання / Usage
var anthroponym = {
gender: "male", // or "female"
firstName: "Тарас",
middleName: "Григорович",
lastName: "Шевченко"
};
var result = shevchenko.inVocative(anthroponym);
console.log(result); // {gender: "male", firstName: "Тарасе", middleName: "Григоровичу", lastName: "Шевченку"}