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