Files
ccdi/doc/test-data/purchase_transaction/node_modules/exceljs/lib/exceljs.bare.js

14 lines
306 B
JavaScript
Raw Normal View History

2026-02-09 14:34:27 +08:00
// this bundle is built without polyfill leaving apps the freedom to add their own
const ExcelJS = {
Workbook: require('./doc/workbook'),
};
// Object.assign mono-fill
const Enums = require('./doc/enums');
Object.keys(Enums).forEach(key => {
ExcelJS[key] = Enums[key];
});
module.exports = ExcelJS;