id.js 955 B

12345678910111213141516171819202122232425262728293031
  1. import { formatDistance } from "./id/_lib/formatDistance.js";
  2. import { formatLong } from "./id/_lib/formatLong.js";
  3. import { formatRelative } from "./id/_lib/formatRelative.js";
  4. import { localize } from "./id/_lib/localize.js";
  5. import { match } from "./id/_lib/match.js";
  6. /**
  7. * @category Locales
  8. * @summary Indonesian locale.
  9. * @language Indonesian
  10. * @iso-639-2 ind
  11. * @author Rahmat Budiharso [@rbudiharso](https://github.com/rbudiharso)
  12. * @author Benget Nata [@bentinata](https://github.com/bentinata)
  13. * @author Budi Irawan [@deerawan](https://github.com/deerawan)
  14. * @author Try Ajitiono [@imballinst](https://github.com/imballinst)
  15. */
  16. export const id = {
  17. code: "id",
  18. formatDistance: formatDistance,
  19. formatLong: formatLong,
  20. formatRelative: formatRelative,
  21. localize: localize,
  22. match: match,
  23. options: {
  24. weekStartsOn: 1 /* Monday */,
  25. firstWeekContainsDate: 1,
  26. },
  27. };
  28. // Fallback for modularized imports:
  29. export default id;