hoon-module-deploy
TypeScript icon, indicating that this package has built-in type declarations

2.0.1 • Public • Published

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

/hoon-module-deploy/

    Package Sidebar

    Install

    npm i hoon-module-deploy

    Weekly Downloads

    3

    Version

    2.0.1

    License

    MIT

    Unpacked Size

    2.52 kB

    Total Files

    6

    Last publish

    Collaborators

    • ihello0720