An open API service indexing awesome lists of open source software.

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.

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