@freshworks/crayons
Version:
Crayons Web Components library
66 lines (60 loc) • 1.54 kB
JavaScript
;
const indexF5fe0470 = require('./index-f5fe0470-2656364b.js');
const indexDc611d24 = require('./index-dc611d24-355bee26.js');
const index3a85bc08 = require('./index-3a85bc08-794b6650.js');
var dateFormats = {
full: 'EEEE, MMMM do, y',
"long": 'MMMM do, y',
medium: 'MMM d, y',
"short": 'MM/dd/yyyy'
};
var timeFormats = {
full: 'h:mm:ss a zzzz',
"long": 'h:mm:ss a z',
medium: 'h:mm:ss a',
"short": 'h:mm a'
};
var dateTimeFormats = {
full: "{{date}} 'at' {{time}}",
"long": "{{date}} 'at' {{time}}",
medium: '{{date}}, {{time}}',
"short": '{{date}}, {{time}}'
};
var formatLong = {
date: indexDc611d24.buildFormatLongFn({
formats: dateFormats,
defaultWidth: 'full'
}),
time: indexDc611d24.buildFormatLongFn({
formats: timeFormats,
defaultWidth: 'full'
}),
dateTime: indexDc611d24.buildFormatLongFn({
formats: dateTimeFormats,
defaultWidth: 'full'
})
};
/**
* @type {Locale}
* @category Locales
* @summary English locale (United States).
* @language English
* @iso-639-2 eng
* @author Sasha Koss [@kossnocorp]{@link https://github.com/kossnocorp}
* @author Lesha Koss [@leshakoss]{@link https://github.com/leshakoss}
*/
var locale = {
code: 'en-US',
formatDistance: indexF5fe0470.formatDistance,
formatLong: formatLong,
formatRelative: index3a85bc08.formatRelative,
localize: index3a85bc08.localize,
match: index3a85bc08.match,
options: {
weekStartsOn: 0
/* Sunday */
,
firstWeekContainsDate: 1
}
};
exports.default = locale;