Comparing version 1.1.5 to 1.1.6
{ | ||
"name": "pluralize", | ||
"version": "1.1.5", | ||
"version": "1.1.6", | ||
"description": "Pluralize and singularize any word", | ||
@@ -5,0 +5,0 @@ "main": "pluralize.js", |
@@ -159,4 +159,4 @@ /* global define */ | ||
function pluralize (word, count, inclusive) { | ||
var pluralized = count === 1 ? | ||
pluralize.singular(word) : pluralize.plural(word); | ||
var pluralized = count === 1 | ||
? pluralize.singular(word) : pluralize.plural(word); | ||
@@ -250,2 +250,3 @@ return (inclusive ? count + ' ' : '') + pluralized; | ||
['themself', 'themselves'], | ||
['is', 'are'], | ||
['this', 'these'], | ||
@@ -252,0 +253,0 @@ ['that', 'those'], |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
15005
398