(res)
| 101 | } |
| 102 | |
| 103 | function okCode(res) { |
| 104 | return String(res?.code) === "10000" || res?.success === true || Number(res?.err) === 0; |
| 105 | } |
| 106 | |
| 107 | function assertOk(res, action) { |
| 108 | if (!res || !okCode(res)) { |
no outgoing calls
no test coverage detected