(isoString: string)
| 50 | * formatISOTimestamp("2025-01-04T10:13:29.000Z") // "Jan 4, 2025" |
| 51 | */ |
| 52 | export function formatISOTimestamp(isoString: string): string { |
| 53 | const date = new Date(isoString); |
| 54 | return formatUnixTimestamp(Math.floor(date.getTime() / 1000)); |
| 55 | } |
| 56 | |
| 57 | /** |
| 58 | * Truncates text to a specified length with ellipsis |
no test coverage detected