poi-plugin-akashic-records
Advanced tools
Comparing version 6.1.2 to 6.1.3
{ | ||
"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
2732661