crypto.ts 287 B

12345
  1. // We use WebCrypto aka globalThis.crypto, which exists in browsers and node.js 16+.
  2. // See utils.ts for details.
  3. declare const globalThis: Record<string, any> | undefined;
  4. export const crypto =
  5. typeof globalThis === 'object' && 'crypto' in globalThis ? globalThis.crypto : undefined;