This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function convert_csv_to_dict(csv_headers_row, csv_values_row) { | |
var json_from_csv = csv_values_row.reduce(function(result, field, index) { | |
result[csv_headers_row[index]] = field; | |
return result; | |
}, {}) | |
return json_from_csv; | |
} | |
var headers_fn = (function() { |