Files
klz-cables.com/.pnpm-store/v10/files/ce/5b00c55a1af3951be54944ee8e339d7a56d48495fab926e3d936c6da0d4c9aa18315824f1d249d30b1c613a0629b1d32cae1f8b6ee7f2c33da1b7d95cb57e0
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
701 B
Plaintext

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