recoder-code
Version:
š AI-powered development platform - Chat with 32+ models, build projects, automate workflows. Free models included!
24 lines ⢠664 B
JavaScript
var formatRelativeLocale = {
lastWeek: "'el' eeee 'pasado a la' p",
yesterday: "'ayer a la' p",
today: "'hoy a la' p",
tomorrow: "'maƱana a la' p",
nextWeek: "eeee 'a la' p",
other: 'P'
};
var formatRelativeLocalePlural = {
lastWeek: "'el' eeee 'pasado a las' p",
yesterday: "'ayer a las' p",
today: "'hoy a las' p",
tomorrow: "'maƱana a las' p",
nextWeek: "eeee 'a las' p",
other: 'P'
};
var formatRelative = function formatRelative(token, date, _baseDate, _options) {
if (date.getUTCHours() !== 1) {
return formatRelativeLocalePlural[token];
} else {
return formatRelativeLocale[token];
}
};
export default formatRelative;