Node.js Module that returns plural of any noun
npm install pluralizedThis a NODE.Js module which returns the plural form of the input word.
npm i pluralized
For using the npm files.
``javascript`
var pluralise = require("pluralized");
var boys = pluralise.getPlural("Roof");
`sh`
Output shown will be 'Roofs'
`typescript`
import { getPlural } from "mypluralize";
console.log(getPlural("Shelf"));
`sh`
Output shown will be 'Shelves'
`javascript``
define(function (require, exports, module) {
var pluralise = require("mypluralize");
});