libsodium.js totalMemory minor fix (#610)
This commit is contained in:
parent
09ecb47a53
commit
381080bf02
@ -79,14 +79,14 @@ if [ "$DIST" = yes ]; then
|
|||||||
Module = {};
|
Module = {};
|
||||||
}
|
}
|
||||||
var root = Module;
|
var root = Module;
|
||||||
if (root['sodium'] !== 'object') {
|
if (typeof root['sodium'] !== 'object') {
|
||||||
if (typeof global === 'object') {
|
if (typeof global === 'object') {
|
||||||
root = global;
|
root = global;
|
||||||
} else if (typeof window === 'object') {
|
} else if (typeof window === 'object') {
|
||||||
root = window;
|
root = window;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (root['sodium'] === 'object' && typeof root['sodium']['totalMemory'] === 'number') {
|
if (typeof root['sodium'] === 'object' && typeof root['sodium']['totalMemory'] === 'number') {
|
||||||
Module['TOTAL_MEMORY'] = root['sodium']['totalMemory'];
|
Module['TOTAL_MEMORY'] = root['sodium']['totalMemory'];
|
||||||
}
|
}
|
||||||
var _Module = Module;
|
var _Module = Module;
|
||||||
|
Loading…
Reference in New Issue
Block a user