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

17 lines
470 B
Plaintext

"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = _maybeArrayLike;
var _arrayLikeToArray = require("./arrayLikeToArray.js");
function _maybeArrayLike(orElse, arr, i) {
if (arr && !Array.isArray(arr) && typeof arr.length === "number") {
var len = arr.length;
return (0, _arrayLikeToArray.default)(arr, i !== void 0 && i < len ? i : len);
}
return orElse(arr, i);
}
//# sourceMappingURL=maybeArrayLike.js.map