Skip to content

Commit 373499a

Browse files
authored
Merge pull request #6541 from AnalyticalGraphicsInc/wasm-in-edge
Edge doesn't support all wasm features needed
2 parents c6abf54 + 71dcd20 commit 373499a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Source/Core/FeatureDetection.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -288,7 +288,7 @@ define([
288288
* @see {@link https://developer.mozilla.org/en-US/docs/WebAssembly}
289289
*/
290290
FeatureDetection.supportsWebAssembly = function() {
291-
return typeof WebAssembly !== 'undefined';
291+
return typeof WebAssembly !== 'undefined' && !FeatureDetection.isEdge;
292292
};
293293

294294
return FeatureDetection;

0 commit comments

Comments
 (0)