diff options
author | Matthew Miller <matthew@millerti.me> | 2023-10-27 20:53:27 -0700 |
---|---|---|
committer | Matthew Miller <matthew@millerti.me> | 2023-10-27 20:53:27 -0700 |
commit | 91afb83ce0c5cbd236b26bb94cf18ea584a2ed0c (patch) | |
tree | c44451d22866643608b7c13510e14101a76d77c5 | |
parent | 229a14d35cd780460b3fe1e3340b0384d33a521d (diff) |
Remove console.log statements
-rw-r--r-- | packages/server/src/helpers/iso/isoCrypto/getWebCrypto.ts | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/packages/server/src/helpers/iso/isoCrypto/getWebCrypto.ts b/packages/server/src/helpers/iso/isoCrypto/getWebCrypto.ts index 3cf7ab6..11871a6 100644 --- a/packages/server/src/helpers/iso/isoCrypto/getWebCrypto.ts +++ b/packages/server/src/helpers/iso/isoCrypto/getWebCrypto.ts @@ -18,7 +18,6 @@ export async function getWebCrypto(): Promise<Crypto> { const _globalThisCrypto = _getWebCryptoInternals.stubThisGlobalThisCrypto(); if (_globalThisCrypto) { - console.log('globalThis.crypto'); webCrypto = _globalThisCrypto; return webCrypto; } @@ -29,7 +28,6 @@ export async function getWebCrypto(): Promise<Crypto> { const _nodeCrypto = await _getWebCryptoInternals.stubThisImportNodeCrypto(); if (_nodeCrypto?.webcrypto) { - console.log('node:crypto'); webCrypto = _nodeCrypto.webcrypto as Crypto; return webCrypto; } |