Files
est-frame/node_modules/date-fns/locale/et/_lib/formatRelative.cjs
2025-10-22 05:38:27 +00:00

16 lines
398 B
JavaScript
Executable File

"use strict";
exports.formatRelative = void 0;
const formatRelativeLocale = {
lastWeek: "'eelmine' eeee 'kell' p",
yesterday: "'eile kell' p",
today: "'täna kell' p",
tomorrow: "'homme kell' p",
nextWeek: "'järgmine' eeee 'kell' p",
other: "P",
};
const formatRelative = (token, _date, _baseDate, _options) =>
formatRelativeLocale[token];
exports.formatRelative = formatRelative;