timepiece/node_modules/date-fns/locale/tr/_lib/formatRelative.mjs

12 lines
311 B
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

const formatRelativeLocale = {
lastWeek: "'geçen hafta' eeee 'saat' p",
yesterday: "'dün saat' p",
today: "'bugün saat' p",
tomorrow: "'yarın saat' p",
nextWeek: "eeee 'saat' p",
other: "P",
};
export const formatRelative = (token, _date, _baseDate, _options) =>
formatRelativeLocale[token];