(...t)
| 450 | this.logs = this.logs.concat(logs); |
| 451 | } |
| 452 | log(...t) { |
| 453 | t.length > 0 && (this.logs = [...this.logs, ...t]), |
| 454 | console.log(t.join(this.logSeparator)); |
| 455 | } |
| 456 | logErr(t, s) { |
| 457 | const e = !this.isSurge() && !this.isQuanX() && !this.isLoon(); |
| 458 | e |
no outgoing calls
no test coverage detected