(...args)
| 1 | // Utility functions module |
| 2 | |
| 3 | export function log(...args) { |
| 4 | if (window.__STREAM_PANEL_DEBUG__) { |
| 5 | console.log('[Stream Panel DevTools]', ...args); |
| 6 | } |
| 7 | } |
| 8 | |
| 9 | export function escapeHtml(str) { |
| 10 | const div = document.createElement('div'); |