(content)
| 154 | } |
| 155 | |
| 156 | log(content) { |
| 157 | this.notifyStr.push(`[${this.time("HH:mm:ss")}]` + " " + this.toStr(content)) |
| 158 | console.log(content) |
| 159 | } |
| 160 | |
| 161 | wait(min, max = null) { |
| 162 | const ms = max == null ? min : Math.random() * (max - min + 1) + min | 0; |
no test coverage detected