Files
klz-cables.com/.pnpm-store/v10/files/f3/f24f426834fa218c6e0100f34302f6b49dca03a7057ff1d2ffcdb187d5b97d34321e6cd4e0dc078622b651ad8740f568f7a08a94249325caf1b91eca307c67
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
233 B
Plaintext

import fs from 'fs/promises';
export const fileExists = async (filename)=>{
try {
await fs.stat(filename);
return true;
} catch (ignore) {
return false;
}
};
//# sourceMappingURL=fileExists.js.map