@web3r/flowerkit
Version:
A collection of more than 60 often used utility JS functions that simplify frontend development.
13 lines • 570 B
TypeScript
/**
* Gets the declension of a word depending on the number. Useful for Cyrillic words
* @param num{Number} - source number
* @param words{Array=} - array of three words with declension of one, two and few or zero
* @return {string}
* @example
* // How to get right declension of Cyrillic word?
* const words = [ "товар", "товара", "товаров" ]; // one, two, few or zero
* getStrDeclination(2, words); // "товара"
*
*/
export function getStrDeclination(num: number, words?: any[] | undefined): string;
//# sourceMappingURL=index.d.ts.map