Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
  • Loading branch information
jribbink committed Jun 6, 2024
1 parent d8ceb36 commit 5e4181a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions extension/src/crypto-polyfill.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import * as crypto from 'crypto'

if (!globalThis.crypto) {
if (globalThis.crypto == null) {
Object.defineProperty(globalThis, 'crypto', {
value: crypto,
value: crypto
})
}
}

0 comments on commit 5e4181a

Please sign in to comment.