Skip to content

Commit

Permalink
fix typeof in registerHelpers
Browse files Browse the repository at this point in the history
  • Loading branch information
TateB committed Feb 13, 2024
1 parent 7b444be commit d69c026
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/ensjs/src/utils/registerHelpers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ export type RegistrationTuple = [
const cryptoRef =
(typeof crypto !== 'undefined' && crypto) ||
(typeof window !== 'undefined' &&
typeof window.crypto !== undefined &&
typeof window.crypto !== 'undefined' &&
window.crypto) ||
undefined

Expand Down

0 comments on commit d69c026

Please sign in to comment.