UNPKG

workcraft-js

Version:

Node module for Workcraft Workers

9 lines (8 loc) 295 B
import webcrypto, { isCryptoKey } from './webcrypto.js'; import isKeyObject from './is_key_object.js'; export default (key) => isKeyObject(key) || isCryptoKey(key); const types = ['KeyObject']; if (globalThis.CryptoKey || webcrypto?.CryptoKey) { types.push('CryptoKey'); } export { types };