@gatekeeper_technology/excel-utils 1.0.4 → 1.0.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +4 -1
- package/package.json +1 -1
- package/utils.js +3 -1
package/README.md
CHANGED
|
@@ -1,6 +1,9 @@
|
|
|
1
1
|
# Gatekeeper's Excel Utils
|
|
2
2
|
|
|
3
3
|
## Changelog
|
|
4
|
+
### [1.00.05] 18-03-2022
|
|
5
|
+
### Changed
|
|
6
|
+
- Fixed import bug
|
|
4
7
|
### [1.00.04] 18-03-2022
|
|
5
8
|
#### Changed
|
|
6
|
-
- Moved the functions and WorkbookCreator Class each to their own folder.
|
|
9
|
+
- Moved the functions and WorkbookCreator Class each to their own folder.
|
package/package.json
CHANGED
package/utils.js
CHANGED
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
const WorkbookCreator = require("./workbook_creator.js");
|
|
2
|
+
|
|
1
3
|
async function generateXLSXBuffer(data, sheet_name) {
|
|
2
4
|
const workbook_creator = new WorkbookCreator();
|
|
3
5
|
let _workbook = workbook_creator.createWorkbook();
|
|
@@ -24,6 +26,6 @@ async function getWorkbookData(data) {
|
|
|
24
26
|
}
|
|
25
27
|
|
|
26
28
|
modules.export = {
|
|
27
|
-
generateXLSXBuffer
|
|
29
|
+
generateXLSXBuffer,
|
|
28
30
|
getWorkbookData
|
|
29
31
|
}
|