123456789101112131415161718192021222324252627282930 |
- import { formatRelative } from "./en-US/_lib/formatRelative.js";
- import { localize } from "./en-US/_lib/localize.js";
- import { match } from "./en-US/_lib/match.js";
- import { formatDistance } from "./en-CA/_lib/formatDistance.js";
- import { formatLong } from "./en-CA/_lib/formatLong.js";
- /**
- * @category Locales
- * @summary English locale (Canada).
- * @language English
- * @iso-639-2 eng
- * @author Mark Owsiak [@markowsiak](https://github.com/markowsiak)
- * @author Marco Imperatore [@mimperatore](https://github.com/mimperatore)
- */
- export const enCA = {
- code: "en-CA",
- formatDistance: formatDistance,
- formatLong: formatLong,
- formatRelative: formatRelative,
- localize: localize,
- match: match,
- options: {
- weekStartsOn: 0 /* Sunday */,
- firstWeekContainsDate: 1,
- },
- };
- // Fallback for modularized imports:
- export default enCA;
|