JSPM

@nathanfaucett/pluralize

0.0.1
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 3
  • Score
    100M100P100Q29407F
  • License MIT

pluralize words, uses global inflector from inflections @nathanfaucett/inflections

Package Exports

  • @nathanfaucett/pluralize

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@nathanfaucett/pluralize) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

pluralize

pluralize words, uses global inflector from inflections @nathanfaucett/inflections

var pluralize = require("@nathanfaucett/pluralize"),
    inflections = require("@nathanfaucett/inflections");


var en = inflections("en");

en.plural(/$/, "s");
en.plural(/(ch|sh|ss|[sxz])$/i, "$1es");
en.plural(/([^aeiouy])y$/i, "$1ies");

pluralize("word") === "words";
pluralize("sky") === "skies";
pluralize("box", "en") === "boxes";