Files
klz-cables.com/.pnpm-store/v10/files/ca/05b9728dd0f1e1a6edaec739139edb539cc6dcb44c8aeba415c64fc8e6d7a8a4b67c886e54e53e8fc39e5609081457053127cb7de564383c7f8c868271b686
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

16 lines
384 B
Plaintext

"use strict";
exports.formatRelative = void 0;
const formatRelativeLocale = {
lastWeek: "'ovddit' eeee 'dii.' p",
yesterday: "'ikte dii.' p",
today: "'odne dii.' p",
tomorrow: "'ihtin dii.' p",
nextWeek: "EEEE 'dii.' p",
other: "P",
};
const formatRelative = (token, _date, _baseDate, _options) =>
formatRelativeLocale[token];
exports.formatRelative = formatRelative;