storipress/karbon

View on GitHub
packages/karbon-utils/src/crypto-polyfill.ts

Summary

Maintainability
A
55 mins
Test Coverage
import nodeCrypto from 'node:crypto'

if (!globalThis.crypto) {
  // polyfill global crypto
  // @ts-expect-error polyfill type not match
  globalThis.crypto = nodeCrypto.webcrypto
  // @ts-expect-error polyfill type not match
  globalThis.CryptoKey = nodeCrypto.webcrypto.CryptoKey
}