@jswork/next-deep-equal
v1.0.4
Published
Equal object for next.
Downloads
66
Readme
next-deep-equal
Equal object for next.
installation
yarn add @jswork/next-deep-equal
usage
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);
license
Code released under the MIT license.