UNPKG

date-fns

Version:

Modern JavaScript date utility library

16 lines (13 loc) 397 B
"use strict"; exports.formatRelative = void 0; const formatRelativeLocale = { lastWeek: "eeee 'pase nan lè' p", yesterday: "'yè nan lè' p", today: "'jodi a' p", tomorrow: "'demen nan lè' p'", nextWeek: "eeee 'pwochen nan lè' p", other: "P", }; const formatRelative = (token, _date, _baseDate, _options) => formatRelativeLocale[token]; exports.formatRelative = formatRelative;