(...args)
| 20 | // 调试模式检测 |
| 21 | const isDebugMode = process.env.NODE_ENV === 'development' || process.env.DEBUG; |
| 22 | const debugLog = (...args) => { |
| 23 | if (isDebugMode) { |
| 24 | console.error(`[DEBUG ${new Date().toISOString()}]`, ...args); |
| 25 | } |
| 26 | }; |
| 27 | |
| 28 | class IcssServer { |
| 29 | constructor() { |
no outgoing calls
no test coverage detected