diff options
author | EmeraldMerchant <96396730+EmeraldMerchant@users.noreply.github.com> | 2022-09-14 08:13:02 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-09-14 08:13:02 +0800 |
commit | 3f0e9dcb5f0123b31e6ac26dbdae3d293d97ffe5 (patch) | |
tree | 1db861667cafe1511331d784c5035fc403bc61fd /utils | |
parent | 299c7d6c26402ee43bf4719dba57db08d375b4aa (diff) | |
download | SoopyV2-3f0e9dcb5f0123b31e6ac26dbdae3d293d97ffe5.tar.gz SoopyV2-3f0e9dcb5f0123b31e6ac26dbdae3d293d97ffe5.tar.bz2 SoopyV2-3f0e9dcb5f0123b31e6ac26dbdae3d293d97ffe5.zip |
Update numberUtils.js
Diffstat (limited to 'utils')
-rw-r--r-- | utils/numberUtils.js | 2 |
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` }, |