UNPKG

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