(data, filename)
| 2578 | } |
| 2579 | |
| 2580 | function exportToJSON(data, filename) { |
| 2581 | const jsonStr = JSON.stringify(data, null, 2); |
| 2582 | downloadFile(jsonStr, filename, 'application/json'); |
| 2583 | } |
| 2584 | |
| 2585 | function messagesToCSV(messages, connectionInfo = null) { |
| 2586 | const headers = ['ID', 'EventType', 'Data', 'LastEventId', 'Timestamp']; |
no test coverage detected