disallow sheet import/export if WebAssembly is not present
parent
fe41ca36bc
commit
586c45f0f7
|
@ -73,7 +73,7 @@ define([
|
|||
};
|
||||
|
||||
var supportsXLSX = function () {
|
||||
return !(typeof(Atomics) === "undefined" || typeof (SharedArrayBuffer) === "undefined");
|
||||
return !(typeof(Atomics) === "undefined" || typeof (SharedArrayBuffer) === "undefined" || typeof(WebAssembly) === 'undefined');
|
||||
};
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue