UNPKG

date-fns

Version:

Modern JavaScript date utility library

34 lines 752 B
import buildFormatLongFn from "../../../_lib/buildFormatLongFn/index.js"; var dateFormats = { full: 'y. MMMM d., EEEE', long: 'y. MMMM d.', medium: 'y. MMM d.', short: 'y. MM. dd.' }; var timeFormats = { full: 'H:mm:ss zzzz', long: 'H:mm:ss z', medium: 'H:mm:ss', short: 'H:mm' }; var dateTimeFormats = { full: '{{date}} {{time}}', long: '{{date}} {{time}}', 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;