UNPKG

date-fns

Version:

Modern JavaScript date utility library

34 lines 780 B
import buildFormatLongFn from "../../../_lib/buildFormatLongFn/index.js"; var dateFormats = { full: 'EEEE do MMMM y', long: 'do MMMM y', medium: 'd MMM y', short: 'dd/MM/yyyy' }; var timeFormats = { full: 'h:mm:ss a', long: 'h:mm:ss a', medium: 'h:mm:ss a', short: 'h:mm a' }; 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;