mirror of
https://github.com/danbulant/jose
synced 2026-05-25 04:51:47 +00:00
5 lines
140 B
JavaScript
5 lines
140 B
JavaScript
import { isCryptoKey } from './webcrypto.js';
|
|
export default (key) => {
|
|
return isCryptoKey(key);
|
|
};
|
|
export const types = ['CryptoKey'];
|