You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

11 lines
437 B

const formatRelativeLocale = {
lastWeek: "'கடந்த' eeee p 'மணிக்கு'",
yesterday: "'நேற்று ' p 'மணிக்கு'",
today: "'இன்று ' p 'மணிக்கு'",
tomorrow: "'நாளை ' p 'மணிக்கு'",
nextWeek: "eeee p 'மணிக்கு'",
other: "P",
};
export const formatRelative = (token, _date, _baseDate, _options) =>
formatRelativeLocale[token];