9 lines
209 B
JavaScript
9 lines
209 B
JavaScript
// import excel2json module
|
|
const excel2json = require("./excel2json");
|
|
|
|
// called function export excel2json
|
|
const exported = excel2json();
|
|
|
|
// output data from exported
|
|
console.log("Output =>\n", exported);
|