Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
First of all, thanks for this great module. I have found it really usefull.
I have decided to submit this pull request, because we have had some strange behaviour handling objects:
Having:
and
I would expect:
and also:
Which is not happening because of jsonLogic.is_logic treats every single item object as a logic rule.
So I have checked the operations collection and have made a whitelsit ("asymetricOperationsNames") containing every valid operation.
I have had to change a few tests, since we are not getting as many "Unrecognized operation" as before.
(and also, my editor is responsible for the linting)
Maybe adding a runtime toggle (jsonLogic.smartOperationResolve = true) would be a more conservative approach (and backwards compatible).
any thoughts?