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
Hi! Thank you for this amazing library!
I think it may be helpful to ignore keywords case.
const options = { keywords: ['name', 'town'], }; const query = "Name:John,Ben,Bill";
might be done by adding new option, like
ignoreCase: true // or something else
and adding condition to line 130:
// We got an advanced search syntax else { key = options.ignoreCase ? term.keyword.toLowerCase() : term.keyword ...
Thoughts? :)
The text was updated successfully, but these errors were encountered:
Yes, very good idea! Can you send a pull request with this addition and a few tests?
Sorry, something went wrong.
No branches or pull requests
Hi!
Thank you for this amazing library!
I think it may be helpful to ignore keywords case.
might be done by adding new option, like
and adding condition to line 130:
Thoughts? :)
The text was updated successfully, but these errors were encountered: