Files
klz-cables.com/.pnpm-store/v10/files/dc/f603211077edf977e1126e6ae45787e40ee0f8a543bf9d6a3153d9b7ba9525ee7b96db1c5efa5a05a43e34055679a8d35a9cc87db087773154240030ac17e5
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
220 B
Plaintext

import { isCryptoKey } from './webcrypto.js';
export default (key) => {
if (isCryptoKey(key)) {
return true;
}
return key?.[Symbol.toStringTag] === 'KeyObject';
};
export const types = ['CryptoKey'];