
Security News
CVE Volume Surges Past 48,000 in 2025 as WordPress Plugin Ecosystem Drives Growth
CVE disclosures hit a record 48,185 in 2025, driven largely by vulnerabilities in third-party WordPress plugins.
same-object
Advanced tools
Determine if two objects are deeply equal
npm install same-object
Supports circular references, Maps, Symbols, etc.
Aims for ~99% compatibility with deep-equal or assert.deepEqual without requiring native dependencies.
Useful for JavaScript runtimes without native Node modules like util, etc.
const sameObject = require('same-object')
console.log(sameObject(1, '1')) // true
console.log(sameObject(1, '1', { strict: true })) // false
console.log(sameObject({ a: 1 }, { a: 1 })) // true
console.log(sameObject({ a: 1 }, { a: 1, b: 2 })) // false
console.log(sameObject(
new Set(['a', 1, 'b', 2]),
new Set(['b', 2, 'a', 1])
)) // true
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 (===).
The source code is based on:
node/comparisons.js
inspect-js/node-deep-equal
chaijs/deep-eql
MIT
FAQs
Determine if two objects are deeply equal
The npm package same-object receives a total of 8,194 weekly downloads. As such, same-object popularity was classified as popular.
We found that same-object demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

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.

Security News
CVE disclosures hit a record 48,185 in 2025, driven largely by vulnerabilities in third-party WordPress plugins.

Security News
Socket CEO Feross Aboukhadijeh joins Insecure Agents to discuss CVE remediation and why supply chain attacks require a different security approach.

Security News
Tailwind Labs laid off 75% of its engineering team after revenue dropped 80%, as LLMs redirect traffic away from documentation where developers discover paid products.