Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

custom-vuetify-components

k100514ISC1.0.0TypeScript support: included

A Node.js module that returns the plural form of any noun ## Installation sh npm install mypluralize --save yarn add mypluralize bower install pluralize --save ## Usage

vuetify, compoments

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