(res, action)
| 116 | } |
| 117 | |
| 118 | function assertOk(res, action) { |
| 119 | if (!res || Number(res.code) !== 1) { |
| 120 | throw new Error(`${action}失败: ${res?.description || res?.msg || JSON.stringify(res)}`); |
| 121 | } |
| 122 | return res.result; |
| 123 | } |
| 124 | |
| 125 | class Task { |
| 126 | constructor(raw) { |
no outgoing calls
no test coverage detected