(table)
| 77 | const normalizeWhitespace = (value) => value.replace(/\s+/g, " ").trim(); |
| 78 | |
| 79 | const buildSchemaLines = (table) => |
| 80 | table.columns.map((column) => `${column.name} ${column.type}`); |
| 81 | |
| 82 | function formatHost(host) { |
| 83 | if (!host) return DEFAULT_TINYBIRD_HOST; |
no outgoing calls
no test coverage detected