conversion data

This commit is contained in:
Aji Setiaji
2025-06-03 19:37:52 +07:00
parent 4126f378f5
commit 4d754fb94f
6 changed files with 110 additions and 19 deletions

View File

@@ -0,0 +1,22 @@
// 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}`;
}