exceljs.bare.js 306 B

12345678910111213
  1. // this bundle is built without polyfill leaving apps the freedom to add their own
  2. const ExcelJS = {
  3. Workbook: require('./doc/workbook'),
  4. };
  5. // Object.assign mono-fill
  6. const Enums = require('./doc/enums');
  7. Object.keys(Enums).forEach(key => {
  8. ExcelJS[key] = Enums[key];
  9. });
  10. module.exports = ExcelJS;