diff options
| author | MHSanaei <ho3ein.sanaei@gmail.com> | 2023-05-22 16:11:41 +0300 |
|---|---|---|
| committer | MHSanaei <ho3ein.sanaei@gmail.com> | 2023-05-22 16:11:41 +0300 |
| commit | 235e6880c1652a25bf09e7b019b2de749841a37a (patch) | |
| tree | 523d5c84d0b3bbe8ad28eccece6ed98a9ac226c8 /web | |
| parent | ffa23a43c62b594fc7751cb85096d05085910b6b (diff) | |
update - utils
Diffstat (limited to 'web')
| -rw-r--r-- | web/assets/js/util/utils.js | 29 |
1 files changed, 7 insertions, 22 deletions
diff --git a/web/assets/js/util/utils.js b/web/assets/js/util/utils.js index b4009eaf..d3092ac1 100644 --- a/web/assets/js/util/utils.js +++ b/web/assets/js/util/utils.js @@ -75,26 +75,13 @@ class PromiseUtil { } } -const seq = [ - 'a', 'b', 'c', 'd', 'e', 'f', 'g', - 'h', 'i', 'j', 'k', 'l', 'm', 'n', - 'o', 'p', 'q', 'r', 's', 't', - 'u', 'v', 'w', 'x', 'y', 'z', - '0', '1', '2', '3', '4', '5', '6', '7', '8', '9', - 'A', 'B', 'C', 'D', 'E', 'F', 'G', - 'H', 'I', 'J', 'K', 'L', 'M', 'N', - 'O', 'P', 'Q', 'R', 'S', 'T', - 'U', 'V', 'W', 'X', 'Y', 'Z' -]; +const seq = 'abcdefghijklmnopqrstuvwxyz0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ'.split(''); -const shortIdSeq = [ - 'a', 'b', 'c', 'd', 'e', 'f', - '0', '1', '2', '3', '4', '5', '6', '7', '8', '9', -]; +const shortIdSeq = 'abcdef0123456789'.split(''); class RandomUtil { static randomIntRange(min, max) { - return parseInt(Math.random() * (max - min) + min, 10); + return Math.floor(Math.random() * (max - min) + min); } static randomInt(n) { @@ -116,6 +103,10 @@ class RandomUtil { } return str; } + + static randowShortId() { + return this.randomShortIdSeq(8); + } static randomLowerAndNum(count) { let str = ''; @@ -156,12 +147,6 @@ class RandomUtil { return string; } - static randowShortId() { - let str = ''; - str += this.randomShortIdSeq(8); - return str; - } - static randomShadowsocksPassword() { let array = new Uint8Array(32); window.crypto.getRandomValues(array); |
