Files
klz-cables.com/.pnpm-store/v10/files/98/3e77e9ee9461a7d472cd6a2a3ff1ed4900b4a8970521e9e0f1a66bef6e26cf57a3fbe54c83ee7d9a8fddb22774f1b6b87b2d10ccbc50226e76359038ae6e01
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

13 lines
233 B
Plaintext

/**
* Removes a given node from the DOM.
*
* @param node the node to remove
*/
export default function remove(node) {
if (node && node.parentNode) {
node.parentNode.removeChild(node);
return node;
}
return null;
}