Files
cod-api/utils/date.js
2025-10-11 12:13:08 +07:00

8 lines
266 B
JavaScript

module.exports = {
formattedDate: (timestamp) => {
let date = new Date(timestamp);
let options = { day: "numeric", month: "long", year: "numeric" };
let formattedDate = date.toISOString("id-ID", options);
return formattedDate;
},
};