pluralized
v1.0.2
Published
Node.js Module that returns plural of any noun
Downloads
685
Maintainers
Readme
PLURALIZED
This a NODE.Js module which returns the plural form of the input word.
For Installation
npm i pluralized
Usage
For using the npm files.
JavaScript
var pluralise = require("pluralized");
var boys = pluralise.getPlural("Roof");
Output shown will be 'Roofs'
TypeScript
import { getPlural } from "mypluralize";
console.log(getPlural("Shelf"));
Output shown will be 'Shelves'
Asynchronous module definition
define(function (require, exports, module) {
var pluralise = require("mypluralize");
});