We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
So "red car" would only match explicitly "red car", not red, car, reddit, carnage, etc.
The text was updated successfully, but these errors were encountered:
I also think this should be added. I accomplished it with this hack:
// Treat search query as an entire token Sifter.prototype.tokenize = function(query) { if(!query || !query.length) { return []; } else { return [{ string: query, regex: new RegExp(query, 'i') }]; } };
It doesn't work if I just override tokenize for a single Sifter object for some reason.
tokenize
Sorry, something went wrong.
No branches or pull requests
So "red car" would only match explicitly "red car", not red, car, reddit, carnage, etc.
The text was updated successfully, but these errors were encountered: