disallow sheet import/export if WebAssembly is not present

pull/1/head
ansuz 4 years ago
parent fe41ca36bc
commit 586c45f0f7

@ -73,7 +73,7 @@ define([
}; };
var supportsXLSX = function () { var supportsXLSX = function () {
return !(typeof(Atomics) === "undefined" || typeof (SharedArrayBuffer) === "undefined"); return !(typeof(Atomics) === "undefined" || typeof (SharedArrayBuffer) === "undefined" || typeof(WebAssembly) === 'undefined');
}; };

Loading…
Cancel
Save