UNPKG

791 BJavaScriptView Raw
1import { formatDistance } from "./sr-Latn/_lib/formatDistance.js";
2import { formatLong } from "./sr-Latn/_lib/formatLong.js";
3import { formatRelative } from "./sr-Latn/_lib/formatRelative.js";
4import { localize } from "./sr-Latn/_lib/localize.js";
5import { match } from "./sr-Latn/_lib/match.js";
6
7/**
8 * @category Locales
9 * @summary Serbian latin locale.
10 * @language Serbian
11 * @iso-639-2 srp
12 * @author Igor Radivojević [@rogyvoje](https://github.com/rogyvoje)
13 */
14export const srLatn = {
15 code: "sr-Latn",
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 srLatn;