UNPKG

880 BJavaScriptView Raw
1import { formatDistance } from "./hu/_lib/formatDistance.js";
2import { formatLong } from "./hu/_lib/formatLong.js";
3import { formatRelative } from "./hu/_lib/formatRelative.js";
4import { localize } from "./hu/_lib/localize.js";
5import { match } from "./hu/_lib/match.js";
6
7/**
8 * @category Locales
9 * @summary Hungarian locale.
10 * @language Hungarian
11 * @iso-639-2 hun
12 * @author Pavlo Shpak [@pshpak](https://github.com/pshpak)
13 * @author Eduardo Pardo [@eduardopsll](https://github.com/eduardopsll)
14 * @author Zoltan Szepesi [@twodcube](https://github.com/twodcube)
15 */
16export const hu = {
17 code: "hu",
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 hu;