()
| 181 | } |
| 182 | |
| 183 | function defaultFs(): FileSystemLike { |
| 184 | return { existsSync, mkdirSync, writeFileSync, unlinkSync }; |
| 185 | } |
| 186 | |
| 187 | function stmt<T>(db: DatabaseLike, sql: string): StatementLike<T> { |
| 188 | return db.prepare(sql) as unknown as StatementLike<T>; |
no outgoing calls
no test coverage detected