Files
klz-cables.com/.pnpm-store/v10/files/6c/27a8c8123b41e9efe98023a1084edb76deb5e7fc6212b04bfdf8379fb65963c306d96ea7fc1821c6d5ba566c09b0860c01f79cc76926661fbc1b371ce0ba37
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

29 lines
761 B
Plaintext

import { formatDistance } from "./se/_lib/formatDistance.mjs";
import { formatLong } from "./se/_lib/formatLong.mjs";
import { formatRelative } from "./se/_lib/formatRelative.mjs";
import { localize } from "./se/_lib/localize.mjs";
import { match } from "./se/_lib/match.mjs";
/**
* @category Locales
* @summary Northern Sámi locale.
* @language Northern Sámi
* @iso-639-2 sme
* @author Audun Rundberg [@audunru](https://github.com/audunru)
*/
export const se = {
code: "se",
formatDistance: formatDistance,
formatLong: formatLong,
formatRelative: formatRelative,
localize: localize,
match: match,
options: {
weekStartsOn: 1 /* Monday */,
firstWeekContainsDate: 4,
},
};
// Fallback for modularized imports:
export default se;