Files
klz-cables.com/.pnpm-store/v10/files/f3/4f62dc054cf9d20db01e83acb15c6624ef64730e92aa1dee4508d81e879f057480e20513bb0e48b973900b65511067c539a39c03b10bd96e714b9e1b5ba067
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

11 lines
312 B
Plaintext

'use strict'
const { readFileSync, writeFileSync } = require('node:fs')
const { transcode } = require('node:buffer')
const buffer = transcode
? transcode(readFileSync('./undici-fetch.js'), 'utf8', 'latin1')
: readFileSync('./undici-fetch.js')
writeFileSync('./undici-fetch.js', buffer.toString('latin1'))