Skip to content

Latest commit

 

History

History
41 lines (28 loc) · 619 Bytes

README.md

File metadata and controls

41 lines (28 loc) · 619 Bytes

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");
});