diff options
author | Florian Dold <florian.dold@gmail.com> | 2016-10-10 03:43:44 +0200 |
---|---|---|
committer | Florian Dold <florian.dold@gmail.com> | 2016-10-10 03:43:44 +0200 |
commit | abd94a7f5a50f43c797a11b53549ae48fff667c3 (patch) | |
tree | ab8ed457f65cdd72e13e0571d2975729428f1551 /node_modules/plur | |
parent | a0247c6a3fd6a09a41a7e35a3441324c4dcb58be (diff) |
add node_modules to address #4364
Diffstat (limited to 'node_modules/plur')
-rw-r--r-- | node_modules/plur/index.js | 20 | ||||
-rw-r--r-- | node_modules/plur/license | 21 | ||||
-rw-r--r-- | node_modules/plur/package.json | 105 | ||||
-rw-r--r-- | node_modules/plur/readme.md | 67 |
4 files changed, 213 insertions, 0 deletions
diff --git a/node_modules/plur/index.js b/node_modules/plur/index.js new file mode 100644 index 000000000..ed3f9b06b --- /dev/null +++ b/node_modules/plur/index.js @@ -0,0 +1,20 @@ +'use strict'; +var irregularPlurals = require('irregular-plurals'); + +module.exports = function (str, plural, count) { + if (typeof plural === 'number') { + count = plural; + } + + if (str in irregularPlurals) { + plural = irregularPlurals[str]; + } else if (typeof plural !== 'string') { + plural = (str.replace(/(?:s|x|z|ch|sh)$/i, '$&e').replace(/([^aeiou])y$/i, '$1ie') + 's') + .replace(/i?e?s$/i, function (m) { + var isTailLowerCase = str.slice(-1) === str.slice(-1).toLowerCase(); + return isTailLowerCase ? m.toLowerCase() : m.toUpperCase(); + }); + } + + return count === 1 ? str : plural; +}; diff --git a/node_modules/plur/license b/node_modules/plur/license new file mode 100644 index 000000000..654d0bfe9 --- /dev/null +++ b/node_modules/plur/license @@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com) + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. diff --git a/node_modules/plur/package.json b/node_modules/plur/package.json new file mode 100644 index 000000000..b9baa11f4 --- /dev/null +++ b/node_modules/plur/package.json @@ -0,0 +1,105 @@ +{ + "_args": [ + [ + { + "raw": "plur@^2.0.0", + "scope": null, + "escapedName": "plur", + "name": "plur", + "rawSpec": "^2.0.0", + "spec": ">=2.0.0 <3.0.0", + "type": "range" + }, + "/home/dold/repos/taler/wallet-webex/node_modules/gulp-debug" + ] + ], + "_from": "plur@>=2.0.0 <3.0.0", + "_id": "plur@2.1.2", + "_inCache": true, + "_location": "/plur", + "_nodeVersion": "4.2.1", + "_npmUser": { + "name": "sindresorhus", + "email": "sindresorhus@gmail.com" + }, + "_npmVersion": "2.14.7", + "_phantomChildren": {}, + "_requested": { + "raw": "plur@^2.0.0", + "scope": null, + "escapedName": "plur", + "name": "plur", + "rawSpec": "^2.0.0", + "spec": ">=2.0.0 <3.0.0", + "type": "range" + }, + "_requiredBy": [ + "/gulp-debug" + ], + "_resolved": "https://registry.npmjs.org/plur/-/plur-2.1.2.tgz", + "_shasum": "7482452c1a0f508e3e344eaec312c91c29dc655a", + "_shrinkwrap": null, + "_spec": "plur@^2.0.0", + "_where": "/home/dold/repos/taler/wallet-webex/node_modules/gulp-debug", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "bugs": { + "url": "https://github.com/sindresorhus/plur/issues" + }, + "dependencies": { + "irregular-plurals": "^1.0.0" + }, + "description": "Pluralize a word", + "devDependencies": { + "ava": "*", + "xo": "*" + }, + "directories": {}, + "dist": { + "shasum": "7482452c1a0f508e3e344eaec312c91c29dc655a", + "tarball": "https://registry.npmjs.org/plur/-/plur-2.1.2.tgz" + }, + "engines": { + "node": ">=0.10.0" + }, + "files": [ + "index.js" + ], + "gitHead": "d896377c1ccd97ac612c491e4926176b5f92d8a6", + "homepage": "https://github.com/sindresorhus/plur", + "keywords": [ + "plur", + "plural", + "plurals", + "pluralize", + "singular", + "count", + "word", + "string", + "str", + "irregular", + "noun", + "nouns" + ], + "license": "MIT", + "maintainers": [ + { + "name": "sindresorhus", + "email": "sindresorhus@gmail.com" + } + ], + "name": "plur", + "optionalDependencies": {}, + "readme": "ERROR: No README data found!", + "repository": { + "type": "git", + "url": "git+https://github.com/sindresorhus/plur.git" + }, + "scripts": { + "test": "xo && ava" + }, + "version": "2.1.2" +} diff --git a/node_modules/plur/readme.md b/node_modules/plur/readme.md new file mode 100644 index 000000000..40103d81a --- /dev/null +++ b/node_modules/plur/readme.md @@ -0,0 +1,67 @@ +# plur [](https://travis-ci.org/sindresorhus/plur) + +> Pluralize a word + + +## Install + +``` +$ npm install --save plur +``` + + +## Usage + +```js +const plur = require('plur'); + +plur('unicorn', 4); +//=> 'unicorns' + +plur('puppy', 2); +//=> 'puppies' + +plur('box', 2); +//=> 'boxes' + +plur('cactus', 2); +//=> 'cacti' +``` + + +## API + +### plur(word, [plural], count) + +#### word + +Type: `string` + +Word to pluralize. + +#### plural + +Type: `string` +Default: + +- Irregular nouns will use this [list](https://github.com/sindresorhus/irregular-plurals/blob/master/irregular-plurals.json). +- Words ending in *s*, *x*, *z*, *ch*, *sh* will be pluralized with *-es* (eg. *foxes*). +- Words ending in *y* that are preceded by a consonant will be pluralized by replacing *y* with *-ies* (eg. *puppies*). +- All other words will have "s" added to the end (eg. *days*). + +Pluralized word. + +The plural suffix will match the case of the last letter in the word. + +This option is only for extreme edge-cases. You probably won't need it. + +#### count + +Type: `number` + +Count to determine whether to use singular or plural. + + +## License + +MIT © [Sindre Sorhus](http://sindresorhus.com) |