Move declaration closer to usage

This commit is contained in:
Frank Denis 2017-10-05 02:28:14 +02:00
parent ec4432a388
commit 1393681662

View File

@ -74,10 +74,10 @@ if [ "$DIST" = yes ]; then
emccLibsodium "${PREFIX}/lib/libsodium.wasm.tmp.js" -O3 -s WASM=1 emccLibsodium "${PREFIX}/lib/libsodium.wasm.tmp.js" -O3 -s WASM=1
cat > "${PREFIX}/lib/libsodium.js" <<- EOM cat > "${PREFIX}/lib/libsodium.js" <<- EOM
var root = this.global || this.self || this.window || this;
if (typeof Module === 'undefined') { if (typeof Module === 'undefined') {
var Module = {}; var Module = {};
} }
var root = this.global || this.self || this.window || this;
if (root.sodium && !isNaN(root.sodium.totalMemory)) { if (root.sodium && !isNaN(root.sodium.totalMemory)) {
Module.TOTAL_MEMORY = root.sodium.totalMemory; Module.TOTAL_MEMORY = root.sodium.totalMemory;
} }