/* Copyright 2026 Marimo. All rights reserved. */ export function formatChartTime(timestamp: number): string { try { // Multiply by 1000 to convert seconds to milliseconds const date = new Date(timestamp * 1000); const year = date.getFullYear(); const month = String(date.getMonth() + 1).padStart(2, "0"); // getMonth() is 0-indexed const day = String(date.getDate()).padStart(2, "0"); const hours = String(date.getHours()).padStart(2, "0"); const minutes = String(date.getMinutes()).padStart(2, "0"); const seconds = String(date.getSeconds()).padStart(2, "0"); const milliseconds = String(date.getMilliseconds()).padStart(3, "0"); return `${year}-${month}-${day} ${hours}:${minutes}:${seconds}.${milliseconds}`; } catch { return ""; } }