• Internal

    Generates a timestamp string suitable for use in filenames. Replaces colons and periods with hyphens for filesystem compatibility.

    Returns string

    ISO timestamp string formatted for filenames (e.g., 2025-10-17T14-30-45-123Z).

    export function generateExportTimestamp(): string {
    return new Date().toISOString().replaceAll(":", "-").replaceAll(".", "-");
    }