(value: string)
| 136 | } |
| 137 | |
| 138 | const quoteIdent = (value: string): string => `"${value.replaceAll('"', '""')}"`; |
| 139 | |
| 140 | const tableExists = async (client: Client, table: string): Promise<boolean> => |
| 141 | (await queryFirst(client, "SELECT name FROM sqlite_master WHERE type = 'table' AND name = ?", [ |
no outgoing calls
no test coverage detected