Files
klz-cables.com/.pnpm-store/v10/files/f3/90cc1823011100b83fb16f9fb24abc65549268c833115f0a7254ae00224ebf9db27eef9a609b7687d003399fcb6f2bf3a905a32c85f609e38a55b05309ebd8
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
763 B
Plaintext

import { formatDistance } from "./bs/_lib/formatDistance.mjs";
import { formatLong } from "./bs/_lib/formatLong.mjs";
import { formatRelative } from "./bs/_lib/formatRelative.mjs";
import { localize } from "./bs/_lib/localize.mjs";
import { match } from "./bs/_lib/match.mjs";
/**
* @category Locales
* @summary Bosnian locale.
* @language Bosnian
* @iso-639-2 bos
* @author Branislav Lazić [@branislavlazic](https://github.com/branislavlazic)
*/
export const bs = {
code: "bs",
formatDistance: formatDistance,
formatLong: formatLong,
formatRelative: formatRelative,
localize: localize,
match: match,
options: {
weekStartsOn: 1 /* Monday */,
firstWeekContainsDate: 4,
},
};
// Fallback for modularized imports:
export default bs;