Files
klz-cables.com/.pnpm-store/v10/files/75/5072674c18b5336eb15c13cd366a3d4a64e15972c14f0402156f64098adf125b47b4477a04472933e99ed4587fa0e1f1bc0f0577debc2f1ed18bad9d030f2d
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

19 lines
723 B
Plaintext

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.addInspectMethod = exports.format = void 0;
/**
* Ono supports custom formatters for error messages. In Node.js, it defaults
* to the `util.format()` function. In browsers, it defaults to `Array.join()`.
*
* The Node.js functionality can be used in a web browser via a polyfill,
* such as "format-util".
*
* @see https://github.com/tmpfs/format-util
*/
exports.format = false;
/**
* The `util.inspect()` functionality only applies to Node.js.
* We return the constant `false` here so that the Node-specific code gets removed by tree-shaking.
*/
exports.addInspectMethod = false;
//# sourceMappingURL=isomorphic.browser.js.map