1.0.7 • Published 8 years ago

@testapplications/sample v1.0.7

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

Build Status

mypluralize

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

Installation

npm install @testapplications/sample --save
yarn add @testapplications/sample
bower install @testapplications/sample --save

Usage

Javascript

var pluralise = require('testapplications/sample');
var boys = pluralise.getPlural('Boy');
Output should be 'Boys'

TypeScript

import { getPlural } from 'testapplications/sample';
console.log(getPlural('Goose'))
Output should be 'Geese'

AMD

define(function(require,exports,module){
  var pluralise = require('testapplications/sample');
});

Test

npm run test
1.0.7

8 years ago

1.0.6

8 years ago

1.0.5

8 years ago

1.0.4

8 years ago

1.0.3

8 years ago

1.0.2

8 years ago

1.0.1

8 years ago

1.0.0

8 years ago