1 | import { formatDistance } from "./sr/_lib/formatDistance.js";
|
2 | import { formatLong } from "./sr/_lib/formatLong.js";
|
3 | import { formatRelative } from "./sr/_lib/formatRelative.js";
|
4 | import { localize } from "./sr/_lib/localize.js";
|
5 | import { match } from "./sr/_lib/match.js";
|
6 |
|
7 |
|
8 |
|
9 |
|
10 |
|
11 |
|
12 |
|
13 |
|
14 | export const sr = {
|
15 | code: "sr",
|
16 | formatDistance: formatDistance,
|
17 | formatLong: formatLong,
|
18 | formatRelative: formatRelative,
|
19 | localize: localize,
|
20 | match: match,
|
21 | options: {
|
22 | weekStartsOn: 1 ,
|
23 | firstWeekContainsDate: 1,
|
24 | },
|
25 | };
|
26 |
|
27 |
|
28 | export default sr;
|