Add CSVToJSON
This commit is contained in:
8
test/CSVToJSON/CSVToJSON.js
Normal file
8
test/CSVToJSON/CSVToJSON.js
Normal file
@ -0,0 +1,8 @@
|
||||
const CSVToJSON = (data, delimiter = ',') => {
|
||||
const titles = data.slice(0,data.indexOf('\n')).split(delimiter);
|
||||
return data.slice(data.indexOf('\n')+1).split('\n').map(v => {
|
||||
const values = v.split(delimiter);
|
||||
return titles.reduce((obj, title, index) => ((obj[title] = values[index]), obj), {});
|
||||
});
|
||||
}
|
||||
module.exports = CSVToJSON;
|
||||
Reference in New Issue
Block a user