(timestamp: number = Date.now())
| 32 | * Format timestamp to ISO 8601 string |
| 33 | */ |
| 34 | export function formatTimestamp(timestamp: number = Date.now()): string { |
| 35 | return new Date(timestamp).toISOString(); |
| 36 | } |
| 37 | |
| 38 | /** |
| 39 | * Calculate percentage |
no outgoing calls
no test coverage detected