Files
klz-cables.com/.pnpm-store/v10/files/8b/5cd6ebbd528bfaee1b780072ebd52c9678b296574e2db92a712761a84d651f30ae4ff4a3d13a5d08d42f48d1e682c135058ed2eb8ba7c1a9680412ce71c652
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
736 B
Plaintext

import { formatDistance } from "./ms/_lib/formatDistance.js";
import { formatLong } from "./ms/_lib/formatLong.js";
import { formatRelative } from "./ms/_lib/formatRelative.js";
import { localize } from "./ms/_lib/localize.js";
import { match } from "./ms/_lib/match.js";
/**
* @category Locales
* @summary Malay locale.
* @language Malay
* @iso-639-2 msa
* @author Ruban Selvarajah [@Zyten](https://github.com/Zyten)
*/
export const ms = {
code: "ms",
formatDistance: formatDistance,
formatLong: formatLong,
formatRelative: formatRelative,
localize: localize,
match: match,
options: {
weekStartsOn: 1 /* Monday */,
firstWeekContainsDate: 1,
},
};
// Fallback for modularized imports:
export default ms;