UNPKG

@freshworks/crayons

Version:
64 lines (59 loc) 1.45 kB
import { f as formatDistance } from './index-f5fe0470.js'; import { b as buildFormatLongFn } from './index-dc611d24.js'; import { f as formatRelative, l as localize, m as match } from './index-3a85bc08.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: buildFormatLongFn({ formats: dateFormats, defaultWidth: 'full' }), time: buildFormatLongFn({ formats: timeFormats, defaultWidth: 'full' }), dateTime: 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: formatDistance, formatLong: formatLong, formatRelative: formatRelative, localize: localize, match: match, options: { weekStartsOn: 0 /* Sunday */ , firstWeekContainsDate: 1 } }; export default locale;