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
Hi, I have one problem with json. I want compare some json array regardless of the order. For example: [ { "name": "some_name" }, { "name": "some_another_name" } ],
and [ { "name": "some_another_name" }, { "name": "some_name" } ],
The text was updated successfully, but these errors were encountered:
Technically speaking it is possible through pattern expanders, it might not be the easiest one to build but combination of hasProperty(), isNotEmpty(), inArray() and oneOf() should do the trick
Hi, I have one problem with json. I want compare some json array regardless of the order. For example:
[ { "name": "some_name" }, { "name": "some_another_name" } ],
and
[ { "name": "some_another_name" }, { "name": "some_name" } ],
The text was updated successfully, but these errors were encountered: