acjackson

Results 2 comments of acjackson

> First of all, I can simply fix your case in example. I can change to deep compare objects from "data" array. But his only helps in the case. Could...

As a quick fix, I use this deepEqual function from https://stackoverflow.com/questions/201183/how-to-determine-equality-for-two-javascript-objects ```javascript function deepEqual(x, y) { const ok = Object.keys, tx = typeof x, ty = typeof y; return x...