recoder-code
Version:
🚀 AI-powered development platform - Chat with 32+ models, build projects, automate workflows. Free models included!
12 lines • 340 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;