Files
klz-cables.com/.pnpm-store/v10/files/26/2d0da89ab27ae0b11224fa1a38249d3c0d8f97adfc78b6cfcb58a2d06e21d95de31651931d24ec454ddbe4fa02c5870aaeeeda7056fdd61af953e38ca9a17b
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
523 B
Plaintext

export async function optionallyAppendMetadata({ req, sharpFile, withMetadata }) {
const metadata = await sharpFile.metadata();
if (withMetadata === true) {
return sharpFile.withMetadata();
} else if (typeof withMetadata === 'function') {
const useMetadata = await withMetadata({
metadata,
req
});
if (useMetadata) {
return sharpFile.withMetadata();
}
}
return sharpFile;
}
//# sourceMappingURL=optionallyAppendMetadata.js.map