Files
klz-cables.com/.pnpm-store/v10/files/48/b8b16c967ccf3aece0c1639772ff4ad491ff31807b33bee7c56ddc32e5426b251b364a0d941bf0174909144163465ea6d720e8327a09e6fca7508b5b153fee
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
706 B
Plaintext

import { formatDistance } from "./eo/_lib/formatDistance.mjs";
import { formatLong } from "./eo/_lib/formatLong.mjs";
import { formatRelative } from "./eo/_lib/formatRelative.mjs";
import { localize } from "./eo/_lib/localize.mjs";
import { match } from "./eo/_lib/match.mjs";
/**
* @category Locales
* @summary Esperanto locale.
* @language Esperanto
* @iso-639-2 epo
* @author date-fns
*/
export const eo = {
code: "eo",
formatDistance: formatDistance,
formatLong: formatLong,
formatRelative: formatRelative,
localize: localize,
match: match,
options: {
weekStartsOn: 1 /* Monday */,
firstWeekContainsDate: 4,
},
};
// Fallback for modularized imports:
export default eo;