( dbModule: EmscriptenModule, filePath: string, skipMigration: boolean = false, )
| 24 | } |
| 25 | |
| 26 | function createSQLiteQueryExecutor( |
| 27 | dbModule: EmscriptenModule, |
| 28 | filePath: string, |
| 29 | skipMigration: boolean = false, |
| 30 | ): SQLiteQueryExecutorWrapper { |
| 31 | const rawExecutor = new dbModule.SQLiteQueryExecutor(filePath, skipMigration); |
| 32 | return new SQLiteQueryExecutorWrapper(rawExecutor, dbModule); |
| 33 | } |
| 34 | |
| 35 | export { getDatabaseModule, createSQLiteQueryExecutor }; |
no outgoing calls
no test coverage detected