Research
Security News
Malicious npm Package Targets Solana Developers and Hijacks Funds
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
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.000 (-04:00) to equal Thu May 30 2013 16:05:00.000 (-04:00)
<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
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.
Research
Security News
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.