(identifier: string)
| 591 | } |
| 592 | |
| 593 | private escapeIdentifier(identifier: string): string { |
| 594 | // SQLite identifiers can be escaped with double quotes |
| 595 | return `"${identifier.replace(/"/g, '""')}"`; |
| 596 | } |
| 597 | |
| 598 | destroy() { } |
| 599 | } |
no outgoing calls
no test coverage detected