UNPKG

date-fns

Version:

Modern JavaScript date utility library

34 lines 781 B
import buildFormatLongFn from "../../../_lib/buildFormatLongFn/index.js"; var dateFormats = { full: "EEEE, do MMMM y 'il'", long: "do MMMM y 'il'", medium: "d MMM y 'il'", short: 'dd.MM.yyyy' }; var timeFormats = { full: 'H:mm:ss zzzz', long: 'H:mm:ss z', medium: 'H:mm:ss', short: 'H:mm' }; var dateTimeFormats = { full: "{{date}} {{time}} - 'də'", long: "{{date}} {{time}} - 'də'", medium: '{{date}}, {{time}}', short: '{{date}}, {{time}}' }; var formatLong = { date: buildFormatLongFn({ formats: dateFormats, defaultWidth: 'full' }), time: buildFormatLongFn({ formats: timeFormats, defaultWidth: 'full' }), dateTime: buildFormatLongFn({ formats: dateTimeFormats, defaultWidth: 'full' }) }; export default formatLong;