https://github.com/afeiship/next-deep-equal
Equal object for next.
https://github.com/afeiship/next-deep-equal
deep eq next object
Last synced: about 2 months 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 6 years ago)
- Default Branch: master
- Last Pushed: 2023-05-25T13:36:15.000Z (almost 2 years ago)
- Last Synced: 2025-02-07T12:27:54.557Z (3 months ago)
- Topics: deep, eq, next, object
- Language: JavaScript
- Size: 13.7 KB
- Stars: 0
- Watchers: 3
- 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