const xlsxStyle = require("xlsx-style");
const xlsx = require('xlsx');
const wb = xlsx.utils.book_new();
var ws_name = "SheetJS";
/* make worksheet */
var ws_data = [
[ "S", "h", "e", "e\ntest", "tteststesateafwefewffw", "J", "S" ],
[ 1 , 2 , 3 , 4 , 5 ]
];
var ws = xlsx.utils.aoa_to_sheet(ws_data);
// ws['D1'].W = "e\ntest";
// ws['D1'].h = "e\ntest";
console.log('----', ws['D1']