UNPKG

date-fns

Version:

Modern JavaScript date utility library

34 lines 756 B
import buildFormatLongFn from "../../../_lib/buildFormatLongFn/index.js"; var dateFormats = { full: 'y年M月d日EEEE', long: 'y年M月d日', medium: 'y/MM/dd', 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;