first commit
This commit is contained in:
20
build/node_modules/plur/index.js
generated
vendored
Normal file
20
build/node_modules/plur/index.js
generated
vendored
Normal file
@@ -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;
|
||||
};
|
||||
21
build/node_modules/plur/license
generated
vendored
Normal file
21
build/node_modules/plur/license
generated
vendored
Normal file
@@ -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.
|
||||
77
build/node_modules/plur/package.json
generated
vendored
Normal file
77
build/node_modules/plur/package.json
generated
vendored
Normal file
@@ -0,0 +1,77 @@
|
||||
{
|
||||
"_args": [
|
||||
[
|
||||
"plur@2.1.2",
|
||||
"/Users/asciidisco/Desktop/asciidisco.com/build"
|
||||
]
|
||||
],
|
||||
"_from": "plur@2.1.2",
|
||||
"_id": "plur@2.1.2",
|
||||
"_inBundle": false,
|
||||
"_integrity": "sha1-dIJFLBoPUI4+NE6uwxLJHCncZVo=",
|
||||
"_location": "/plur",
|
||||
"_phantomChildren": {},
|
||||
"_requested": {
|
||||
"type": "version",
|
||||
"registry": true,
|
||||
"raw": "plur@2.1.2",
|
||||
"name": "plur",
|
||||
"escapedName": "plur",
|
||||
"rawSpec": "2.1.2",
|
||||
"saveSpec": null,
|
||||
"fetchSpec": "2.1.2"
|
||||
},
|
||||
"_requiredBy": [
|
||||
"/stylehacks"
|
||||
],
|
||||
"_resolved": "https://registry.npmjs.org/plur/-/plur-2.1.2.tgz",
|
||||
"_spec": "2.1.2",
|
||||
"_where": "/Users/asciidisco/Desktop/asciidisco.com/build",
|
||||
"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": "*"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=0.10.0"
|
||||
},
|
||||
"files": [
|
||||
"index.js"
|
||||
],
|
||||
"homepage": "https://github.com/sindresorhus/plur#readme",
|
||||
"keywords": [
|
||||
"plur",
|
||||
"plural",
|
||||
"plurals",
|
||||
"pluralize",
|
||||
"singular",
|
||||
"count",
|
||||
"word",
|
||||
"string",
|
||||
"str",
|
||||
"irregular",
|
||||
"noun",
|
||||
"nouns"
|
||||
],
|
||||
"license": "MIT",
|
||||
"name": "plur",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/sindresorhus/plur.git"
|
||||
},
|
||||
"scripts": {
|
||||
"test": "xo && ava"
|
||||
},
|
||||
"version": "2.1.2"
|
||||
}
|
||||
67
build/node_modules/plur/readme.md
generated
vendored
Normal file
67
build/node_modules/plur/readme.md
generated
vendored
Normal file
@@ -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)
|
||||
Reference in New Issue
Block a user