(data, filename)
| 98 | } |
| 99 | |
| 100 | export function exportToJSON(data, filename) { |
| 101 | const jsonStr = JSON.stringify(data, null, 2); |
| 102 | downloadFile(jsonStr, filename, 'application/json'); |
| 103 | } |
| 104 | |
| 105 | export function messagesToCSV(messages, connectionInfo = null) { |
| 106 | const headers = ['ID', 'EventType', 'Data', 'LastEventId', 'Timestamp']; |
no test coverage detected