Files
jornada-laboral-api/routes/get_excel.js
T
2019-10-09 15:15:04 -05:00

11 lines
272 B
JavaScript

var wb = XLSX.utils.book_new();
wb.Props = {
Title: "SheetJS Tutorial",
Subject: "Test",
Author: "Red Stapler",
CreatedDate: new Date(2017, 12, 19)
};
/ * Agregar la hoja de trabajo al libro de trabajo * /
XLSX.utils.book_append_sheet(wb, ws, ws_name);