0b1n-test-library

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

Usage no npm install needed!

<script type="module">
  import b1nTestLibrary from 'https://cdn.skypack.dev/0b1n-test-library';
</script>

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