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: 6 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 5 years ago)
- Default Branch: master
- Last Pushed: 2023-09-24T16:28:50.000Z (over 1 year ago)
- Last Synced: 2024-11-03T06:25:34.025Z (7 months ago)
- Topics: check, deep, fast, object, plain, quality
- Language: JavaScript
- Size: 10.7 KB
- Stars: 5
- Watchers: 3
- 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 --save plain-object-is-equal
```## Usage
```ts
import isEqual from 'plain-object-is-equal';isEqual ( { foo: 123 }, { foo: 123 } ); // => true
```## License
MIT © Fabio Spampinato