UNPKG

862 BJavaScriptView Raw
1import { formatDistance } from "./ar-DZ/_lib/formatDistance.js";
2import { formatLong } from "./ar-DZ/_lib/formatLong.js";
3import { formatRelative } from "./ar-DZ/_lib/formatRelative.js";
4import { localize } from "./ar-DZ/_lib/localize.js";
5import { match } from "./ar-DZ/_lib/match.js";
6
7/**
8 * @category Locales
9 * @summary Arabic locale (Algerian Arabic).
10 * @language Algerian Arabic
11 * @iso-639-2 ara
12 * @author Badreddine Boumaza [@badre429](https://github.com/badre429)
13 * @author Ahmed ElShahat [@elshahat](https://github.com/elshahat)
14 */
15export const arDZ = {
16 code: "ar-DZ",
17 formatDistance: formatDistance,
18 formatLong: formatLong,
19 formatRelative: formatRelative,
20 localize: localize,
21 match: match,
22 options: {
23 weekStartsOn: 0 /* Sunday */,
24 firstWeekContainsDate: 1,
25 },
26};
27
28// Fallback for modularized imports:
29export default arDZ;