Files
klz-cables.com/.pnpm-store/v10/files/13/ffe744bfe8e190e63e6340b67b5a0e0342c694eb490d1a97224e50b96ddf657b6bdcf86d1fddc82e4cf75d334ed9546ea302515bdaa8d568a566e260ec267b
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

15 lines
394 B
Plaintext

export const extractAccessFromPermission = (hasPermission)=>{
if (typeof hasPermission === 'boolean') {
return hasPermission;
}
const { permission, where } = hasPermission;
if (!permission) {
return false;
}
if (where && typeof where === 'object') {
return where;
}
return true;
};
//# sourceMappingURL=extractAccessFromPermission.js.map