22 lines
1.0 KiB
TypeScript
22 lines
1.0 KiB
TypeScript
// function 2025-05-27T04:40:33.413511 to YYYY-MM-DD HH:mm:ss
|
|
export function timestampToDateTime(timestamp: string): string {
|
|
const date = new Date(timestamp);
|
|
const year = date.getFullYear();
|
|
const month = String(date.getMonth() + 1).padStart(2, '0'); // Months are zero-based
|
|
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');
|
|
|
|
return `${year}-${month}-${day} ${hours}:${minutes}:${seconds}`;
|
|
}
|
|
|
|
// Function to convert a timestamp to a date string in YYYY-MM-DD format
|
|
export function timestampToDate(timestamp: number): string {
|
|
const date = new Date(timestamp * 1000); // Convert seconds to milliseconds
|
|
const year = date.getFullYear();
|
|
const month = String(date.getMonth() + 1).padStart(2, '0'); // Months are zero-based
|
|
const day = String(date.getDate()).padStart(2, '0');
|
|
|
|
return `${year}-${month}-${day}`;
|
|
} |