kbrsh / wade

:ocean: Blazing fast 1kb search library

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Not able to locate letter `a`

mrjjwright opened this issue · comments

Thanks for this awesome little lib.

In both my own code and the example on the README, nothing comes up when searching for the letter 'a'.

That's because the letter a is a word as well. It's also a stop word, and Wade removes it from the query.

If you want to remove this step, try:

Wade.pipeline.pop();

Oh ok, thanks!