exceljs.bare.js 359 B

1234567891011121314
  1. "use strict";
  2. // this bundle is built without polyfill leaving apps the freedom to add their own
  3. const ExcelJS = {
  4. Workbook: require('./doc/workbook')
  5. };
  6. // Object.assign mono-fill
  7. const Enums = require('./doc/enums');
  8. Object.keys(Enums).forEach(key => {
  9. ExcelJS[key] = Enums[key];
  10. });
  11. module.exports = ExcelJS;
  12. //# sourceMappingURL=exceljs.bare.js.map