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-datetime
Advanced tools
Matchers for chai to help with common date comparison assertions against JavaScript Date objects.
Comparing date objects in JavaScript is not based on value, which requires you to call getTime() to ensure the values match. These matchers remove the need to do that. Additionally when comparing getTime() values with the standard chai equality matcher you don't get very readable output because you're comparing epoch seconds.
Comparing date values for equality with getTime() gives unreadable error messages:
AssertionError: expected 1369944360000 to equal 1369944300000
Use chai-datetime to get something easier to read:
AssertionError: expected Thu May 30 2013 16:06:00 GMT-0400 (EDT) to equal Thu May 30 2013 16:05:00 GMT-0400 (EDT)
<script src="chai.js"></script>
<script src="chai-datetime.js"></script>
var chai = require('chai');
chai.use(require('chai-datetime'));
There are a collection of assertions that work on times and dates. Any assertion that specifies date in the name only compares the date portion of the Date object.
All assertions are defined for both the BDD and TDD syntaxes.
var d1 = new Date(2013, 4, 30, 16, 5),
d2 = new Date(2013, 4, 30, 17);
d1.should.equalDate.d2
expect(d1).to.equalDate(d2)
assert.equalDate(d1, d2)
Thanks to @mitchlloyd for pairing with me on this to help get me started. Thanks to @rockwood for putting up with my continuous trolling.
Thanks to the chai-fuzzy module for giving me an idea for how to structure and test a chai plugin.
FAQs
date / time comparison matchers for chai
The npm package chai-datetime receives a total of 110,520 weekly downloads. As such, chai-datetime popularity was classified as popular.
We found that chai-datetime demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 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.
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.