Skip to content

isPlural

isPlural(word) → boolean · String

Checks if a word is in plural form.

  • word (required): word to check
utlx
isPlural("cats")                         // true
isPlural("cat")                          // false
isPlural("children")                     // true

Released under AGPL-3.0.