(value: number[] | string[])
| 3 | import { type SQL, sql, type SQLWrapper } from '../sql.ts'; |
| 4 | |
| 5 | function toSql(value: number[] | string[]): string { |
| 6 | return JSON.stringify(value); |
| 7 | } |
| 8 | |
| 9 | /** |
| 10 | * Used in sorting and in querying, if used in sorting, |
no outgoing calls
no test coverage detected