Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
ES spec-compliant shim for Date
. Invoke its "shim" method to shim Date
if it is unavailable or noncompliant.
This package implements the es-shim API “multi” interface. It works in an ES3-supported environment, and complies with the spec.
Most common usage:
var assert = require('assert');
var shims = require('date');
assert.deepEqual(shims, [
'Date',
'Date.prototype.getFullYear',
'Date.prototype.getMonth',
'Date.prototype.getDate',
'Date.prototype.getUTCDate',
'Date.prototype.getUTCFullYear',
'Date.prototype.getUTCMonth',
'Date.prototype.toUTCString',
'Date.prototype.toDateString',
'Date.prototype.toString',
'Date.prototype.toISOString',
'Date.prototype.toJSON',
'Date.now',
'Date.parse',
]);
require('date/auto'); // will be a no-op if not needed
assert.ok(new Date() instanceof Date);
assert.equal(typeof Date.now(), 'number');
// etc, with all the Date methods you expect
Simply clone the repo, npm install
, and run npm test
v2.0.4 - 2024-02-04
es-errors
where possible, so things that only need those do not need get-intrinsic
5be64f8
array.prototype.map
, aud
, has-property-descriptors
, npmignore
, object-inspect
, tape
41418aa
call-bind
, define-properties
, es-abstract
, get-intrinsic
, safe-regex-test
90e2249
FAQs
ES spec-compliant `Date` shim/polyfill/replacement that works as far down as ES3
The npm package date receives a total of 2,662 weekly downloads. As such, date popularity was classified as popular.
We found that date demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 2 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
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.