Internal
Generates a timestamp string suitable for use in filenames. Replaces colons and periods with hyphens for filesystem compatibility.
ISO timestamp string formatted for filenames (e.g., 2025-10-17T14-30-45-123Z).
2025-10-17T14-30-45-123Z
export function generateExportTimestamp(): string { return new Date().toISOString().replaceAll(":", "-").replaceAll(".", "-");} Copy
export function generateExportTimestamp(): string { return new Date().toISOString().replaceAll(":", "-").replaceAll(".", "-");}
Generates a timestamp string suitable for use in filenames. Replaces colons and periods with hyphens for filesystem compatibility.