(date: Date)
| 6 | * @returns A 12-character string in YYYY-MM-DDTHH:mm format |
| 7 | */ |
| 8 | export function generateOperationIdTimestamp(date: Date): string { |
| 9 | return date.toISOString().slice(0, 16) // Take YYYY-MM-DDTHH:mm |
| 10 | } |
no outgoing calls
no test coverage detected