fix linting

This commit is contained in:
Kajari Ghosh 2018-12-10 14:14:02 -05:00
parent b988889707
commit 96a3571069

View File

@ -80,7 +80,7 @@ function tableParse(table, noRoute, annotation, callback) {
} else { } else {
result = json[annotation].map(row => { result = json[annotation].map(row => {
var hashes = {}; var hashes = {};
row.forEach((v, i) => { hashes[tableRows[0][i+1]] = parse(v) ? '' : v; }); row.forEach((v, i) => { hashes[tableRows[0][i+1]] = parse(v) ? '' : v; });
return hashes; return hashes;
}); });
} }