8 lines
266 B
JavaScript
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;
|
|
},
|
|
}; |