Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

pluralize

Package Overview
Dependencies
Maintainers
1
Versions
34
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

pluralize - npm Package Compare versions

Comparing version 1.1.5 to 1.1.6

2

package.json
{
"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'],

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc