aboutsummaryrefslogtreecommitdiff
path: root/utils
diff options
context:
space:
mode:
authorEmeraldMerchant <96396730+EmeraldMerchant@users.noreply.github.com>2022-09-14 08:13:02 +0800
committerGitHub <noreply@github.com>2022-09-14 08:13:02 +0800
commit3f0e9dcb5f0123b31e6ac26dbdae3d293d97ffe5 (patch)
tree1db861667cafe1511331d784c5035fc403bc61fd /utils
parent299c7d6c26402ee43bf4719dba57db08d375b4aa (diff)
downloadSoopyV2-3f0e9dcb5f0123b31e6ac26dbdae3d293d97ffe5.tar.gz
SoopyV2-3f0e9dcb5f0123b31e6ac26dbdae3d293d97ffe5.tar.bz2
SoopyV2-3f0e9dcb5f0123b31e6ac26dbdae3d293d97ffe5.zip
Update numberUtils.js
Diffstat (limited to 'utils')
-rw-r--r--utils/numberUtils.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/numberUtils.js b/utils/numberUtils.js
index 3b1dc70..b701c21 100644
--- a/utils/numberUtils.js
+++ b/utils/numberUtils.js
@@ -87,7 +87,7 @@ let utils = {
timeNumber: (time, secondDecimals = 0) => {
let mins = Math.floor(time / 1000 / 60)
let secs = (time / 1000) % 60
-
+
if (mins === 0) return `${secs.toFixed(secondDecimals)}s`
else return `${mins}m ${secs.toFixed(secondDecimals)}s`
},