pnp-chatbot-admin-v1 / utils /formatDatetime.ts
FauziIsyrinApridal
init
17fabdd
raw
history blame contribute delete
381 Bytes
export function formatDatetime(isoDate: string): string {
const date = new Date(isoDate);
const options: Intl.DateTimeFormatOptions = {
year: "numeric",
month: "long",
day: "numeric",
hour: "numeric",
minute: "numeric",
second: "numeric",
};
const formattedDate = new Intl.DateTimeFormat("en-US", options).format(date);
return formattedDate;
}