All Projects → jonschlinkert → common-words

jonschlinkert / common-words

Licence: MIT License
Updated list of the 100 most common words in the English language. Useful for excluding these words from arrays.

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to common-words

is-primitive
Is the typeof value a javascript primitive?
Stars: ✭ 35 (+169.23%)
Mutual labels:  string, jonschlinkert
Gray Matter
Contributing Pull requests and stars are always welcome. For bugs and feature requests, please create an issue.
Stars: ✭ 2,105 (+16092.31%)
Mutual labels:  parse, jonschlinkert
Remarkable
Markdown parser, done right. Commonmark support, extensions, syntax plugins, high speed - all in one. Gulp and metalsmith plugins available. Used by Facebook, Docusaurus and many others! Use https://github.com/breakdance/breakdance for HTML-to-markdown conversion. Use https://github.com/jonschlinkert/markdown-toc to generate a table of contents.
Stars: ✭ 5,252 (+40300%)
Mutual labels:  parse, jonschlinkert
snapdragon-lexer
Converts a string into an array of tokens, with useful methods for looking ahead and behind, capturing, matching, et cetera.
Stars: ✭ 19 (+46.15%)
Mutual labels:  parse, jonschlinkert
parse-git-config
Parse `.git/config` into a JavaScript object. sync or async.
Stars: ✭ 55 (+323.08%)
Mutual labels:  parse, jonschlinkert
parse-author
Parse a person, author, contributor or maintainer string into an object with name, email and url properties following NPM conventions. Useful for the `authors` property in package.json or for parsing an AUTHORS file into an array of person objects.
Stars: ✭ 23 (+76.92%)
Mutual labels:  parse, string
pascalcase
Convert a string to pascal case (upper camel case). Used by more than 8.7 million projects on GitHub! Please follow this library's author: https://github.com/jonschlinkert
Stars: ✭ 35 (+169.23%)
Mutual labels:  string, jonschlinkert
node-red-contrib-string
Provides a string manipulation node with a chainable UI based on the concise and lightweight stringjs.com.
Stars: ✭ 15 (+15.38%)
Mutual labels:  parse, string
DigitText
The module allows to translate numbers into a text equivalent. This is important in the billing.
Stars: ✭ 22 (+69.23%)
Mutual labels:  string, words
ytnef
Yeraze's TNEF Stream Reader - for winmail.dat files
Stars: ✭ 28 (+115.38%)
Mutual labels:  parse
LeagueReplayParser
C# library which can read some data from a .rofl file, and start a replay in the client. (no longer actively maintained)
Stars: ✭ 20 (+53.85%)
Mutual labels:  parse
json-source-map
Parse/stringify JSON and provide source-map for JSON-pointers to all nodes - supports BigInt, Maps, Sets and Typed arrays
Stars: ✭ 55 (+323.08%)
Mutual labels:  parse
parse-function
(!! moved to tunnckoCore/opensource multi-package repository !!) 🔱 Parse a function into an object using espree, acorn or babylon parsers. Extensible through Smart Plugins.
Stars: ✭ 37 (+184.62%)
Mutual labels:  parse
indexed-string-variation
Experimental JavaScript module to generate all possible variations of strings over an alphabet using an n-ary virtual tree
Stars: ✭ 16 (+23.08%)
Mutual labels:  string
python-yamlable
A thin wrapper of PyYaml to convert Python objects to YAML and back
Stars: ✭ 28 (+115.38%)
Mutual labels:  parse
angular-expression-parser
This library helps in achieving AngularJs equivalents of $parse, $eval and $watch in Angular.
Stars: ✭ 17 (+30.77%)
Mutual labels:  parse
sjson-cpp
An Simplified JSON (SJSON) C++ reader and writer
Stars: ✭ 16 (+23.08%)
Mutual labels:  parse
OpenGraph-Net
.Net Open Graph Parser written in C#
Stars: ✭ 111 (+753.85%)
Mutual labels:  parse
ToggleWords
Sublime Text 3 Plugin - Toggle words on hotkey
Stars: ✭ 36 (+176.92%)
Mutual labels:  words
widestring-rs
A wide string Rust library for converting to and from wide Unicode strings.
Stars: ✭ 48 (+269.23%)
Mutual labels:  string

common-words NPM version

Updated list (JSON) of the 100 most common words in the english language. Useful for excluding these words from arrays.

From https://en.wikipedia.org/wiki/Most_common_words_in_English

Example:

[
  {
    "rank": "1",
    "word": "the"
  },
  {
    "rank": "2",
    "word": "be"
  },
  {
    "rank": "3",
    "word": "to"
  },
  ...
]

Install

Install with npm:

npm i common-words --save-dev

Usage

var common = require('common-words');

function removeCommonWords(words, common) {
  common.forEach(function(obj) {
    var word = obj.word;
    while (words.indexOf(word) !== -1) {
      words.splice(words.indexOf(word), 1);
    }
  });
  return words;
};
removeCommonWords(yourWords, common);

Author

Jon Schlinkert

License

Copyright (c) 2014 Jon Schlinkert, contributors. Released under the MIT license


This file was generated by verb-cli on April 13, 2014.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].