cjs β’ Lines: 15"use strict";
exports.formatRelative = void 0;
const formatRelativeLocale = {
lastWeek: "'δΈε'eeee p",
yesterday: "'ζ¨ε€©' p",
today: "'δ»ε€©' p",
tomorrow: "'ζ倩' p",
nextWeek: "'δΈε'eeee p",
other: "P",
};
const formatRelative = (token, _date, _baseDate, _options) =>
formatRelativeLocale[token];
exports.formatRelative = formatRelative;