/* eslint-disable eslint-comments/no-unlimited-disable */ /* eslint-disable */ // @ts-nocheck import { formatDistance } from './_lib/formatDistance/index.ts'; import { formatLong } from './_lib/formatLong/index.ts'; import { formatRelative } from './_lib/formatRelative/index.ts'; import { localize } from './_lib/localize/index.ts'; import { match } from './_lib/match/index.ts'; import type { Locale } from '../types.ts'; /** * @category Locales * @summary English locale (United States). * @language English * @iso-639-2 eng * @author Sasha Koss [@kossnocorp](https://github.com/kossnocorp) * @author Lesha Koss [@leshakoss](https://github.com/leshakoss) */ export const enUS: Locale = { code: 'en-US', formatDistance: formatDistance, formatLong: formatLong, formatRelative: formatRelative, localize: localize, match: match, options: { weekStartsOn: 0 /* Sunday */, firstWeekContainsDate: 1, }, }; /* eslint-enable */