Skip to main content
Very Popular
Latest
File
import buildFormatLongFn from '../../../_lib/buildFormatLongFn/index.js'
var dateFormats = { full: "EEEE, d MMMM y 'г.'", long: "d MMMM y 'г.'", medium: "d MMM y 'г.'", short: 'dd.MM.y'}
var timeFormats = { full: 'H:mm:ss zzzz', long: 'H:mm:ss z', medium: 'H:mm:ss', short: 'H:mm'}
var dateTimeFormats = { any: '{{date}}, {{time}}'}
var formatLong = { date: buildFormatLongFn({ formats: dateFormats, defaultWidth: 'full' }),
time: buildFormatLongFn({ formats: timeFormats, defaultWidth: 'full' }),
dateTime: buildFormatLongFn({ formats: dateTimeFormats, defaultWidth: 'any' })}
export default formatLong