-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlisting-6.10.js
36 lines (32 loc) · 1.01 KB
/
listing-6.10.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
//
// Aggregate data from multiple files.
//
// This example uses Data-Forge.
//
"use strict";
const globby = require('globby');
const importCsvFile = require('./toolkit/importCsvFile.js');
const exportCsvFile = require('./toolkit/exportCsvFile.js');
const inputFileSpec = "./data/by-country/*.csv";
const outputFileName = "./output/surveys-aggregated-from-separate-files.csv";
globby(inputFileSpec)
.then(paths => {
return paths.reduce((prevPromise, path) => {
return prevPromise.then(workingData => {
return importCsvFile(path)
.then(inputData => {
return workingData.concat(inputData);
});
});
}, Promise.resolve([]));
})
.then(aggregatedData => {
return exportCsvFile(outputFileName, aggregatedData);
})
.then(() => {
console.log("Done!");
})
.catch(err => {
console.error("An error occurred.");
console.error(err);
});