Files
klz-cables.com/.pnpm-store/v10/files/1c/6bcd354ba8a2df2e92b33360f51c74606d893c40657fc4f95936731aa588c01a616c63b9ae5214dec62bac75e7f951c9e8355f632991ae65412c59e9a9fe0b
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
758 B
Plaintext

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