UNPKG

937 BJavaScriptView Raw
1import { formatDistance } from "./da/_lib/formatDistance.js";
2import { formatLong } from "./da/_lib/formatLong.js";
3import { formatRelative } from "./da/_lib/formatRelative.js";
4import { localize } from "./da/_lib/localize.js";
5import { match } from "./da/_lib/match.js";
6
7/**
8 * @category Locales
9 * @summary Danish locale.
10 * @language Danish
11 * @iso-639-2 dan
12 * @author Mathias Wøbbe [@MathiasKandelborg](https://github.com/MathiasKandelborg)
13 * @author Anders B. Hansen [@Andersbiha](https://github.com/Andersbiha)
14 * @author [@kgram](https://github.com/kgram)
15 * @author [@stefanbugge](https://github.com/stefanbugge)
16 */
17export const da = {
18 code: "da",
19 formatDistance: formatDistance,
20 formatLong: formatLong,
21 formatRelative: formatRelative,
22 localize: localize,
23 match: match,
24 options: {
25 weekStartsOn: 1 /* Monday */,
26 firstWeekContainsDate: 4,
27 },
28};
29
30// Fallback for modularized imports:
31export default da;