@fifteen/design-system-vue
Version:
Vue 3 (Composition API + Typescript) implementation of the Fifteen Design System
22 lines (21 loc) • 512 B
JavaScript
const o = {
lastWeek: (e) => {
switch (e.getDay()) {
case 6:
return "'το προηγούμενο' eeee 'στις' p";
default:
return "'την προηγούμενη' eeee 'στις' p";
}
},
yesterday: "'χθες στις' p",
today: "'σήμερα στις' p",
tomorrow: "'αύριο στις' p",
nextWeek: "eeee 'στις' p",
other: "P"
}, a = (e, r) => {
const t = o[e];
return typeof t == "function" ? t(r) : t;
};
export {
a as formatRelative
};