diff --git a/datasets/twitchauction/myhelpers.mjs b/datasets/twitchauction/myhelpers.mjs index cb971f2..f4b8525 100644 --- a/datasets/twitchauction/myhelpers.mjs +++ b/datasets/twitchauction/myhelpers.mjs @@ -14,7 +14,7 @@ export function buildPriceTable(filepath) { for (let i = 0; i < t.length; i++) { while (j < t[i][2]) { // price counts // console.log(" i=" + i + "; j=" + j + "; price: " + t[i][0] + ", mult: " + t[i][2]); - tab[j] = t[i][0]; // price + tab[j] = Number(t[i][0]); // price j++; } }