Equal object for next.
yarn add @jswork/next-deep-equal
import '@jswork/next-deep-equal';
const obj1 = {
a: 1,
s1: 'string',
items: [1, 2]
};
const obj2 = {
a: 1,
items: [1, 2],
s1: 'string'
};
nx.deepEqual(obj1, obj2);
Code released under the MIT license.