Security News
PyPI Introduces Digital Attestations to Strengthen Python Package Security
PyPI now supports digital attestations, enhancing security and trust by allowing package maintainers to verify the authenticity of Python packages.
fast-equals
Advanced tools
The fast-equals package is a high-performance deep equality checking library that provides functions to determine if two values are deeply equal. It is optimized for speed and can handle complex data structures, including objects, arrays, dates, and more.
deepEqual
Checks if two values are deeply equal, meaning all their nested properties are equal.
const { deepEqual } = require('fast-equals');
console.log(deepEqual({ foo: 'bar' }, { foo: 'bar' })); // true
shallowEqual
Checks if two values are shallowly equal, meaning their immediate properties are equal without checking nested objects.
const { shallowEqual } = require('fast-equals');
console.log(shallowEqual({ foo: 'bar' }, { foo: 'bar' })); // true
circularDeepEqual
Checks if two values are deeply equal, including when they have circular references.
const { circularDeepEqual } = require('fast-equals');
const objectA = { foo: 'bar' };
objectA.self = objectA;
const objectB = { foo: 'bar' };
objectB.self = objectB;
console.log(circularDeepEqual(objectA, objectB)); // true
circularShallowEqual
Checks if two values are shallowly equal, including when they have circular references.
const { circularShallowEqual } = require('fast-equals');
const arrayA = ['foo', 'bar'];
arrayA.push(arrayA);
const arrayB = ['foo', 'bar'];
arrayB.push(arrayB);
console.log(circularShallowEqual(arrayA, arrayB)); // true
sameValueZeroEqual
Checks if two values are equal according to the SameValueZero comparison algorithm, which treats NaN as equal to NaN and -0 as equal to +0.
const { sameValueZeroEqual } = require('fast-equals');
console.log(sameValueZeroEqual(NaN, NaN)); // true
Lodash's isEqual function is a popular utility for performing deep equality checks. It is part of the larger Lodash library, which offers a wide range of utilities for working with arrays, objects, and other data types. Compared to fast-equals, lodash.isequal may be slower but is part of a well-established utility library with a large user base.
The deep-equal package provides functions for deep equality checking. It is less optimized for performance compared to fast-equals but offers a simple API for checking deep equality between two values.
Ramda is a functional programming library that includes a deep equality checking function called equals. Ramda's approach is more functional and immutable compared to fast-equals, and it is designed to work well in a functional programming context.
Perform blazing fast equality comparisons (either deep or shallow) on two objects passed. It has no dependencies, and is ~1.2Kb when minified and gzipped.
Unlike most equality validation libraries, the following types are handled out-of-the-box:
NaN
Date
objectsRegExp
objectsMap
/ Set
iterablesYou can also create a custom nested comparator, for specific scenarios (see below).
You can either import the full object:
import fe from 'fast-equals';
console.log(fe.deep({foo: 'bar'}, {foo: 'bar'})); // true
Or the individual imports desired:
import {deepEqual} from 'fast-equals';
console.log(deepEqual({foo: 'bar'}, {foo: 'bar'})); // true
Aliased on the default export as fe.deep
Performs a deep equality comparison on the two objects passed and returns a boolean representing the value equivalency of the objects.
import {deepEqual} from 'fast-equals';
const objectA = {foo: {bar: 'baz'}};
const objectB = {foo: {bar: 'baz'}};
console.log(objectA === objectB); // false
console.log(deepEqual(objectA, objectB)); // true
Aliased on the default export as fe.shallow
Performs a shallow equality comparison on the two objects passed and returns a boolean representing the value equivalency of the objects.
import {shallowEqual} from 'fast-equals';
const nestedObject = {bar: 'baz'};
const objectA = {foo: nestedObject};
const objectB = {foo: nestedObject};
const objectC = {foo: {bar: 'baz'}};
console.log(objectA === objectB); // false
console.log(shallowEqual(objectA, objectB)); // true
console.log(shallowEqual(objectA, objectC)); // false
Aliased on the default export as fe.createCustom
Creates a custom equality comparator that will be used on nested values in the object. Unlike deepEqual
and shallowEqual
, this is a partial-application function that will receive the internal comparator and should return a function that compares two objects.
A common use case for this is to handle circular objects (which fast-equals
does not handle by default). Example:
import {createCustomEqual} from 'fast-equals';
import decircularize from 'decircularize';
const isDeepEqualCircular = createCustomEqual((comparator) => {
return (objectA, objectB) => {
return comparator(decircularize(objectA), decircularize(objectB));
};
});
const objectA = {};
const objectB = {};
objectA.a = objectA;
objectA.b = objectB;
objectB.a = objectA;
objectB.b = objectB;
console.log(isDeepEqualCircular(objectA, objectB)); // true
All benchmarks are based on averages of running comparisons based on the following data types:
String
, Number
, null
, undefined
)Function
sObject
sArray
sDate
sRegExp
sOperations / second | Relative margin of error | |
---|---|---|
fast-equals | 201,249 | 0.60% |
nano-equal | 119,409 | 1.38% |
fast-deep-equal | 92,048 | 0.44% |
shallow-equal-fuzzy | 80,478 | 0.58% |
underscore.isEqual | 49,145 | 0.49% |
deep-equal | 31,906 | 0.73% |
lodash.isEqual | 24,293 | 0.50% |
deep-eql | 14,600 | 0.74% |
assert.deepStrictEqual | 454 | 1.32% |
Caveats that impact the benchmark:
fast-deep-equal
does not support NaN
nano-equal
does not strictly compare object property structure, array length, or object typeshallow-equal-fuzzy
does not strictly compare object type or regexp valuesdeep-equal
does not support NaN
and does not strictly compare object type, or date / regexp valuesassert.deepStrictEqual
does not support NaN
All of these have the potential of inflating the respective library's numbers in comparison to fast-equals
, but it was the closest apples-to-apples comparison I could create of a reasonable sample size. Map
s and Set
s were excluded from the benchmark entirely because no library other than lodash
supported their comparison.
Standard practice, clone the repo and npm i
to get the dependencies. The following npm scripts are available:
clean:dist
, clean:es
, and clean:lib
scriptsrimraf
on the dist
folderrimraf
on the es
folderrimraf
on the lib
folderbuild
and build:minified
scriptssrc
folder (also runs on dev
script)lint
script, but with auto-fixerlint
, test:coverage
, transpile:lib
, transpile:es
, and dist
scriptsdev
test
foldertest
with code coverage calculation via nyc
test
but keep persistent watchersrc
folder (transpiled to es
folder without transpilation of ES2015 export syntax)src
folder (transpiled to lib
folder)1.0.1
typeof
into helper for faster runtimeFAQs
A blazing fast equality comparison, either shallow or deep
The npm package fast-equals receives a total of 2,925,936 weekly downloads. As such, fast-equals popularity was classified as popular.
We found that fast-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
PyPI now supports digital attestations, enhancing security and trust by allowing package maintainers to verify the authenticity of Python packages.
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.