adding ScatterChart2CsvConverterTest

This commit is contained in:
frankknoll
2023-11-10 17:57:07 +01:00
parent ab16d68f0f
commit acfe871d1d
6 changed files with 59 additions and 5 deletions

View File

@@ -24,4 +24,6 @@ class Utils {
static sliceDict(dict, start, end) {
return Object.fromEntries(Object.entries(dict).slice(start, end));
}
static zip = rows => rows[0].map((_, c) => rows.map(row => row[c]))
}