Security News
GitHub Removes Malicious Pull Requests Targeting Open Source Repositories
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
compare values of any type for equility
With your favorite package manager:
then in your app:
var equal = require('equals')
equal
takes as many arguments as you like of any type you like and returns a boolean result. Primitive types are equal if they are ===
. While composite types, i.e. Objects and Arrays, are considered equal if they have both the same structure and each sub-value is also equal
. Circular references in composite structures are supported.
Same structure:
equal(
{ a : [ 2, 3 ], b : [ 4 ] },
{ a : [ 2, 3 ], b : [ 4 ] }
) // => true
Different Structure:
equal(
{ x : 5, y : [6] },
{ x : 5}
) // => false
Same structure, different values:
equal(
{ a: [ 1, 2 ], b : [ 4 ]},
{ a: [ 2, 3 ], b : [ 4 ]}
) // => false
Primitives:
equal(new Date(0), new Date(1)) // => false
Some possible gotchas:
null
is not equal to undefined
.NaN
is equal to NaN
(normally not the case).-0
is equal to +0
.arguments.callee
is not considered when comparing argumentsFAQs
Check if two values are deeply equivalent
The npm package equals receives a total of 45,142 weekly downloads. As such, equals popularity was classified as popular.
We found that equals 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
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.