(value)
| 52 | } |
| 53 | |
| 54 | function formatTimestamp(value) { |
| 55 | if (!value) { |
| 56 | return 'n/a'; |
| 57 | } |
| 58 | const date = new Date(value); |
| 59 | if (Number.isNaN(date.getTime())) { |
| 60 | return String(value); |
| 61 | } |
| 62 | return date.toLocaleString(); |
| 63 | } |
| 64 | |
| 65 | function parseArguments(raw) { |
| 66 | if (!raw) { |
no outgoing calls
no test coverage detected