Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
@react-hookz/deep-equal
Advanced tools
Yet fastest deep comparator with ES6+ support.
This one is pretty simple, everyone knows what to do:
npm i @react-hookz/deep-equal
# or
yarn add @react-hookz/deep-equal
This package provides three levels of compilation:
/cjs
folder — CommonJS modules, with ES5 lang level./esm
folder — it is ES modules (browser compatible), with ES5 lang level./esnext
folder — it is ES modules (browser compatible), with ESNext lang level.So, if you need default isEqual
, depending on your needs, you can import in three ways
(there are actually more, but these are the three most common):
// in case you need cjs modules
import { isEqual } from "@react-hookz/deep-equal";
// in case you need esm modules
import { isEqual } from "@react-hookz/deep-equal/esm";
// in case you want all the recent ES features
import { isEqual } from "@react-hookz/deep-equal/esnext";
This package provides 4 variants of comparator:
isEqual
- es6+ compatible, for cases when you expect almost ant data on input.isEqualReact
- es6+ compatible but with extra checks for React
and Preact
objects (they
contain circular references).isEqualSimple
- simplified version without support for Map
, Set
, ArrayBuffer
,
TypedArray
and DataView
.isEqualSimpleReact
- same as isEqualSimple
but with checks for React
and Preact
Note: below tests are mage against certain dataset (can be found in benchmarks), that may or may not be representative for your case and your data.
It is better to perform benchmarks against your datasets.
simple data (non-es6+)
# mixed (equal) @react-hookz/deep-equal x 2,328,007 ops/sec ±0.33% (94 runs sampled) @react-hookz/deep-equal (react) x 2,248,935 ops/sec ±1.05% (92 runs sampled) @react-hookz/deep-equal (simple) x 2,502,281 ops/sec ±0.39% (97 runs sampled) @react-hookz/deep-equal (simple react) x 2,292,288 ops/sec ±0.91% (93 runs sampled) dequal x 1,884,722 ops/sec ±0.57% (92 runs sampled) dequal (lite) x 1,875,235 ops/sec ±0.32% (95 runs sampled) fast-deep-equal x 1,732,963 ops/sec ±0.66% (94 runs sampled) react-fast-compare x 1,640,019 ops/sec ±0.22% (96 runs sampled) Fastest is @react-hookz/deep-equal (simple) # mixed (unequal) @react-hookz/deep-equal x 3,333,499 ops/sec ±0.54% (91 runs sampled) @react-hookz/deep-equal (react) x 3,175,146 ops/sec ±0.59% (94 runs sampled) @react-hookz/deep-equal (simple) x 3,236,086 ops/sec ±0.37% (92 runs sampled) @react-hookz/deep-equal (simple react) x 3,187,855 ops/sec ±0.48% (96 runs sampled) dequal x 1,110,380 ops/sec ±1.26% (89 runs sampled) dequal (lite) x 1,135,251 ops/sec ±1.01% (94 runs sampled) fast-deep-equal x 2,238,446 ops/sec ±0.50% (97 runs sampled) react-fast-compare x 2,221,893 ops/sec ±0.20% (93 runs sampled) Fastest is @react-hookz/deep-equal
complex data (with es6+)
# mixed (equal) @react-hookz/deep-equal x 1,417,373 ops/sec ±0.54% (94 runs sampled) @react-hookz/deep-equal (react) x 1,350,950 ops/sec ±0.39% (89 runs sampled) dequal x 714,145 ops/sec ±0.43% (94 runs sampled) fast-deep-equal x 1,066,887 ops/sec ±0.20% (98 runs sampled) Fastest is @react-hookz/deep-equal # mixed (unequal) @react-hookz/deep-equal x 2,096,641 ops/sec ±0.23% (98 runs sampled) @react-hookz/deep-equal (react) x 2,003,117 ops/sec ±0.56% (95 runs sampled) dequal x 570,606 ops/sec ±0.78% (93 runs sampled) fast-deep-equal x 2,149,295 ops/sec ±2.91% (80 runs sampled) Fastest is @react-hookz/deep-equal,fast-deep-equal
Full benchmarks results can be found in the benchmark
directory.
To run benchmarks simply clone this repo and make yarn && yarn benchmark
in repo root.
FAQs
Fast deep equal comparator
The npm package @react-hookz/deep-equal receives a total of 118,838 weekly downloads. As such, @react-hookz/deep-equal popularity was classified as popular.
We found that @react-hookz/deep-equal demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 2 open source maintainers 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.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.