20 lines
696 B
JavaScript
20 lines
696 B
JavaScript
export function formatDate(date) {
|
|
const day = getPeriodValue(date, { day: "2-digit" });
|
|
const month = getPeriodValue(date, { month: "2-digit" });
|
|
const year = getPeriodValue(date, { year: "numeric" });
|
|
|
|
return new Array(year, month, day).join("-");
|
|
}
|
|
|
|
function getPeriodValue(date, option) {
|
|
const formatter = new Intl.DateTimeFormat("en-us", option);
|
|
return formatter.format(date);
|
|
}
|
|
|
|
export function formatTime(date) {
|
|
const hour = getPeriodValue(date, { hour: "2-digit", hour12: false });
|
|
const minute = getPeriodValue(date, { minute: "2-digit" });
|
|
const formattedMinute = minute.length === 1 ? `0${minute}` : minute;
|
|
|
|
return new Array(hour, formattedMinute).join(":");
|
|
}
|