exceljs.bare.js 364 B

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