Socket
Socket
Sign inDemoInstall

plur

Package Overview
Dependencies
1
Maintainers
1
Versions
12
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    plur

Pluralize a word


Version published
Weekly downloads
1.5M
increased by8.07%
Maintainers
1
Install size
13.3 kB
Created
Weekly downloads
 

Package description

What is plur?

The plur npm package is designed to easily pluralize words. It allows you to get the plural form of a word based on the count provided. This can be particularly useful in applications where you need to display text that dynamically changes based on a quantity (e.g., item counts, messages, etc.).

What are plur's main functionalities?

Pluralizing a word

This feature allows you to pluralize a single word based on a count. If the count is more than one, it returns the plural form of the word.

"const plur = require('plur');\nconsole.log(plur('unicorn', 2)); // 'unicorns'"

Custom plural forms

This feature allows you to specify a custom plural form for a word. This is useful for words that do not follow regular pluralization rules.

"const plur = require('plur');\nconsole.log(plur('radius', 2, 'radii')); // 'radii'"

Other packages similar to plur

Readme

Source

plur Build Status

Pluralize a word

Install

$ npm install plur

Usage

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.
  • 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.

Keywords

FAQs

Last updated on 16 Feb 2020

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc