Skip to content

Commit 6a4995d

Browse files
committed
Prettier
1 parent 1cdf4ce commit 6a4995d

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

sqlite-wasm/jswasm/sqlite3-worker1-bundler-friendly.mjs

+4-2
Original file line numberDiff line numberDiff line change
@@ -36,10 +36,12 @@
3636
const urlParams = globalThis.location
3737
? new URL(globalThis.location.href).searchParams
3838
: new URLSearchParams();
39-
let theJs = './sqlite3.js';
39+
let theJs = './sqlite3.js';
4040
if (urlParams.has('sqlite3.dir')) {
4141
theJs = urlParams.get('sqlite3.dir') + '/' + theJs;
4242
}
4343

4444
await import(theJs);
45-
})().then(() => sqlite3InitModule().then((sqlite3) => sqlite3.initWorker1API()));
45+
})().then(() =>
46+
sqlite3InitModule().then((sqlite3) => sqlite3.initWorker1API()),
47+
);

0 commit comments

Comments
 (0)