-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathutil.js
57 lines (42 loc) · 991 Bytes
/
util.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
const csv = require('csvtojson');
const _ = require('lodash');
const q = require('q');
const json2csv = require('json2csv');
function transformCSV(originalFile, newFile, lineProcessor){
var buffer = [], dfd = q.defer();
csv()
.fromFile(originalFile)
.on('json',(jsonObj)=>{
buffer.push(lineProcessor ? lineProcessor(jsonObj) : jsonObj);
})
.on('done',(error)=>{
if(error){
dfd.reject(error);
}
else {
var csv = json2csv({ data: buffer });
console.log(csv);
dfd.resolve(buffer);
}
});
return dfd.promise;
}
function csvToJson(fileName, lineProcessor){
var buffer = [];
return new Promise((resolve, rejecT) => {
csv()
.fromFile(fileName)
.on('json',(jsonObj)=>{
buffer.push(lineProcessor ? lineProcessor(jsonObj) : jsonObj);
})
.on('done',(error)=>{
if(error){
reject(error);
}
else {
resolve(buffer);
}
});
});
}
module.exports = { csvToJson, transformCSV };