-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Huned Botee
committed
Mar 7, 2014
1 parent
845ffa9
commit fe55c52
Showing
1 changed file
with
15 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,28 @@ | ||
# stopwords for node.js # | ||
# Stopwords for node.js # | ||
|
||
main repo: github.com:huned/node-stopwords | ||
|
||
## Overview ## | ||
|
||
A basic set of stopwords you can easily use with your node.js programs. Currently only provides english stopwords. Stopwords in other languages are welcome as pull requests to github.com:huned/node-stopwords. | ||
Stopwords in multiple languages that you can easily use with your node.js | ||
programs. Currently provides stopwords for the following languages: | ||
|
||
* English | ||
* Spanish | ||
|
||
Stopwords in other languages are welcome as pull requests to | ||
github.com:huned/node-stopwords. | ||
|
||
## Install ## | ||
|
||
npm install stopwords | ||
|
||
## Usage ## | ||
|
||
require('stopwords').english; // an array of strings | ||
// get an array of english stopwords | ||
require('stopwords').english; | ||
|
||
// get an array of spanish stopwords | ||
require('stopwords').spanish; | ||
|
||
:q! | ||
:q! |