UNPKG

@elbstack/xlsx-populate

Version:

Excel XLSX parser/generator written in JavaScript with Node.js and browser support, jQuery/d3-style method chaining, and a focus on keeping existing workbook features and styles in tact.

22 lines (18 loc) 320 B
"use strict"; const JSZip = require("jszip"); /** * External modules. * @private */ module.exports = { /** * The Promise library. * @type {Promise} */ get Promise() { return JSZip.external.Promise; }, set Promise(Promise) { JSZip.external.Promise = Promise; } };