0.1.1 • Published 9 years ago

is-plural v0.1.1

Weekly downloads
1
License
MIT
Repository
github
Last release
9 years ago

is-plural NPM version

Returns true if the given english word is pluralized.

Please report any pluralization-related issues to pluralize.

Install

Install with npm

$ npm i is-plural --save

Usage

var isPlural = require('is-plural');

isPlural('apple');
//=> false

isPlural('apples');
//=> true

Related projects

  • alphabet: The english alphabet as a string or array, upper and lowercase.
  • common-words: Updated list (JSON) of the 100 most common words in the English language. Useful for… more
  • keywords: CLI utility for normalizing, adding and removing keywords from package.json.
  • shuffle-words: Shuffle the words in a string and optionally the letters in each word using the… more
  • unique-words: Return the unique words in a string or array.
  • wordcount: Count the words in string. Has basic support for Cyrillic and CJK.
  • word-wrap: Wrap words to a specified length.

Running tests

Install dev dependencies:

$ npm i -d && npm test

Contributing

Pull requests and stars are always welcome. For bugs and feature requests, please create an issue

Author

Jon Schlinkert

License

Copyright © 2015 Jon Schlinkert Released under the MIT license.


This file was generated by verb-cli on June 15, 2015.