https://github.com/afeiship/next-deep-equal
Equal object for next.
https://github.com/afeiship/next-deep-equal
deep eq next object
Last synced: 26 days ago
JSON representation
Equal object for next.
- Host: GitHub
- URL: https://github.com/afeiship/next-deep-equal
- Owner: afeiship
- License: mit
- Created: 2019-01-11T17:21:56.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2026-05-04T08:57:46.000Z (about 1 month ago)
- Last Synced: 2026-05-04T10:35:21.094Z (about 1 month ago)
- Topics: deep, eq, next, object
- Language: JavaScript
- Size: 14.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# next-deep-equal
> Equal object for next.
[![version][version-image]][version-url]
[![license][license-image]][license-url]
[![size][size-image]][size-url]
[![download][download-image]][download-url]
## installation
```bash
yarn add @jswork/next-deep-equal
```
## usage
```js
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](https://github.com/afeiship/next-deep-equal/blob/master/LICENSE.txt).
[version-image]: https://img.shields.io/npm/v/@jswork/next-deep-equal
[version-url]: https://npmjs.org/package/@jswork/next-deep-equal
[license-image]: https://img.shields.io/npm/l/@jswork/next-deep-equal
[license-url]: https://github.com/afeiship/next-deep-equal/blob/master/LICENSE.txt
[size-image]: https://img.shields.io/bundlephobia/minzip/@jswork/next-deep-equal
[size-url]: https://github.com/afeiship/next-deep-equal/blob/master/dist/next-deep-equal.min.js
[download-image]: https://img.shields.io/npm/dm/@jswork/next-deep-equal
[download-url]: https://www.npmjs.com/package/@jswork/next-deep-equal