Files
Ammaar Reshi d6025af146 Initial commit
2025-01-04 14:06:53 +00:00

13 lines
303 B
JavaScript

const formatRelativeLocale = {
lastWeek: "先週のeeeeのp",
yesterday: "昨日のp",
today: "今日のp",
tomorrow: "明日のp",
nextWeek: "翌週のeeeeのp",
other: "P",
};
export const formatRelative = (token, _date, _baseDate, _options) => {
return formatRelativeLocale[token];
};