13 lines
303 B
JavaScript
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];
|
||
|
};
|