diff options
Diffstat (limited to 'ext/wasm/api')
-rw-r--r-- | ext/wasm/api/sqlite3-api-cleanup.js | 2 | ||||
-rw-r--r-- | ext/wasm/api/sqlite3-api-prologue.js | 2 | ||||
-rw-r--r-- | ext/wasm/api/sqlite3-api-worker1.js | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/ext/wasm/api/sqlite3-api-cleanup.js b/ext/wasm/api/sqlite3-api-cleanup.js index ed6b8c40e..01aba213e 100644 --- a/ext/wasm/api/sqlite3-api-cleanup.js +++ b/ext/wasm/api/sqlite3-api-cleanup.js @@ -21,7 +21,7 @@ if('undefined' !== typeof Module){ // presumably an Emscripten build Install a suitable default configuration for sqlite3ApiBootstrap(). */ const SABC = self.sqlite3ApiBootstrap.defaultConfig; - SABC.Module = Module /* ==> Current needs to be exposed here for test code. NOT part + SABC.Module = Module /* ==> Currently needs to be exposed here for test code. NOT part of the public API. */; SABC.exports = Module['asm']; SABC.memory = Module.wasmMemory /* gets set if built with -sIMPORT_MEMORY */; diff --git a/ext/wasm/api/sqlite3-api-prologue.js b/ext/wasm/api/sqlite3-api-prologue.js index d92b948fc..5217cfcde 100644 --- a/ext/wasm/api/sqlite3-api-prologue.js +++ b/ext/wasm/api/sqlite3-api-prologue.js @@ -173,7 +173,7 @@ self.sqlite3ApiBootstrap = function sqlite3ApiBootstrap( config[k] = config[k](); } }); - + /** Throws a new Error, the message of which is the concatenation all args with a space between each. */ const toss = (...args)=>{throw new Error(args.join(' '))}; diff --git a/ext/wasm/api/sqlite3-api-worker1.js b/ext/wasm/api/sqlite3-api-worker1.js index 39263a4ab..c63ab1117 100644 --- a/ext/wasm/api/sqlite3-api-worker1.js +++ b/ext/wasm/api/sqlite3-api-worker1.js @@ -180,7 +180,7 @@ sqlite3.initWorker1API = function(){ toss("Throwing because of simulateError flag."); } if(args.persistent && args.filename){ - oargs.filaname = sqlite3.capi.sqlite3_web_persistent_dir() + args.filename; + oargs.filename = sqlite3.capi.sqlite3_web_persistent_dir() + args.filename; }else if('' === args.filename){ oargs.filename = args.filename; }else{ |