plury
Version:
A Node.js module that returns the plural form of any noun
13 lines (12 loc) • 301 B
TypeScript
/**
* @Method: Returns the plural form of any noun.
* @Param {string}
* @Return {string}
*/
export declare function getPlural(str: any): string;
/**
* @Method: Returns the Singular form of any noun.
* @Param {string}
* @Return {string}
*/
export declare function getSingular(str: string): string;