1.0.7 • Published 7 years ago

@testapplications/sample v1.0.7

Weekly downloads
1
License
ISC
Repository
github
Last release
7 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

7 years ago

1.0.6

7 years ago

1.0.5

7 years ago

1.0.4

7 years ago

1.0.3

7 years ago

1.0.2

7 years ago

1.0.1

7 years ago

1.0.0

7 years ago