(text)
| 79 | } |
| 80 | |
| 81 | function parseJsonMaybe(text) { |
| 82 | if (!text || typeof text !== "string") return text; |
| 83 | try { |
| 84 | return JSON.parse(text); |
| 85 | } catch { |
| 86 | return text; |
| 87 | } |
| 88 | } |
| 89 | |
| 90 | function parseAccount(raw) { |
| 91 | const text = String(raw || "").trim(); |
no outgoing calls
no test coverage detected