mirror of
https://github.com/quartz-community/utils.git
synced 2026-07-22 02:50:27 +00:00
12 lines
257 B
JavaScript
12 lines
257 B
JavaScript
// src/date.ts
|
|
function formatDate(d, locale = "en-US") {
|
|
return d.toLocaleDateString(locale, {
|
|
year: "numeric",
|
|
month: "short",
|
|
day: "2-digit",
|
|
});
|
|
}
|
|
|
|
export { formatDate };
|
|
//# sourceMappingURL=date.js.map
|
|
//# sourceMappingURL=date.js.map
|