recoder-code
Version:
🚀 AI-powered development platform - Chat with 32+ models, build projects, automate workflows. Free models included!
12 lines • 367 B
JavaScript
var formatRelativeLocale = {
lastWeek: 'せんしゅうのeeeeのp',
yesterday: 'きのうのp',
today: 'きょうのp',
tomorrow: 'あしたのp',
nextWeek: 'よくしゅうのeeeeのp',
other: 'P'
};
var formatRelative = function formatRelative(token, _date, _baseDate, _options) {
return formatRelativeLocale[token];
};
export default formatRelative;