mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-02-01 23:57:49 +00:00
Fix Worker tests in Chrome. See https://developer.mozilla.org/en-US/docs/Web/API/Web_Workers_API/Using_web_workers#Browser_notes.
This commit is contained in:
committed by
jdalton
parent
e7ba75d533
commit
1480abf0e8
@@ -135,7 +135,7 @@
|
||||
var isStrict = ui.isStrict;
|
||||
|
||||
/** Used to test Web Workers. */
|
||||
var Worker = !(ui.isForeign || ui.isSauceLabs || isModularize) && document && root.Worker;
|
||||
var Worker = !(ui.isForeign || ui.isSauceLabs || isModularize) && (document && document.origin != 'null') && root.Worker;
|
||||
|
||||
/** Used to test host objects in IE. */
|
||||
try {
|
||||
|
||||
Reference in New Issue
Block a user