(queryText)
| 89 | |
| 90 | // Allow optional external drivers (e.g., AI bridge) to read/write code or run queries. |
| 91 | const runQuery = (queryText) => { |
| 92 | if (repl && typeof repl.executeQueryFromText === 'function') { |
| 93 | repl.executeQueryFromText(queryText); |
| 94 | } |
| 95 | }; |
| 96 | |
| 97 | if (typeof window !== 'undefined') { |
| 98 | window.dogalog = { |
no test coverage detected