(value)
| 77 | } |
| 78 | |
| 79 | function formatCoin(value) { |
| 80 | const num = Number(value || 0); |
| 81 | return `${num}(${(num / 100).toFixed(2)})`; |
| 82 | } |
| 83 | |
| 84 | function parseAccount(raw) { |
| 85 | const text = String(raw || "").trim(); |
no outgoing calls
no test coverage detected