forked from QuarkGluonPlasma/react-course-code
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex3.js
33 lines (25 loc) · 867 Bytes
/
index3.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
const { Workbook } = require('exceljs');
const fs = require('fs');
async function main(){
const workbook = new Workbook();
const workbook2 = await workbook.xlsx.readFile('./bundle.xlsx');
const zhCNBundle = {};
const enUSBundle = {};
workbook2.eachSheet((sheet) => {
sheet.eachRow((row, index) => {
if(index === 1) {
return;
}
const key = row.getCell(1).value;
const zhCNValue = row.getCell(4).value;
const enUSValue = row.getCell(5).value;
zhCNBundle[key] = zhCNValue;
enUSBundle[key] = enUSValue;
})
});
console.log(zhCNBundle);
console.log(enUSBundle);
fs.writeFileSync('zh-CN.json', JSON.stringify(zhCNBundle, null, 2));
fs.writeFileSync('en-US.json', JSON.stringify(enUSBundle, null, 2));
}
main();