+1
-1
| { | ||
| "name": "wft-utils", | ||
| "version": "1.46.0", | ||
| "version": "1.47.0", | ||
| "description": "The commonly used tool functions in daily development", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
+11
-0
@@ -148,2 +148,13 @@ /** | ||
| /** | ||
| * 秒数转为分:秒 | ||
| * @param {number} time 秒数 | ||
| * @returns 分:秒 | ||
| */ | ||
| export function second2MinSec(time) { | ||
| const minutes = Math.floor(time / 60); | ||
| const seconds = Math.floor(time % 60); | ||
| return `${minutes}:${seconds.toString().padStart(2, "0")}`; | ||
| } | ||
| /** | ||
| * 将Tue Mar 08 2022 16:43:57 GMT+0800 (中国标准时间)转为标准时间格式(yyyy-MM-dd HH:mm:ss) | ||
@@ -150,0 +161,0 @@ * @param {*} value |
95125
0.29%3158
0.32%