/**
* Time utilities for consistent timestamp handling
*/
/**
* Returns the current time in ISO format
*/
export function getCurrentTimestamp(): string {
return new Date().toISOString();
}
/**
* Formats a date object to ISO string
*/
export function formatTimestamp(date: Date): string {
return date.toISOString();
}