https://github.com/fabiospampinato/plain-object-is-equal
Extremely fast function optimized for deep equality checks of json-serializable plain objects.
https://github.com/fabiospampinato/plain-object-is-equal
check deep fast object plain quality
Last synced: 11 months ago
JSON representation
Extremely fast function optimized for deep equality checks of json-serializable plain objects.
- Host: GitHub
- URL: https://github.com/fabiospampinato/plain-object-is-equal
- Owner: fabiospampinato
- License: mit
- Created: 2019-10-05T23:43:00.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2025-01-18T00:30:29.000Z (over 1 year ago)
- Last Synced: 2025-06-26T05:47:26.149Z (about 1 year ago)
- Topics: check, deep, fast, object, plain, quality
- Language: JavaScript
- Size: 12.7 KB
- Stars: 5
- Watchers: 2
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
- License: license
Awesome Lists containing this project
README
# Plain Object Is Equal
Extremely fast function optimized for deep equality checks of json-serializable plain objects.
## Install
```sh
npm install plain-object-is-equal
```
## Usage
```ts
import isEqual from 'plain-object-is-equal';
// Let's check if two objects are deeply equal to each other
isEqual ( { foo: 123 }, { foo: 123 } ); // => true
```
## License
MIT © Fabio Spampinato