intern-Assignment/Node-Assignments/Server/node_modules/date-fns/locale/km.js
2025-01-31 15:20:39 +05:30

29 lines
751 B
JavaScript

import { formatDistance } from "./km/_lib/formatDistance.js";
import { formatLong } from "./km/_lib/formatLong.js";
import { formatRelative } from "./km/_lib/formatRelative.js";
import { localize } from "./km/_lib/localize.js";
import { match } from "./km/_lib/match.js";
/**
* @category Locales
* @summary Khmer locale (Cambodian).
* @language Khmer
* @iso-639-2 khm
* @author Seanghay Yath [@seanghay](https://github.com/seanghay)
*/
export const km = {
code: "km",
formatDistance: formatDistance,
formatLong: formatLong,
formatRelative: formatRelative,
localize: localize,
match: match,
options: {
weekStartsOn: 0 /* Sunday */,
firstWeekContainsDate: 1,
},
};
// Fallback for modularized imports:
export default km;