bananas-commerce-admin
Version:
What's this, an admin for apes?
23 lines • 641 B
JavaScript
export const formatDate = (date, granularity, variant = "short", locale = "sv-SE") => {
let options = {};
if (granularity === "day") {
options = {
day: "numeric",
month: "long",
...(variant === "long" && { year: "numeric" }),
};
}
else if (granularity === "month") {
options = {
month: "long",
year: "numeric",
};
}
else if (granularity === "year") {
options = {
year: "numeric",
};
}
return new Intl.DateTimeFormat(locale, options).format(date);
};
//# sourceMappingURL=format_date.js.map