• File: exceljs.bare.js
  • Full Path: /var/www/nodejs/daily_store_reports_nodejs/node_modules/exceljs/lib/exceljs.bare.js
  • Date Modified: 02/04/2023 9:31 PM
  • File size: 319 bytes
  • MIME-type: text/plain
  • Charset: utf-8
// 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;