You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently there is no way to find out if there are any common elements in two arrays in the data object. This could be achieved by adding a globally available intersection function which returns the common elements in two arrays:
Currently this cannot be achieved with the current set of operators since var operations are relative to the array element being tested.
I am aware that a custom operator would solve this problem but instead of writing it privately, I'd prefer contributing so that others could take it into use as well.
What is the recommended way to contribute? Raise a PR into this repo and the JS implementation?
The text was updated successfully, but these errors were encountered:
Currently there is no way to find out if there are any common elements in two arrays in the data object. This could be achieved by adding a globally available
intersection
function which returns the common elements in two arrays:Deciding if there are any elements common to both arrays:
Currently this cannot be achieved with the current set of operators since
var
operations are relative to the array element being tested.I am aware that a custom operator would solve this problem but instead of writing it privately, I'd prefer contributing so that others could take it into use as well.
What is the recommended way to contribute? Raise a PR into this repo and the JS implementation?
The text was updated successfully, but these errors were encountered: