myplu
v0.0.3
Published
A Node.js module that returns the plural form of any noun
Downloads
6
Readme
mypluralize
A Node.js module that returns the plural form of any noun
Installation
npm install mypluralize --save
yarn add mypluralize
bower install pluralize --save
Usage
Javascript
var pluralise = require("mypluralize");
var boys = pluralise.getPlural("Boy");
Output should be 'Boys'
TypeScript
import { getPlural } from "mypluralize";
console.log(getPlural("Goose"));
Output should be 'Geese'
AMD
define(function(require, exports, module) {
var pluralise = require("mypluralize");
});
Test
npm run test