1.0.2 • Published 3 years ago

pluralized v1.0.2

Weekly downloads
7
License
MPL-2.0
Repository
github
Last release
3 years ago

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