Security News
JSR Working Group Kicks Off with Ambitious Roadmap and Plans for Open Governance
At its inaugural meeting, the JSR Working Group outlined plans for an open governance model and a roadmap to enhance JavaScript package management.
@segment/isodate
Advanced tools
Parse an ISO date string into a Date. Works cross-browser, even in the old, dumb ones ;)
$ npm install @segment/isodate
var isodate = require('isodate');
var date = isodate.parse('2013-09-04T00:57:26.434Z');
date.toISOString(); // "2013-09-04T00:57:26.434Z"
var isodate = require('isodate');
isodate.is('2013-09-04T00:57:26.434Z'); // true
isodate.is('string'); // false
Parse the given ISO date string
into a native Date
object.
Check if the given string
is an ISO date string. strict
mode will return false for strings without a year, month and date; for example 2013
would be false
.
FAQs
Parse an ISO date string into a Date
We found that @segment/isodate demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 55 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
At its inaugural meeting, the JSR Working Group outlined plans for an open governance model and a roadmap to enhance JavaScript package management.
Security News
Research
An advanced npm supply chain attack is leveraging Ethereum smart contracts for decentralized, persistent malware control, evading traditional defenses.
Security News
Research
Attackers are impersonating Sindre Sorhus on npm with a fake 'chalk-node' package containing a malicious backdoor to compromise developers' projects.