This a NODE.Js module which returns the plural form of the input word.
npm i pluralized
For using the npm files.
var pluralise = require("pluralized");
var boys = pluralise.getPlural("Roof");
Output shown will be 'Roofs'
import { getPlural } from "mypluralize";
console.log(getPlural("Shelf"));
Output shown will be 'Shelves'
define(function (require, exports, module) {
var pluralise = require("mypluralize");
});