File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -132,7 +132,7 @@ const start = (sqlite3) => {
132132const initializeSQLite = async () => {
133133 try {
134134 log (' Loading and initializing SQLite3 module...' );
135- const sqlite3 = await sqlite3InitModule ({ print : log, printErr : error } );
135+ const sqlite3 = await sqlite3InitModule ();
136136 log (' Done initializing. Running demo...' );
137137 start (sqlite3);
138138 } catch (err) {
@@ -163,10 +163,7 @@ const start = (sqlite3) => {
163163const initializeSQLite = async () => {
164164 try {
165165 log (' Loading and initializing SQLite3 module...' );
166- const sqlite3 = await sqlite3InitModule ({
167- print: log,
168- printErr: error,
169- });
166+ const sqlite3 = await sqlite3InitModule ();
170167 log (' Done initializing. Running demo...' );
171168 start (sqlite3);
172169 } catch (err) {
You can’t perform that action at this time.
0 commit comments