Files
klz-cables.com/.pnpm-store/v10/files/8c/71b8e7bf2aaa30dd55da689f22e7f4bcd2e62acad609398b8d1ae9e68c1a8e23eab304dc29ec0295c7402d352f14b93a4cf71f7bfdf579449b2216bd9275a1
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
741 B
Plaintext

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