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.
The deep-eql package is a deep equality testing library that allows developers to compare two values for structural equality, rather than just reference equality. It is useful for testing and assertions when you need to ensure that two complex objects, arrays, or other nested structures are equivalent in content.
Deep Equality Check
This feature allows you to check if two objects are deeply equal, meaning their structure and nested values are equivalent.
const deepEql = require('deep-eql');
const obj1 = { a: 1, b: { c: 2 } };
const obj2 = { a: 1, b: { c: 2 } };
console.log(deepEql(obj1, obj2)); // true
Custom Type Comparisons
This feature allows you to provide a custom comparator function to define equality for specific types or instances.
const deepEql = require('deep-eql');
class Person {
constructor(name) {
this.name = name;
}
}
const person1 = new Person('Alice');
const person2 = new Person('Alice');
console.log(deepEql(person1, person2, { comparator: (a, b) => a.name === b.name })); // true
Lodash's isEqual function performs a deep comparison between two values to determine if they are equivalent. It is similar to deep-eql but is part of the larger Lodash utility library, which offers a wide range of functions for manipulating and comparing data.
Chai is a BDD / TDD assertion library for node and the browser that can be delightfully paired with any javascript testing framework. It includes a deep equality assertion, similar to deep-eql, as part of its extensive assertion library.
This package provides a function for deep equality checks, similar to deep-eql. It is a standalone library that focuses solely on deep equality without additional dependencies or utilities.
Improved deep equality testing for Node.js and the browser.
deep-eql
is available on npm.
$ npm install deep-eql
deep-eql
is available as a component.
$ component install chaijs/deep-eql
eql(NaN, NaN).should.be.true;
eql(-0, +0).should.be.false;
eql([], arguments).should.be.false;
eql([], Array.prototype.slice.call(arguments)).should.be.true;
(The MIT License)
Copyright (c) 2013 Jake Luer jake@alogicalparadox.com
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
FAQs
Improved deep equality testing for Node.js and the browser.
The npm package deep-eql receives a total of 6,438,896 weekly downloads. As such, deep-eql popularity was classified as popular.
We found that deep-eql demonstrated a healthy version release cadence and project activity because the last version was released less than 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.