We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1cdf4ce commit 6a4995dCopy full SHA for 6a4995d
sqlite-wasm/jswasm/sqlite3-worker1-bundler-friendly.mjs
@@ -36,10 +36,12 @@
36
const urlParams = globalThis.location
37
? new URL(globalThis.location.href).searchParams
38
: new URLSearchParams();
39
- let theJs = './sqlite3.js';
+ let theJs = './sqlite3.js';
40
if (urlParams.has('sqlite3.dir')) {
41
theJs = urlParams.get('sqlite3.dir') + '/' + theJs;
42
}
43
44
await import(theJs);
45
-})().then(() => sqlite3InitModule().then((sqlite3) => sqlite3.initWorker1API()));
+})().then(() =>
46
+ sqlite3InitModule().then((sqlite3) => sqlite3.initWorker1API()),
47
+);
0 commit comments