(column: string)
| 1915 | } |
| 1916 | |
| 1917 | function invalidColumn(column: string): Error { |
| 1918 | return new Error(`Invalid long-term memory SQLite column ${column}`); |
| 1919 | } |
| 1920 | |
| 1921 | function assertChanged(changes: number | bigint, itemId: string): void { |
| 1922 | if (Number(changes) !== 1) { |
no outgoing calls
no test coverage detected