(ts)
| 339 | } |
| 340 | |
| 341 | function fmtExtracted(ts) { |
| 342 | if (!ts) return "—"; |
| 343 | return new Date(ts * 1000).toLocaleString("en-US", { |
| 344 | month: "long", day: "numeric", year: "numeric", |
| 345 | hour: "numeric", minute: "2-digit", |
| 346 | }); |
| 347 | } |
| 348 | |
| 349 | function deriveSource(sourceUrl) { |
| 350 | if (!sourceUrl) return "—"; |
no outgoing calls
no test coverage detected