Rocky_Mountain_Vending/.pnpm-store/v10/files/72/329c442a4482d3265a28ba2d0c4f7d4abe7310ae2c946872d6886c5c6831154644dc614fc7e49ab3b8b7ad0f5f98c6e573f1d6a8b7f7c056304bd00c219314
DMleadgen 46d973904b
Initial commit: Rocky Mountain Vending website
Next.js website for Rocky Mountain Vending company featuring:
- Product catalog with Stripe integration
- Service areas and parts pages
- Admin dashboard with Clerk authentication
- SEO optimized pages with JSON-LD structured data

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-02-12 16:22:15 -07:00

28 lines
751 B
Text

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;