UNPKG

736 BJavaScriptView Raw
1import { formatDistance } from "./kk/_lib/formatDistance.js";
2import { formatLong } from "./kk/_lib/formatLong.js";
3import { formatRelative } from "./kk/_lib/formatRelative.js";
4import { localize } from "./kk/_lib/localize.js";
5import { match } from "./kk/_lib/match.js";
6
7/**
8 * @category Locales
9 * @summary Kazakh locale.
10 * @language Kazakh
11 * @iso-639-2 kaz
12 * @author Nikita Bayev [@drugoi](https://github.com/drugoi)
13 */
14export const kk = {
15 code: "kk",
16 formatDistance: formatDistance,
17 formatLong: formatLong,
18 formatRelative: formatRelative,
19 localize: localize,
20 match: match,
21 options: {
22 weekStartsOn: 1 /* Monday */,
23 firstWeekContainsDate: 1,
24 },
25};
26
27// Fallback for modularized imports:
28export default kk;