Ensure platform has document object

pull/3164/head
Praise Disu 2 years ago committed by Aniket
parent 94768854be
commit f62b5eccab
  1. 2
      libs/remix-solidity/src/compiler/compiler-utils.ts

@ -52,7 +52,7 @@ export function canUseWorker (selectedVersion) {
}
function browserSupportWorker () {
return document.location.protocol !== 'file:' && Worker !== undefined
return document ? document.location.protocol !== 'file:' && Worker !== undefined : false
}
// returns a promise for minixhr

Loading…
Cancel
Save