UNPKG

prueba1mypluralize

Version:
9 lines 220 B
import * as pluralize from 'pluralize'; /** * @Method: Returns the plural form of any noun. * @Param {string} * @Return {string} */ export function getPlural(str: any): string { return pluralize.plural(str) }