Files
klz-cables.com/.pnpm-store/v10/files/ca/52d9360f9ad412332306880a3d0bcc909fc1efa8d5dc22c0b191cbe6a705b760d678b89c66ad039af5aa1b10be5b1c02af4771a2350643d6ed4ba65d41ce2c
Marc Mintel 5397309103
Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 20s
Build & Deploy / 🧪 QA (push) Failing after 34s
Build & Deploy / 🏗️ Build (push) Has started running
Build & Deploy / 🚀 Deploy (push) Has been cancelled
Build & Deploy / 🧪 Smoke Test (push) Has been cancelled
Build & Deploy / ⚡ Lighthouse (push) Has been cancelled
Build & Deploy / 🔔 Notify (push) Has been cancelled
fix(products): fix breadcrumbs and product filtering (backport from main)
2026-02-24 16:04:21 +01:00

30 lines
815 B
Plaintext

import { formatDistance } from "./is/_lib/formatDistance.mjs";
import { formatLong } from "./is/_lib/formatLong.mjs";
import { formatRelative } from "./is/_lib/formatRelative.mjs";
import { localize } from "./is/_lib/localize.mjs";
import { match } from "./is/_lib/match.mjs";
/**
* @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;