16 lines
434 B
JavaScript
16 lines
434 B
JavaScript
"use strict";
|
|
exports.formatRelative = void 0;
|
|
|
|
const formatRelativeLocale = {
|
|
lastWeek: "eeee 'tuần trước vào lúc' p",
|
|
yesterday: "'hôm qua vào lúc' p",
|
|
today: "'hôm nay vào lúc' p",
|
|
tomorrow: "'ngày mai vào lúc' p",
|
|
nextWeek: "eeee 'tới vào lúc' p",
|
|
other: "P",
|
|
};
|
|
|
|
const formatRelative = (token, _date, _baseDate, _options) =>
|
|
formatRelativeLocale[token];
|
|
exports.formatRelative = formatRelative;
|