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
Foo:bar === foo:bar in most cases I can think of.
Foo:bar
foo:bar
Maybe an option {toLowerCase: true} that defaults to true?
The text was updated successfully, but these errors were encountered:
Yeah, or ignoreCase: true that defaults to true (would require a major version bump)
ignoreCase: true
Sorry, something went wrong.
Makes sense, good suggestion. I think change:
static parse(str, transformTextToConditions = []
https://github.com/mixmaxhq/search-string/blob/8eed146/src/searchString.js#L30
To:
static parse(str, options = { // Default options. transformTextToConditions: [], ignoreOperatorCase: true // Ignores case of operator only. });
... and do the rest of the implementation 🥇
And it would be a major version bump.
What do you think @braco? Want to take a stab at it with a PR?
No branches or pull requests
Foo:bar
===foo:bar
in most cases I can think of.Maybe an option {toLowerCase: true} that defaults to true?
The text was updated successfully, but these errors were encountered: