pdfmake 0.3.8 → 0.3.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +4 -0
- package/build/pdfmake.js +95 -69
- package/build/pdfmake.js.map +1 -1
- package/build/pdfmake.min.js +2 -2
- package/build/pdfmake.min.js.map +1 -1
- package/js/DocumentContext.js +12 -10
- package/package.json +1 -1
- package/src/DocumentContext.js +17 -13
package/CHANGELOG.md
CHANGED
package/build/pdfmake.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! pdfmake v0.3.
|
|
1
|
+
/*! pdfmake v0.3.9, @license MIT, @link http://pdfmake.org */
|
|
2
2
|
(function webpackUniversalModuleDefinition(root, factory) {
|
|
3
3
|
if(typeof exports === 'object' && typeof module === 'object')
|
|
4
4
|
module.exports = factory();
|
|
@@ -25,7 +25,7 @@ __webpack_require__.d(__webpack_exports__, {
|
|
|
25
25
|
// EXTERNAL MODULE: ./node_modules/core-js/modules/es.array.includes.js
|
|
26
26
|
var es_array_includes = __webpack_require__(187);
|
|
27
27
|
// EXTERNAL MODULE: ./node_modules/pdfkit/js/pdfkit.es.js
|
|
28
|
-
var pdfkit_es = __webpack_require__(
|
|
28
|
+
var pdfkit_es = __webpack_require__(8259);
|
|
29
29
|
;// ./src/helpers/variableType.js
|
|
30
30
|
/**
|
|
31
31
|
* @param {any} variable
|
|
@@ -4435,6 +4435,7 @@ class DocumentContext extends events.EventEmitter {
|
|
|
4435
4435
|
let maxBottomY = this.y;
|
|
4436
4436
|
let maxBottomPage = this.page;
|
|
4437
4437
|
let maxBottomAvailableHeight = this.availableHeight;
|
|
4438
|
+
let overflowed = saved.overflowed;
|
|
4438
4439
|
|
|
4439
4440
|
// Pop overflowed snapshots created by moveToNextColumn (snaking columns).
|
|
4440
4441
|
// Merge their bottomMost values to find the true maximum.
|
|
@@ -4452,16 +4453,17 @@ class DocumentContext extends events.EventEmitter {
|
|
|
4452
4453
|
if (!saved) {
|
|
4453
4454
|
return {};
|
|
4454
4455
|
}
|
|
4455
|
-
|
|
4456
|
-
|
|
4457
|
-
|
|
4458
|
-
|
|
4459
|
-
|
|
4460
|
-
|
|
4461
|
-
|
|
4462
|
-
|
|
4463
|
-
|
|
4464
|
-
|
|
4456
|
+
if (overflowed) {
|
|
4457
|
+
// Apply the max bottom from all overflowed columns to this base snapshot
|
|
4458
|
+
if (maxBottomPage > saved.bottomMost.page || maxBottomPage === saved.bottomMost.page && maxBottomY > saved.bottomMost.y) {
|
|
4459
|
+
saved.bottomMost = {
|
|
4460
|
+
x: saved.x,
|
|
4461
|
+
y: maxBottomY,
|
|
4462
|
+
page: maxBottomPage,
|
|
4463
|
+
availableHeight: maxBottomAvailableHeight,
|
|
4464
|
+
availableWidth: saved.availableWidth
|
|
4465
|
+
};
|
|
4466
|
+
}
|
|
4465
4467
|
}
|
|
4466
4468
|
this.calculateBottomMost(saved, endingCell);
|
|
4467
4469
|
this.x = saved.x;
|
|
@@ -8755,7 +8757,7 @@ class OutputDocument {
|
|
|
8755
8757
|
}
|
|
8756
8758
|
/* harmony default export */ const src_OutputDocument = (OutputDocument);
|
|
8757
8759
|
// EXTERNAL MODULE: ./node_modules/file-saver/dist/FileSaver.min.js
|
|
8758
|
-
var FileSaver_min = __webpack_require__(
|
|
8760
|
+
var FileSaver_min = __webpack_require__(7286);
|
|
8759
8761
|
;// ./src/browser-extensions/OutputDocumentBrowser.js
|
|
8760
8762
|
|
|
8761
8763
|
|
|
@@ -15284,7 +15286,7 @@ module.exports = {
|
|
|
15284
15286
|
|
|
15285
15287
|
/***/ },
|
|
15286
15288
|
|
|
15287
|
-
/***/
|
|
15289
|
+
/***/ 8259
|
|
15288
15290
|
(__unused_webpack_module, exports, __webpack_require__) {
|
|
15289
15291
|
|
|
15290
15292
|
"use strict";
|
|
@@ -21649,10 +21651,11 @@ module.exports = ___EXPOSE_LOADER_IMPORT___;
|
|
|
21649
21651
|
(__unused_webpack_module, exports, __webpack_require__) {
|
|
21650
21652
|
|
|
21651
21653
|
"use strict";
|
|
21654
|
+
var __webpack_unused_export__;
|
|
21652
21655
|
|
|
21653
|
-
|
|
21656
|
+
__webpack_unused_export__ = ({ value: true });
|
|
21654
21657
|
exports.polyval = exports.ghash = void 0;
|
|
21655
|
-
|
|
21658
|
+
__webpack_unused_export__ = _toGHASHKey;
|
|
21656
21659
|
/**
|
|
21657
21660
|
* GHash from AES-GCM and its little-endian "mirror image" Polyval from AES-SIV.
|
|
21658
21661
|
*
|
|
@@ -22802,37 +22805,38 @@ exports.unsafe = {
|
|
|
22802
22805
|
(__unused_webpack_module, exports) {
|
|
22803
22806
|
|
|
22804
22807
|
"use strict";
|
|
22808
|
+
var __webpack_unused_export__;
|
|
22805
22809
|
|
|
22806
22810
|
/**
|
|
22807
22811
|
* Utilities for hex, bytes, CSPRNG.
|
|
22808
22812
|
* @module
|
|
22809
22813
|
*/
|
|
22810
22814
|
/*! noble-ciphers - MIT License (c) 2023 Paul Miller (paulmillr.com) */
|
|
22811
|
-
|
|
22812
|
-
exports.wrapCipher =
|
|
22813
|
-
|
|
22814
|
-
|
|
22815
|
-
|
|
22815
|
+
__webpack_unused_export__ = ({ value: true });
|
|
22816
|
+
exports.wrapCipher = __webpack_unused_export__ = __webpack_unused_export__ = exports.qv = void 0;
|
|
22817
|
+
__webpack_unused_export__ = isBytes;
|
|
22818
|
+
__webpack_unused_export__ = abool;
|
|
22819
|
+
__webpack_unused_export__ = anumber;
|
|
22816
22820
|
exports.abytes = abytes;
|
|
22817
|
-
|
|
22821
|
+
__webpack_unused_export__ = ahash;
|
|
22818
22822
|
exports.aexists = aexists;
|
|
22819
22823
|
exports.aoutput = aoutput;
|
|
22820
22824
|
exports.u8 = u8;
|
|
22821
22825
|
exports.u32 = u32;
|
|
22822
22826
|
exports.clean = clean;
|
|
22823
22827
|
exports.createView = createView;
|
|
22824
|
-
|
|
22825
|
-
|
|
22826
|
-
|
|
22827
|
-
|
|
22828
|
-
|
|
22829
|
-
|
|
22830
|
-
|
|
22828
|
+
__webpack_unused_export__ = bytesToHex;
|
|
22829
|
+
__webpack_unused_export__ = hexToBytes;
|
|
22830
|
+
__webpack_unused_export__ = hexToNumber;
|
|
22831
|
+
__webpack_unused_export__ = bytesToNumberBE;
|
|
22832
|
+
__webpack_unused_export__ = numberToBytesBE;
|
|
22833
|
+
__webpack_unused_export__ = utf8ToBytes;
|
|
22834
|
+
__webpack_unused_export__ = bytesToUtf8;
|
|
22831
22835
|
exports.toBytes = toBytes;
|
|
22832
22836
|
exports.overlapBytes = overlapBytes;
|
|
22833
22837
|
exports.complexOverlapBytes = complexOverlapBytes;
|
|
22834
22838
|
exports.concatBytes = concatBytes;
|
|
22835
|
-
|
|
22839
|
+
__webpack_unused_export__ = checkOpts;
|
|
22836
22840
|
exports.equalBytes = equalBytes;
|
|
22837
22841
|
exports.getOutput = getOutput;
|
|
22838
22842
|
exports.setBigUint64 = setBigUint64;
|
|
@@ -22905,7 +22909,7 @@ function createView(arr) {
|
|
|
22905
22909
|
return new DataView(arr.buffer, arr.byteOffset, arr.byteLength);
|
|
22906
22910
|
}
|
|
22907
22911
|
/** Is current platform little-endian? Most are. Big-Endian platform: IBM */
|
|
22908
|
-
exports.
|
|
22912
|
+
exports.qv = (() => new Uint8Array(new Uint32Array([0x11223344]).buffer)[0] === 0x44)();
|
|
22909
22913
|
// Built-in hex conversion https://caniuse.com/mdn-javascript_builtins_uint8array_fromhex
|
|
22910
22914
|
const hasHexBuiltin = /* @__PURE__ */ (() =>
|
|
22911
22915
|
// @ts-ignore
|
|
@@ -22985,7 +22989,7 @@ function numberToBytesBE(n, len) {
|
|
|
22985
22989
|
// call of async fn will return Promise, which will be fullfiled only on
|
|
22986
22990
|
// next scheduler queue processing step and this is exactly what we need.
|
|
22987
22991
|
const nextTick = async () => { };
|
|
22988
|
-
|
|
22992
|
+
__webpack_unused_export__ = nextTick;
|
|
22989
22993
|
/**
|
|
22990
22994
|
* Converts string to bytes using UTF8 encoding.
|
|
22991
22995
|
* @example utf8ToBytes('abc') // new Uint8Array([97, 98, 99])
|
|
@@ -23073,7 +23077,7 @@ function equalBytes(a, b) {
|
|
|
23073
23077
|
/** For runtime check if class implements interface. */
|
|
23074
23078
|
class Hash {
|
|
23075
23079
|
}
|
|
23076
|
-
|
|
23080
|
+
__webpack_unused_export__ = Hash;
|
|
23077
23081
|
/**
|
|
23078
23082
|
* Wraps a cipher: validates args, ensures encrypt() can only be called once.
|
|
23079
23083
|
* @__NO_SIDE_EFFECTS__
|
|
@@ -23083,7 +23087,7 @@ const wrapCipher = (params, constructor) => {
|
|
|
23083
23087
|
// Validate key
|
|
23084
23088
|
abytes(key);
|
|
23085
23089
|
// Big-Endian hardware is rare. Just in case someone still decides to run ciphers:
|
|
23086
|
-
if (!exports.
|
|
23090
|
+
if (!exports.qv)
|
|
23087
23091
|
throw new Error('Non little-endian hardware is not yet supported');
|
|
23088
23092
|
// Validate nonce if nonceLength is present
|
|
23089
23093
|
if (params.nonceLength !== undefined) {
|
|
@@ -23183,10 +23187,11 @@ function copyBytes(bytes) {
|
|
|
23183
23187
|
(__unused_webpack_module, exports, __webpack_require__) {
|
|
23184
23188
|
|
|
23185
23189
|
"use strict";
|
|
23190
|
+
var __webpack_unused_export__;
|
|
23186
23191
|
|
|
23187
|
-
|
|
23192
|
+
__webpack_unused_export__ = ({ value: true });
|
|
23188
23193
|
exports.SHA512_IV = exports.SHA384_IV = exports.SHA224_IV = exports.SHA256_IV = exports.HashMD = void 0;
|
|
23189
|
-
|
|
23194
|
+
__webpack_unused_export__ = setBigUint64;
|
|
23190
23195
|
exports.Chi = Chi;
|
|
23191
23196
|
exports.Maj = Maj;
|
|
23192
23197
|
/**
|
|
@@ -23352,11 +23357,12 @@ exports.SHA512_IV = Uint32Array.from([
|
|
|
23352
23357
|
(__unused_webpack_module, exports) {
|
|
23353
23358
|
|
|
23354
23359
|
"use strict";
|
|
23360
|
+
var __webpack_unused_export__;
|
|
23355
23361
|
|
|
23356
|
-
|
|
23357
|
-
|
|
23362
|
+
__webpack_unused_export__ = ({ value: true });
|
|
23363
|
+
__webpack_unused_export__ = exports.shrSL = exports.shrSH = exports.rotrSL = exports.rotrSH = exports.rotrBL = exports.rotrBH = __webpack_unused_export__ = __webpack_unused_export__ = __webpack_unused_export__ = __webpack_unused_export__ = __webpack_unused_export__ = __webpack_unused_export__ = exports.add5L = exports.add5H = exports.add4L = exports.add4H = exports.add3L = exports.add3H = void 0;
|
|
23358
23364
|
exports.add = add;
|
|
23359
|
-
|
|
23365
|
+
__webpack_unused_export__ = fromBig;
|
|
23360
23366
|
exports.split = split;
|
|
23361
23367
|
/**
|
|
23362
23368
|
* Internal helpers for u64. BigUint64Array is too slow as per 2025, so we implement it using Uint32Array.
|
|
@@ -23381,7 +23387,7 @@ function split(lst, le = false) {
|
|
|
23381
23387
|
return [Ah, Al];
|
|
23382
23388
|
}
|
|
23383
23389
|
const toBig = (h, l) => (BigInt(h >>> 0) << _32n) | BigInt(l >>> 0);
|
|
23384
|
-
|
|
23390
|
+
__webpack_unused_export__ = toBig;
|
|
23385
23391
|
// for Shift in [0, 32)
|
|
23386
23392
|
const shrSH = (h, _l, s) => h >>> s;
|
|
23387
23393
|
exports.shrSH = shrSH;
|
|
@@ -23399,19 +23405,19 @@ const rotrBL = (h, l, s) => (h >>> (s - 32)) | (l << (64 - s));
|
|
|
23399
23405
|
exports.rotrBL = rotrBL;
|
|
23400
23406
|
// Right rotate for shift===32 (just swaps l&h)
|
|
23401
23407
|
const rotr32H = (_h, l) => l;
|
|
23402
|
-
|
|
23408
|
+
__webpack_unused_export__ = rotr32H;
|
|
23403
23409
|
const rotr32L = (h, _l) => h;
|
|
23404
|
-
|
|
23410
|
+
__webpack_unused_export__ = rotr32L;
|
|
23405
23411
|
// Left rotate for Shift in [1, 32)
|
|
23406
23412
|
const rotlSH = (h, l, s) => (h << s) | (l >>> (32 - s));
|
|
23407
|
-
|
|
23413
|
+
__webpack_unused_export__ = rotlSH;
|
|
23408
23414
|
const rotlSL = (h, l, s) => (l << s) | (h >>> (32 - s));
|
|
23409
|
-
|
|
23415
|
+
__webpack_unused_export__ = rotlSL;
|
|
23410
23416
|
// Left rotate for Shift in (32, 64), NOTE: 32 is special case.
|
|
23411
23417
|
const rotlBH = (h, l, s) => (l << (s - 32)) | (h >>> (64 - s));
|
|
23412
|
-
|
|
23418
|
+
__webpack_unused_export__ = rotlBH;
|
|
23413
23419
|
const rotlBL = (h, l, s) => (h << (s - 32)) | (l >>> (64 - s));
|
|
23414
|
-
|
|
23420
|
+
__webpack_unused_export__ = rotlBL;
|
|
23415
23421
|
// JS uses 32-bit signed integers for bitwise operations which means we cannot
|
|
23416
23422
|
// simple take carry out of low bit sum by shift, we need to use division.
|
|
23417
23423
|
function add(Ah, Al, Bh, Bl) {
|
|
@@ -23440,7 +23446,7 @@ const u64 = {
|
|
|
23440
23446
|
rotlSH, rotlSL, rotlBH, rotlBL,
|
|
23441
23447
|
add, add3L, add3H, add4L, add4H, add5H, add5L,
|
|
23442
23448
|
};
|
|
23443
|
-
|
|
23449
|
+
__webpack_unused_export__ = u64;
|
|
23444
23450
|
|
|
23445
23451
|
|
|
23446
23452
|
/***/ },
|
|
@@ -23449,8 +23455,9 @@ exports["default"] = u64;
|
|
|
23449
23455
|
(__unused_webpack_module, exports) {
|
|
23450
23456
|
|
|
23451
23457
|
"use strict";
|
|
23458
|
+
var __webpack_unused_export__;
|
|
23452
23459
|
|
|
23453
|
-
|
|
23460
|
+
__webpack_unused_export__ = ({ value: true });
|
|
23454
23461
|
exports.crypto = void 0;
|
|
23455
23462
|
exports.crypto = typeof globalThis === 'object' && 'crypto' in globalThis ? globalThis.crypto : undefined;
|
|
23456
23463
|
|
|
@@ -23461,9 +23468,10 @@ exports.crypto = typeof globalThis === 'object' && 'crypto' in globalThis ? glob
|
|
|
23461
23468
|
(__unused_webpack_module, exports, __webpack_require__) {
|
|
23462
23469
|
|
|
23463
23470
|
"use strict";
|
|
23471
|
+
var __webpack_unused_export__;
|
|
23464
23472
|
|
|
23465
|
-
|
|
23466
|
-
|
|
23473
|
+
__webpack_unused_export__ = ({ value: true });
|
|
23474
|
+
__webpack_unused_export__ = __webpack_unused_export__ = __webpack_unused_export__ = __webpack_unused_export__ = exports.sha224 = exports.sha256 = __webpack_unused_export__ = __webpack_unused_export__ = __webpack_unused_export__ = __webpack_unused_export__ = exports.SHA224 = exports.SHA256 = void 0;
|
|
23467
23475
|
/**
|
|
23468
23476
|
* SHA2 hash function. A.k.a. sha256, sha384, sha512, sha512_224, sha512_256.
|
|
23469
23477
|
* SHA256 is the fastest hash implementable in JS, even faster than Blake3.
|
|
@@ -23737,7 +23745,7 @@ class SHA512 extends _md_ts_1.HashMD {
|
|
|
23737
23745
|
this.set(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
|
|
23738
23746
|
}
|
|
23739
23747
|
}
|
|
23740
|
-
|
|
23748
|
+
__webpack_unused_export__ = SHA512;
|
|
23741
23749
|
class SHA384 extends SHA512 {
|
|
23742
23750
|
constructor() {
|
|
23743
23751
|
super(48);
|
|
@@ -23759,7 +23767,7 @@ class SHA384 extends SHA512 {
|
|
|
23759
23767
|
this.Hl = _md_ts_1.SHA384_IV[15] | 0;
|
|
23760
23768
|
}
|
|
23761
23769
|
}
|
|
23762
|
-
|
|
23770
|
+
__webpack_unused_export__ = SHA384;
|
|
23763
23771
|
/**
|
|
23764
23772
|
* Truncated SHA512/256 and SHA512/224.
|
|
23765
23773
|
* SHA512_IV is XORed with 0xa5a5a5a5a5a5a5a5, then used as "intermediary" IV of SHA512/t.
|
|
@@ -23797,7 +23805,7 @@ class SHA512_224 extends SHA512 {
|
|
|
23797
23805
|
this.Hl = T224_IV[15] | 0;
|
|
23798
23806
|
}
|
|
23799
23807
|
}
|
|
23800
|
-
|
|
23808
|
+
__webpack_unused_export__ = SHA512_224;
|
|
23801
23809
|
class SHA512_256 extends SHA512 {
|
|
23802
23810
|
constructor() {
|
|
23803
23811
|
super(32);
|
|
@@ -23819,7 +23827,7 @@ class SHA512_256 extends SHA512 {
|
|
|
23819
23827
|
this.Hl = T256_IV[15] | 0;
|
|
23820
23828
|
}
|
|
23821
23829
|
}
|
|
23822
|
-
|
|
23830
|
+
__webpack_unused_export__ = SHA512_256;
|
|
23823
23831
|
/**
|
|
23824
23832
|
* SHA2-256 hash function from RFC 4634.
|
|
23825
23833
|
*
|
|
@@ -23831,19 +23839,19 @@ exports.sha256 = (0, utils_ts_1.createHasher)(() => new SHA256());
|
|
|
23831
23839
|
/** SHA2-224 hash function from RFC 4634 */
|
|
23832
23840
|
exports.sha224 = (0, utils_ts_1.createHasher)(() => new SHA224());
|
|
23833
23841
|
/** SHA2-512 hash function from RFC 4634. */
|
|
23834
|
-
|
|
23842
|
+
__webpack_unused_export__ = (0, utils_ts_1.createHasher)(() => new SHA512());
|
|
23835
23843
|
/** SHA2-384 hash function from RFC 4634. */
|
|
23836
|
-
|
|
23844
|
+
__webpack_unused_export__ = (0, utils_ts_1.createHasher)(() => new SHA384());
|
|
23837
23845
|
/**
|
|
23838
23846
|
* SHA2-512/256 "truncated" hash function, with improved resistance to length extension attacks.
|
|
23839
23847
|
* See the paper on [truncated SHA512](https://eprint.iacr.org/2010/548.pdf).
|
|
23840
23848
|
*/
|
|
23841
|
-
|
|
23849
|
+
__webpack_unused_export__ = (0, utils_ts_1.createHasher)(() => new SHA512_256());
|
|
23842
23850
|
/**
|
|
23843
23851
|
* SHA2-512/224 "truncated" hash function, with improved resistance to length extension attacks.
|
|
23844
23852
|
* See the paper on [truncated SHA512](https://eprint.iacr.org/2010/548.pdf).
|
|
23845
23853
|
*/
|
|
23846
|
-
|
|
23854
|
+
__webpack_unused_export__ = (0, utils_ts_1.createHasher)(() => new SHA512_224());
|
|
23847
23855
|
|
|
23848
23856
|
|
|
23849
23857
|
/***/ },
|
|
@@ -29234,7 +29242,7 @@ module.exports = function callBoundIntrinsic(name, allowMissing) {
|
|
|
29234
29242
|
|
|
29235
29243
|
var setFunctionLength = __webpack_require__(6255);
|
|
29236
29244
|
|
|
29237
|
-
var $defineProperty = __webpack_require__(
|
|
29245
|
+
var $defineProperty = __webpack_require__(6649);
|
|
29238
29246
|
|
|
29239
29247
|
var callBindBasic = __webpack_require__(6688);
|
|
29240
29248
|
var applyBind = __webpack_require__(8619);
|
|
@@ -29556,7 +29564,7 @@ if ( true && module.exports) {
|
|
|
29556
29564
|
"use strict";
|
|
29557
29565
|
|
|
29558
29566
|
|
|
29559
|
-
var $defineProperty = __webpack_require__(
|
|
29567
|
+
var $defineProperty = __webpack_require__(6649);
|
|
29560
29568
|
|
|
29561
29569
|
var $SyntaxError = __webpack_require__(7770);
|
|
29562
29570
|
var $TypeError = __webpack_require__(6785);
|
|
@@ -29707,7 +29715,7 @@ module.exports = desc && typeof desc.get === 'function'
|
|
|
29707
29715
|
|
|
29708
29716
|
/***/ },
|
|
29709
29717
|
|
|
29710
|
-
/***/
|
|
29718
|
+
/***/ 6649
|
|
29711
29719
|
(module) {
|
|
29712
29720
|
|
|
29713
29721
|
"use strict";
|
|
@@ -30655,7 +30663,7 @@ var getEvalledConstructor = function (expressionSyntax) {
|
|
|
30655
30663
|
};
|
|
30656
30664
|
|
|
30657
30665
|
var $gOPD = __webpack_require__(8109);
|
|
30658
|
-
var $defineProperty = __webpack_require__(
|
|
30666
|
+
var $defineProperty = __webpack_require__(6649);
|
|
30659
30667
|
|
|
30660
30668
|
var throwTypeError = function () {
|
|
30661
30669
|
throw new $TypeError();
|
|
@@ -31107,7 +31115,7 @@ module.exports = $gOPD;
|
|
|
31107
31115
|
"use strict";
|
|
31108
31116
|
|
|
31109
31117
|
|
|
31110
|
-
var $defineProperty = __webpack_require__(
|
|
31118
|
+
var $defineProperty = __webpack_require__(6649);
|
|
31111
31119
|
|
|
31112
31120
|
var hasPropertyDescriptors = function hasPropertyDescriptors() {
|
|
31113
31121
|
return !!$defineProperty;
|
|
@@ -31540,7 +31548,7 @@ var getProto = __webpack_require__(7106);
|
|
|
31540
31548
|
var toStr = callBound('Object.prototype.toString');
|
|
31541
31549
|
var fnToStr = callBound('Function.prototype.toString');
|
|
31542
31550
|
|
|
31543
|
-
var getGeneratorFunction = __webpack_require__(
|
|
31551
|
+
var getGeneratorFunction = __webpack_require__(9294).c;
|
|
31544
31552
|
|
|
31545
31553
|
/** @type {import('.')} */
|
|
31546
31554
|
module.exports = function isGeneratorFunction(fn) {
|
|
@@ -45892,7 +45900,7 @@ module.exports = function whichTypedArray(value) {
|
|
|
45892
45900
|
|
|
45893
45901
|
/***/ },
|
|
45894
45902
|
|
|
45895
|
-
/***/
|
|
45903
|
+
/***/ 7286
|
|
45896
45904
|
(module, exports, __webpack_require__) {
|
|
45897
45905
|
|
|
45898
45906
|
var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;(function(a,b){if(true)!(__WEBPACK_AMD_DEFINE_ARRAY__ = [], __WEBPACK_AMD_DEFINE_FACTORY__ = (b),
|
|
@@ -65289,6 +65297,24 @@ function formatText(text, options) {
|
|
|
65289
65297
|
exports["default"] = XmlDocument;
|
|
65290
65298
|
|
|
65291
65299
|
|
|
65300
|
+
/***/ },
|
|
65301
|
+
|
|
65302
|
+
/***/ 9294
|
|
65303
|
+
(__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) {
|
|
65304
|
+
|
|
65305
|
+
"use strict";
|
|
65306
|
+
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
65307
|
+
/* harmony export */ c: () => (/* reexport default export from named module */ _index_js__WEBPACK_IMPORTED_MODULE_0__)
|
|
65308
|
+
/* harmony export */ });
|
|
65309
|
+
/* unused harmony import specifier */ var getGeneratorFunction;
|
|
65310
|
+
/* harmony import */ var _index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(3011);
|
|
65311
|
+
|
|
65312
|
+
|
|
65313
|
+
/* unused harmony default export */ var __WEBPACK_DEFAULT_EXPORT__ = ((/* unused pure expression or super */ null && (getGeneratorFunction)));
|
|
65314
|
+
|
|
65315
|
+
|
|
65316
|
+
|
|
65317
|
+
|
|
65292
65318
|
/***/ },
|
|
65293
65319
|
|
|
65294
65320
|
/***/ 1635
|
|
@@ -65626,10 +65652,10 @@ function __addDisposableResource(env, value, async) {
|
|
|
65626
65652
|
return value;
|
|
65627
65653
|
}
|
|
65628
65654
|
|
|
65629
|
-
var _SuppressedError = typeof SuppressedError === "function" ? SuppressedError : function (error, suppressed, message) {
|
|
65655
|
+
var _SuppressedError = (/* unused pure expression or super */ null && (typeof SuppressedError === "function" ? SuppressedError : function (error, suppressed, message) {
|
|
65630
65656
|
var e = new Error(message);
|
|
65631
65657
|
return e.name = "SuppressedError", e.error = error, e.suppressed = suppressed, e;
|
|
65632
|
-
};
|
|
65658
|
+
}));
|
|
65633
65659
|
|
|
65634
65660
|
function __disposeResources(env) {
|
|
65635
65661
|
function fail(e) {
|
|
@@ -65666,7 +65692,7 @@ function __rewriteRelativeImportExtension(path, preserveJsx) {
|
|
|
65666
65692
|
return path;
|
|
65667
65693
|
}
|
|
65668
65694
|
|
|
65669
|
-
/* unused harmony default export */ var __WEBPACK_DEFAULT_EXPORT__ = ({
|
|
65695
|
+
/* unused harmony default export */ var __WEBPACK_DEFAULT_EXPORT__ = ((/* unused pure expression or super */ null && ({
|
|
65670
65696
|
__extends,
|
|
65671
65697
|
__assign,
|
|
65672
65698
|
__rest,
|
|
@@ -65699,7 +65725,7 @@ function __rewriteRelativeImportExtension(path, preserveJsx) {
|
|
|
65699
65725
|
__addDisposableResource,
|
|
65700
65726
|
__disposeResources,
|
|
65701
65727
|
__rewriteRelativeImportExtension,
|
|
65702
|
-
});
|
|
65728
|
+
})));
|
|
65703
65729
|
|
|
65704
65730
|
|
|
65705
65731
|
/***/ }
|