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

english-plurals

Package Overview
Dependencies
Maintainers
0
Versions
77
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

english-plurals

English plural of words

  • 3.3.1
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
86
decreased by-62.77%
Maintainers
0
Weekly downloads
 
Created
Source

English plurals

Features

Agreement of English words (singular / plural), based on a few rules and on linguistic resources.

You have to import and provide independently linguistic resources: use english-plurals-list. If you do not provide linguistic resources, very basic rules will be used: adding s or es mainly.

Also see pluralize-me that does the same thing with another approach (almost no resources, more rules, and allows plural to singular transformation).

Usage

getPlural returns the plural of a singular word, based on:

  • a list of exception elements where singular is the key and having a plural property: in general leave null
  • a list of irregular plurals: use english-plurals-list
  • the singular word

Installation

npm install english-plurals

Usage

const EnglishPlurals = require('english-plurals');
const Irregular = require('english-plurals-list/dist/plurals.json');

// women
console.log(EnglishPlurals.getPlural(Irregular, 'woman'));

Keywords

FAQs

Package last updated on 29 Nov 2024

Did you know?

Socket

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

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc