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

poi-plugin-akashic-records

Package Overview
Dependencies
Maintainers
8
Versions
100
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

poi-plugin-akashic-records - npm Package Compare versions

Comparing version 6.1.2 to 6.1.3

2

package.json
{
"name": "poi-plugin-akashic-records",
"version": "6.1.2",
"version": "6.1.3",
"description": "logbook plugin for poi",

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

@@ -43,5 +43,5 @@ 'use strict';

const month = date.getMonth() < 9 ? `0${date.getMonth() + 1}` : `${date.getMonth() + 1}`;
const day = date.getDate() < 9 ? `0${date.getDate() + 1}` : `${date.getDate() + 1}`;
const hour = date.getHours() < 9 ? `0${date.getHours() + 1}` : `${date.getHours() + 1}`;
const minute = date.getMinutes() < 9 ? `0${date.getMinutes() + 1}` : `${date.getMinutes() + 1}`;
const day = date.getDate() < 9 ? `0${date.getDate()}` : `${date.getDate()}`;
const hour = date.getHours() < 9 ? `0${date.getHours()}` : `${date.getHours()}`;
const minute = date.getMinutes() < 9 ? `0${date.getMinutes()}` : `${date.getMinutes()}`;
return `${date.getFullYear()}-${month}-${day} ${hour}:${minute}`;

@@ -48,0 +48,0 @@ }

Sorry, the diff of this file is not supported yet

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