Rocky_Mountain_Vending/.pnpm-store/v10/files/75/461dcbc6113a2bda16b979545d0d5fb9e6d4d452d21b97902590d3b30098b4f7ea7be227f2e0c4d5ce4eafa635c63b024222b29810d6b03884927c5685abb7
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

29 lines
810 B
Text

import { formatDistance } from "./is/_lib/formatDistance.js";
import { formatLong } from "./is/_lib/formatLong.js";
import { formatRelative } from "./is/_lib/formatRelative.js";
import { localize } from "./is/_lib/localize.js";
import { match } from "./is/_lib/match.js";
/**
* @category Locales
* @summary Icelandic locale.
* @language Icelandic
* @iso-639-2 isl
* @author Derek Blank [@derekblank](https://github.com/derekblank)
* @author Arnór Ýmir [@lamayg](https://github.com/lamayg)
*/
export const is = {
code: "is",
formatDistance: formatDistance,
formatLong: formatLong,
formatRelative: formatRelative,
localize: localize,
match: match,
options: {
weekStartsOn: 1 /* Monday */,
firstWeekContainsDate: 4,
},
};
// Fallback for modularized imports:
export default is;