(host)
| 80 | table.columns.map((column) => `${column.name} ${column.type}`); |
| 81 | |
| 82 | function formatHost(host) { |
| 83 | if (!host) return DEFAULT_TINYBIRD_HOST; |
| 84 | if (host.startsWith("http://") || host.startsWith("https://")) return host; |
| 85 | return `https://${host}`; |
| 86 | } |
| 87 | |
| 88 | function loadTinybFile() { |
| 89 | for (const candidate of TINYB_FILE_CANDIDATES) { |
no outgoing calls
no test coverage detected