diff options
Diffstat (limited to 'bucky/search/stopwords.js')
| -rw-r--r-- | bucky/search/stopwords.js | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/bucky/search/stopwords.js b/bucky/search/stopwords.js new file mode 100644 index 0000000..ceffe14 --- /dev/null +++ b/bucky/search/stopwords.js @@ -0,0 +1,18 @@ +module.exports = new Set( + "a about above across adj after again against all almost alone along also " + + "although always am among an and another any anybody anyone anything anywhere " + + "apart are around as aside at away be because been before behind being below " + + "besides between beyond both but by can cannot could did do does doing done " + + "down downwards during each either else enough etc even ever every everybody " + + "everyone except far few for forth from get gets got had hardly has have having " + + "her here herself him himself his how however i if in indeed instead into inward " + + "is it its itself just kept many maybe might mine more most mostly much must " + + "myself near neither next no nobody none nor not nothing nowhere of off often on " + + "only onto or other others ought our ours out outside over own p per please plus " + + "pp quite rather really said seem self selves several shall she should since so " + + "some somebody somewhat still such than that the their theirs them themselves " + + "then there therefore these they this thorough thoroughly those through thus to " + + "together too toward towards under until up upon v very was well were what " + + "whatever when whenever where whether which while who whom whose will with" + + "within without would yet young your yourself s".split(" ") +); |
