Skip to content

Commit

Permalink
0.8.1
Browse files Browse the repository at this point in the history
  • Loading branch information
andrefs committed Jan 9, 2024
1 parent b9c1b33 commit 75ce654
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "punuy-eval",
"version": "0.8.0",
"version": "0.8.1",
"description": "",
"main": "index.js",
"scripts": {
Expand Down
4 changes: 3 additions & 1 deletion src/lib/dataset-adapters/collection.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,9 @@ for (const dataset in ds) {
continue;
}
if ("values" in row && Array.isArray(row.values)) {
col[w1][w2][dataset] = row.values.filter((v) => v !== undefined && v !== null) as number[];
col[w1][w2][dataset] = row.values.filter(
v => v !== undefined && v !== null
) as number[];
}
}
}
Expand Down

0 comments on commit 75ce654

Please sign in to comment.