You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

44 lines
973 B

"use strict";
exports.formatRelative = void 0;
const formatRelativeLocale = {
lastWeek: (date) => {
switch (date.getDay()) {
case 0:
return "'prošlu nedjelju u' p";
case 3:
return "'prošlu srijedu u' p";
case 6:
return "'prošlu subotu u' p";
default:
return "'prošli' EEEE 'u' p";
}
},
yesterday: "'jučer u' p",
today: "'danas u' p",
tomorrow: "'sutra u' p",
nextWeek: (date) => {
switch (date.getDay()) {
case 0:
return "'iduću nedjelju u' p";
case 3:
return "'iduću srijedu u' p";
case 6:
return "'iduću subotu u' p";
default:
return "'prošli' EEEE 'u' p";
}
},
other: "P",
};
const formatRelative = (token, date, _baseDate, _options) => {
const format = formatRelativeLocale[token];
if (typeof format === "function") {
return format(date);
}
return format;
};
exports.formatRelative = formatRelative;