瀏覽代碼

chore: remove unused variable

Shishkevich D. 3 周之前
父節點
當前提交
c35179d924
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      web/assets/js/util/index.js

+ 1 - 1
web/assets/js/util/index.js

@@ -106,7 +106,7 @@ class RandomUtil {
 
     static randomShortIds() {
         const lengths = [2, 4, 6, 8, 10, 12, 14, 16].sort(() => Math.random() - 0.5);
-        const seq = this.getSeq();
+
         return lengths.map(len => this.randomSeq(len)).join(',');
     }