New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

idea-toolbox

Package Overview
Dependencies
Maintainers
2
Versions
381
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

idea-toolbox - npm Package Compare versions

Comparing version 6.7.0 to 6.7.1

8

dist/src/utils.js

@@ -19,3 +19,9 @@ "use strict";

*/
const toISODate = (date) => !date ? null : new Date(date).toISOString().slice(0, 10);
const toISODate = (date) => {
if (!date)
return null;
const dateResistantToTimeZones = new Date(date);
dateResistantToTimeZones.setHours(12, 0, 0, 0);
!date ? null : dateResistantToTimeZones.toISOString().slice(0, 10);
};
exports.toISODate = toISODate;

@@ -22,0 +28,0 @@ /**

2

package.json
{
"name": "idea-toolbox",
"version": "6.7.0",
"version": "6.7.1",
"description": "IDEA's utility functions",

@@ -5,0 +5,0 @@ "main": "dist/index.js",

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc