0.0.1 • Published 4 years ago

test-i-kay v0.0.1

Weekly downloads
1
License
ISC
Repository
github
Last release
4 years ago

mypluralize

A Node.js module that returns the plural form of any noun

Installation

npm install test-i-kay --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