UNPKG

866 BJavaScriptView Raw
1import { formatDistance } from "./cs/_lib/formatDistance.js";
2import { formatLong } from "./cs/_lib/formatLong.js";
3import { formatRelative } from "./cs/_lib/formatRelative.js";
4import { localize } from "./cs/_lib/localize.js";
5import { match } from "./cs/_lib/match.js";
6
7/**
8 * @category Locales
9 * @summary Czech locale.
10 * @language Czech
11 * @iso-639-2 ces
12 * @author David Rus [@davidrus](https://github.com/davidrus)
13 * @author Pavel Hrách [@SilenY](https://github.com/SilenY)
14 * @author Jozef Bíroš [@JozefBiros](https://github.com/JozefBiros)
15 */
16export const cs = {
17 code: "cs",
18 formatDistance: formatDistance,
19 formatLong: formatLong,
20 formatRelative: formatRelative,
21 localize: localize,
22 match: match,
23 options: {
24 weekStartsOn: 1 /* Monday */,
25 firstWeekContainsDate: 4,
26 },
27};
28
29// Fallback for modularized imports:
30export default cs;