Socket
Book a DemoInstallSign in
Socket

same-object

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

same-object

Determine if two objects are deeply equal

Source
npmnpm
Version
1.0.0
Version published
Weekly downloads
9.4K
168.57%
Maintainers
1
Weekly downloads
 
Created
Source

same-object

Determine if two objects are deeply equal

npm install same-object

Supports circular references, Maps, Symbols, etc. Based on: chaijs/deep-eql

Usage

const sameObject = require('same-object')

console.log(sameObject(1, 1)) // true
console.log(sameObject(1, 2)) // false

console.log(sameObject(1, '1')) // true
console.log(sameObject(1, '1', { strict: true })) // false

console.log(sameObject({ foo: 1 }, { foo: 1 })) // true
console.log(sameObject({ foo: 1 }, { foo: 1, bar: true })) // false

API

const bool = sameObject(a, b, [options])

Compares a and b, returning whether they are equal or not.

Available options:

{
  strict: false
}

Loosely comparison (==) by default.
Use { strict: true } for a stronger equality check (===).

License

MIT

FAQs

Package last updated on 23 Jan 2023

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts