2021-03-29 19:47:35 +07:00
|
|
|
// import excel2json module
|
|
|
|
const excel2json = require("./excel2json");
|
2021-03-29 17:32:54 +07:00
|
|
|
|
2021-03-29 19:47:35 +07:00
|
|
|
// called function export excel2json
|
|
|
|
const exported = excel2json();
|
2021-03-29 17:32:54 +07:00
|
|
|
|
2021-03-29 19:47:35 +07:00
|
|
|
// output data from exported
|
|
|
|
console.log("Output =>\n", exported);
|