Files
klz-cables.com/.pnpm-store/v10/files/7d/de8417fb706b899025a078043d5c244d2df290e12501c2cc7e39fb5bc8de72fb0b52e9fd8e280f14cfb8233d293c37dd228d911699b9572cf2cab815c7fdde
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

32 lines
960 B
Plaintext

import { formatDistance } from "./id/_lib/formatDistance.mjs";
import { formatLong } from "./id/_lib/formatLong.mjs";
import { formatRelative } from "./id/_lib/formatRelative.mjs";
import { localize } from "./id/_lib/localize.mjs";
import { match } from "./id/_lib/match.mjs";
/**
* @category Locales
* @summary Indonesian locale.
* @language Indonesian
* @iso-639-2 ind
* @author Rahmat Budiharso [@rbudiharso](https://github.com/rbudiharso)
* @author Benget Nata [@bentinata](https://github.com/bentinata)
* @author Budi Irawan [@deerawan](https://github.com/deerawan)
* @author Try Ajitiono [@imballinst](https://github.com/imballinst)
*/
export const id = {
code: "id",
formatDistance: formatDistance,
formatLong: formatLong,
formatRelative: formatRelative,
localize: localize,
match: match,
options: {
weekStartsOn: 1 /* Monday */,
firstWeekContainsDate: 1,
},
};
// Fallback for modularized imports:
export default id;