Files
klz-cables.com/.pnpm-store/v10/files/c4/62b23453ea7f4779c19a29e9be6407022b975f905381cc591c6e83e19c9691652ca4ea36306cda39e03fe970a9587e62ebf94066ef1ae419ed0f26a77c0fff
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

13 lines
682 B
Plaintext

/**
* Safely stringify a value and truncate it to a maximum length.
*
* Converts any value to a JSON string representation and truncates the resulting
* string if it exceeds the maximum length. If truncation occurs, an ellipsis (…)
* is appended to indicate incomplete output.
*
* @param value - The value to stringify (can be any type including objects, arrays, primitives)
* @param maxLength - The maximum character length of the output string
* @returns A JSON string representation, truncated with "…" if it exceeds maxLength
*/
export declare function stringifyTruncated(value: unknown, maxLength: number): string;
//# sourceMappingURL=stringifyTruncated.d.ts.map