(v)
| 186 | |
| 187 | // Unix timestamps may be numeric or string depending on server version. |
| 188 | const asUnix = (v) => { |
| 189 | if (v == null) return null; |
| 190 | if (typeof v === 'number') return v; |
| 191 | const n = parseInt(v, 10); |
| 192 | return Number.isFinite(n) ? n : null; |
| 193 | }; |
| 194 | |
| 195 | const out = { |
| 196 | planName: plan.planName || 'Unknown', |
no outgoing calls
no test coverage detected