Rocky_Mountain_Vending/.pnpm-store/v10/files/70/862972a567ceb01d8efe330208183c5f55cde111373e35cd0f0f075eeb7936b13fe64b83beaf39959a503729c431d5d4e095e8d072f3071bc215134be8c5fd
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

31 lines
955 B
Text

import { formatDistance } from "./id/_lib/formatDistance.js";
import { formatLong } from "./id/_lib/formatLong.js";
import { formatRelative } from "./id/_lib/formatRelative.js";
import { localize } from "./id/_lib/localize.js";
import { match } from "./id/_lib/match.js";
/**
* @category Locales
* @summary Indonesian locale.
* @language Indonesian
* @iso-639-2 ind
* @author Rahmat Budiharso [@rbudiharso](https://github.com/rbudiharso)
* @author Benget Nata [@bentinata](https://github.com/bentinata)
* @author Budi Irawan [@deerawan](https://github.com/deerawan)
* @author Try Ajitiono [@imballinst](https://github.com/imballinst)
*/
export const id = {
code: "id",
formatDistance: formatDistance,
formatLong: formatLong,
formatRelative: formatRelative,
localize: localize,
match: match,
options: {
weekStartsOn: 1 /* Monday */,
firstWeekContainsDate: 1,
},
};
// Fallback for modularized imports:
export default id;