Files
klz-cables.com/.pnpm-store/v10/files/b2/bad6cb90a6c356ae1ec5f4257114817c936b87612e49f50b38ddb4d02d843fe0a32e44ead093ebbf7dabc99c30a0b0cb06ee2af113ea47aea141b2328d0b94
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
818 B
Plaintext

import { formatDistance } from "./mk/_lib/formatDistance.mjs";
import { formatLong } from "./mk/_lib/formatLong.mjs";
import { formatRelative } from "./mk/_lib/formatRelative.mjs";
import { localize } from "./mk/_lib/localize.mjs";
import { match } from "./mk/_lib/match.mjs";
/**
* @category Locales
* @summary Macedonian locale.
* @language Macedonian
* @iso-639-2 mkd
* @author Petar Vlahu [@vlahupetar](https://github.com/vlahupetar)
* @author Altrim Beqiri [@altrim](https://github.com/altrim)
*/
export const mk = {
code: "mk",
formatDistance: formatDistance,
formatLong: formatLong,
formatRelative: formatRelative,
localize: localize,
match: match,
options: {
weekStartsOn: 1 /* Monday */,
firstWeekContainsDate: 4,
},
};
// Fallback for modularized imports:
export default mk;