AtlasOfLivingAustralia / ecodata-client-plugin

Utilities and form rendering for clients of the ecodata services
Mozilla Public License 2.0
0 stars 5 forks source link

expression evaluator fails comparing two array with same content #243

Open temi opened 7 months ago

temi commented 7 months ago

If two arrays have same content but different order, deepEqual returns false.

examples

ar1 = [1, 2, 3]
ar2 = [3,1,2]

actual

assert(deepEqual(ar1, ar2), false)

expected

true