
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
@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
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.