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;
|
||||
12
test/CSVToJSON/CSVToJSON.test.js
Normal file
12
test/CSVToJSON/CSVToJSON.test.js
Normal file
@ -0,0 +1,12 @@
|
||||
const expect = require('expect');
|
||||
const CSVToJSON = require('./CSVToJSON.js');
|
||||
|
||||
test('CSVToJSON is a Function', () => {
|
||||
expect(CSVToJSON).toBeInstanceOf(Function);
|
||||
});
|
||||
test('CSVToJSON works with default delimiter', () => {
|
||||
expect(CSVToJSON('col1,col2\na,b\nc,d')).toEqual([{'col1': 'a', 'col2': 'b'}, {'col1': 'c', 'col2': 'd'}]);
|
||||
});
|
||||
test('CSVToJSON works with custom delimiter', () => {
|
||||
expect(CSVToJSON('col1;col2\na;b\nc;d', ';')).toEqual([{'col1': 'a', 'col2': 'b'}, {'col1': 'c', 'col2': 'd'}]);
|
||||
});
|
||||
Reference in New Issue
Block a user