Security News
Research
Data Theft Repackaged: A Case Study in Malicious Wrapper Packages on npm
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
chai-deep-match
Advanced tools
Extends Chai with an assertion for deeply matching objects (i.e. subset equality checking)
Extends Chai with an assertion for deeply matching objects (i.e. subset equality checking).
$ npm install --save chai
$ npm install --save chai-deep-match
var chai = require('chai');
var chaiDeepMatch = require('chai-deep-match');
chai.use( chaiDeepMatch );
chai.expect( { a: 'foo', b: 'bar', c: 'baz' } ).to.deep.match( { a: 'foo', c: 'baz' } );
// => pass
chai.expect( { a: 'foo', b: 'bar', c: 'baz' } ).to.not.deep.match( { a: 'fuzz', c: 'baz' } );
// => pass
URL
objectsThis module also supports WHATWG URL
objects, as introduced in Node 7.x
(and backported into Node 6.x
, it seems). However, it is important to note that the behavior by which it compares two URL
objects will only consider them deeply matched if they are a full 100% match rather than a "subset" match. Hopefully this behavior is acceptable to those making use of it! :pray:
Copyright (c) 2016-2018, James M. Greene (MIT License)
FAQs
Extends Chai with an assertion for deeply matching objects (i.e. subset equality checking)
The npm package chai-deep-match receives a total of 127,691 weekly downloads. As such, chai-deep-match popularity was classified as popular.
We found that chai-deep-match 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
Research
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
Research
Security News
Attackers used a malicious npm package typosquatting a popular ESLint plugin to steal sensitive data, execute commands, and exploit developer systems.
Security News
The Ultralytics' PyPI Package was compromised four times in one weekend through GitHub Actions cache poisoning and failure to rotate previously compromised API tokens.