Files
klz-cables.com/.pnpm-store/v10/files/09/92e07acf01a97a1fb9075f7cdd6d91c9dd47d3ef5c2aea2666a88dfb1fc5675cbc51463d1d045be5ae56f60385d95c0dbac7a4c3d65d8f9dd6d16772ef1cbc
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

9 lines
298 B
Plaintext

export const timestamp = (label)=>{
if (!process.env.PAYLOAD_TIME) {
process.env.PAYLOAD_TIME = String(new Date().getTime());
}
const now = new Date();
console.log(`[${now.getTime() - Number(process.env.PAYLOAD_TIME)}ms] ${label}`);
};
//# sourceMappingURL=timestamp.js.map