File: //home/arjun/projects/buyercall/node_modules/date-fns/esm/locale/uz/_lib/formatLong/index.js
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 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;