"this" doesn't seem to ever be defined in a module
isNan is undefined
This commit is contained in:
parent
af5ce360b4
commit
c431a42658
@ -78,18 +78,16 @@ if [ "$DIST" = yes ]; then
|
|||||||
if (typeof Module === 'undefined') {
|
if (typeof Module === 'undefined') {
|
||||||
Module = {};
|
Module = {};
|
||||||
}
|
}
|
||||||
var root = {};
|
var root = Module;
|
||||||
if (typeof this === 'object') {
|
if (root['sodium'] !== 'object') {
|
||||||
root = this.global || this.self || this.window || this;
|
if (typeof global === 'object') {
|
||||||
|
root = global;
|
||||||
|
} else if (typeof window === 'object') {
|
||||||
|
root = window;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
if (typeof global === 'object') {
|
if (root['sodium'] === 'object' && typeof root['sodium']['totalMemory'] === 'number') {
|
||||||
root = global;
|
Module['TOTAL_MEMORY'] = root['sodium']['totalMemory'];
|
||||||
}
|
|
||||||
if (typeof window === 'object') {
|
|
||||||
root = window;
|
|
||||||
}
|
|
||||||
if (root.sodium && !isNaN(root.sodium.totalMemory)) {
|
|
||||||
Module['TOTAL_MEMORY'] = root.sodium.totalMemory;
|
|
||||||
}
|
}
|
||||||
var _Module = Module;
|
var _Module = Module;
|
||||||
Module.ready = new Promise(function (resolve, reject) {
|
Module.ready = new Promise(function (resolve, reject) {
|
||||||
|
Loading…
Reference in New Issue
Block a user