pdfkit 0.12.3 → 0.13.0
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 +8 -0
- package/README.md +1 -1
- package/js/pdfkit.es5.js +264 -123
- package/js/pdfkit.es5.js.map +1 -1
- package/js/pdfkit.esnext.js +159 -42
- package/js/pdfkit.esnext.js.map +1 -1
- package/js/pdfkit.js +157 -40
- package/js/pdfkit.js.map +1 -1
- package/js/pdfkit.standalone.js +1914 -615
- package/package.json +1 -1
- package/js/font/data/Courier-Bold.afm +0 -342
- package/js/font/data/Courier-BoldOblique.afm +0 -342
- package/js/font/data/Courier-Oblique.afm +0 -342
- package/js/font/data/Courier.afm +0 -342
- package/js/font/data/Helvetica-Bold.afm +0 -2827
- package/js/font/data/Helvetica-BoldOblique.afm +0 -2827
- package/js/font/data/Helvetica-Oblique.afm +0 -3051
- package/js/font/data/Helvetica.afm +0 -3051
- package/js/font/data/Symbol.afm +0 -213
- package/js/font/data/Times-Bold.afm +0 -2588
- package/js/font/data/Times-BoldItalic.afm +0 -2384
- package/js/font/data/Times-Italic.afm +0 -2667
- package/js/font/data/Times-Roman.afm +0 -2419
- package/js/font/data/ZapfDingbats.afm +0 -225
- package/js/pdfkit.standalone.orig.js +0 -68494
package/js/pdfkit.standalone.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
(function(f){if(typeof exports==="object"&&typeof module!=="undefined"){module.exports=f()}else if(typeof define==="function"&&define.amd){define([],f)}else{var g;if(typeof window!=="undefined"){g=window}else if(typeof global!=="undefined"){g=global}else if(typeof self!=="undefined"){g=self}else{g=this}g.PDFDocument = f()}})(function(){var define,module,exports;return (function(){function r(e,n,t){function o(i,f){if(!n[i]){if(!e[i]){var c="function"==typeof require&&require;if(!f&&c)return c(i,!0);if(u)return u(i,!0);var a=new Error("Cannot find module '"+i+"'");throw a.code="MODULE_NOT_FOUND",a}var p=n[i]={exports:{}};e[i][0].call(p.exports,function(r){var n=e[i][1][r];return o(n||r)},p,p.exports,r,e,n,t)}return n[i].exports}for(var u="function"==typeof require&&require,i=0;i<t.length;i++)o(t[i]);return o}return r})()({1:[function(require,module,exports){
|
|
2
|
-
(function (Buffer){
|
|
2
|
+
(function (Buffer){(function (){
|
|
3
3
|
'use strict';
|
|
4
4
|
|
|
5
5
|
var stream = require('stream');
|
|
@@ -62,9 +62,7 @@ class PDFTree {
|
|
|
62
62
|
return out.join('\n');
|
|
63
63
|
}
|
|
64
64
|
|
|
65
|
-
_compareKeys()
|
|
66
|
-
/*a, b*/
|
|
67
|
-
{
|
|
65
|
+
_compareKeys() {
|
|
68
66
|
throw new Error('Must be implemented by subclasses');
|
|
69
67
|
}
|
|
70
68
|
|
|
@@ -72,9 +70,7 @@ class PDFTree {
|
|
|
72
70
|
throw new Error('Must be implemented by subclasses');
|
|
73
71
|
}
|
|
74
72
|
|
|
75
|
-
_dataForKey()
|
|
76
|
-
/*k*/
|
|
77
|
-
{
|
|
73
|
+
_dataForKey() {
|
|
78
74
|
throw new Error('Must be implemented by subclasses');
|
|
79
75
|
}
|
|
80
76
|
|
|
@@ -403,6 +399,11 @@ class PDFPage {
|
|
|
403
399
|
return data.Pattern != null ? data.Pattern : data.Pattern = {};
|
|
404
400
|
}
|
|
405
401
|
|
|
402
|
+
get colorSpaces() {
|
|
403
|
+
const data = this.resources.data;
|
|
404
|
+
return data.ColorSpace || (data.ColorSpace = {});
|
|
405
|
+
}
|
|
406
|
+
|
|
406
407
|
get annotations() {
|
|
407
408
|
const data = this.dictionary.data;
|
|
408
409
|
return data.Annots != null ? data.Annots : data.Annots = [];
|
|
@@ -1464,7 +1465,7 @@ class PDFGradient {
|
|
|
1464
1465
|
return pattern;
|
|
1465
1466
|
}
|
|
1466
1467
|
|
|
1467
|
-
apply(
|
|
1468
|
+
apply(stroke) {
|
|
1468
1469
|
// apply gradient transform to existing document ctm
|
|
1469
1470
|
const [m0, m1, m2, m3, m4, m5] = this.doc._ctm;
|
|
1470
1471
|
const [m11, m12, m21, m22, dx, dy] = this.transform;
|
|
@@ -1474,6 +1475,9 @@ class PDFGradient {
|
|
|
1474
1475
|
this.embed(m);
|
|
1475
1476
|
}
|
|
1476
1477
|
|
|
1478
|
+
this.doc._setColorSpace('Pattern', stroke);
|
|
1479
|
+
|
|
1480
|
+
const op = stroke ? 'SCN' : 'scn';
|
|
1477
1481
|
return this.doc.addContent(`/${this.id} ${op}`);
|
|
1478
1482
|
}
|
|
1479
1483
|
|
|
@@ -1538,24 +1542,119 @@ var Gradient = {
|
|
|
1538
1542
|
PDFRadialGradient
|
|
1539
1543
|
};
|
|
1540
1544
|
|
|
1545
|
+
/*
|
|
1546
|
+
PDF tiling pattern support. Uncolored only.
|
|
1547
|
+
*/
|
|
1548
|
+
const underlyingColorSpaces = ['DeviceCMYK', 'DeviceRGB'];
|
|
1549
|
+
|
|
1550
|
+
class PDFTilingPattern {
|
|
1551
|
+
constructor(doc, bBox, xStep, yStep, stream) {
|
|
1552
|
+
this.doc = doc;
|
|
1553
|
+
this.bBox = bBox;
|
|
1554
|
+
this.xStep = xStep;
|
|
1555
|
+
this.yStep = yStep;
|
|
1556
|
+
this.stream = stream;
|
|
1557
|
+
}
|
|
1558
|
+
|
|
1559
|
+
createPattern() {
|
|
1560
|
+
// no resources needed for our current usage
|
|
1561
|
+
// required entry
|
|
1562
|
+
const resources = this.doc.ref();
|
|
1563
|
+
resources.end(); // apply default transform matrix (flipped in the default doc._ctm)
|
|
1564
|
+
// see document.js & gradient.js
|
|
1565
|
+
|
|
1566
|
+
const [m0, m1, m2, m3, m4, m5] = this.doc._ctm;
|
|
1567
|
+
const [m11, m12, m21, m22, dx, dy] = [1, 0, 0, 1, 0, 0];
|
|
1568
|
+
const m = [m0 * m11 + m2 * m12, m1 * m11 + m3 * m12, m0 * m21 + m2 * m22, m1 * m21 + m3 * m22, m0 * dx + m2 * dy + m4, m1 * dx + m3 * dy + m5];
|
|
1569
|
+
const pattern = this.doc.ref({
|
|
1570
|
+
Type: 'Pattern',
|
|
1571
|
+
PatternType: 1,
|
|
1572
|
+
// tiling
|
|
1573
|
+
PaintType: 2,
|
|
1574
|
+
// 1-colored, 2-uncolored
|
|
1575
|
+
TilingType: 2,
|
|
1576
|
+
// 2-no distortion
|
|
1577
|
+
BBox: this.bBox,
|
|
1578
|
+
XStep: this.xStep,
|
|
1579
|
+
YStep: this.yStep,
|
|
1580
|
+
Matrix: m.map(v => +v.toFixed(5)),
|
|
1581
|
+
Resources: resources
|
|
1582
|
+
});
|
|
1583
|
+
pattern.end(this.stream);
|
|
1584
|
+
return pattern;
|
|
1585
|
+
}
|
|
1586
|
+
|
|
1587
|
+
embedPatternColorSpaces() {
|
|
1588
|
+
// map each pattern to an underlying color space
|
|
1589
|
+
// and embed on each page
|
|
1590
|
+
underlyingColorSpaces.forEach(csName => {
|
|
1591
|
+
const csId = this.getPatternColorSpaceId(csName);
|
|
1592
|
+
if (this.doc.page.colorSpaces[csId]) return;
|
|
1593
|
+
const cs = this.doc.ref(['Pattern', csName]);
|
|
1594
|
+
cs.end();
|
|
1595
|
+
this.doc.page.colorSpaces[csId] = cs;
|
|
1596
|
+
});
|
|
1597
|
+
}
|
|
1598
|
+
|
|
1599
|
+
getPatternColorSpaceId(underlyingColorspace) {
|
|
1600
|
+
return `CsP${underlyingColorspace}`;
|
|
1601
|
+
}
|
|
1602
|
+
|
|
1603
|
+
embed() {
|
|
1604
|
+
if (!this.id) {
|
|
1605
|
+
this.doc._patternCount = this.doc._patternCount + 1;
|
|
1606
|
+
this.id = 'P' + this.doc._patternCount;
|
|
1607
|
+
this.pattern = this.createPattern();
|
|
1608
|
+
} // patterns are embedded in each page
|
|
1609
|
+
|
|
1610
|
+
|
|
1611
|
+
if (!this.doc.page.patterns[this.id]) {
|
|
1612
|
+
this.doc.page.patterns[this.id] = this.pattern;
|
|
1613
|
+
}
|
|
1614
|
+
}
|
|
1615
|
+
|
|
1616
|
+
apply(stroke, patternColor) {
|
|
1617
|
+
// do any embedding/creating that might be needed
|
|
1618
|
+
this.embedPatternColorSpaces();
|
|
1619
|
+
this.embed();
|
|
1620
|
+
|
|
1621
|
+
const normalizedColor = this.doc._normalizeColor(patternColor);
|
|
1622
|
+
|
|
1623
|
+
if (!normalizedColor) throw Error(`invalid pattern color. (value: ${patternColor})`); // select one of the pattern color spaces
|
|
1624
|
+
|
|
1625
|
+
const csId = this.getPatternColorSpaceId(this.doc._getColorSpace(normalizedColor));
|
|
1626
|
+
|
|
1627
|
+
this.doc._setColorSpace(csId, stroke); // stroke/fill using the pattern and color (in the above underlying color space)
|
|
1628
|
+
|
|
1629
|
+
|
|
1630
|
+
const op = stroke ? 'SCN' : 'scn';
|
|
1631
|
+
return this.doc.addContent(`${normalizedColor.join(' ')} /${this.id} ${op}`);
|
|
1632
|
+
}
|
|
1633
|
+
|
|
1634
|
+
}
|
|
1635
|
+
|
|
1636
|
+
var pattern = {
|
|
1637
|
+
PDFTilingPattern
|
|
1638
|
+
};
|
|
1639
|
+
|
|
1541
1640
|
const {
|
|
1542
1641
|
PDFGradient: PDFGradient$1,
|
|
1543
1642
|
PDFLinearGradient: PDFLinearGradient$1,
|
|
1544
1643
|
PDFRadialGradient: PDFRadialGradient$1
|
|
1545
1644
|
} = Gradient;
|
|
1645
|
+
const {
|
|
1646
|
+
PDFTilingPattern: PDFTilingPattern$1
|
|
1647
|
+
} = pattern;
|
|
1546
1648
|
var ColorMixin = {
|
|
1547
1649
|
initColor() {
|
|
1548
1650
|
// The opacity dictionaries
|
|
1549
1651
|
this._opacityRegistry = {};
|
|
1550
1652
|
this._opacityCount = 0;
|
|
1653
|
+
this._patternCount = 0;
|
|
1551
1654
|
return this._gradCount = 0;
|
|
1552
1655
|
},
|
|
1553
1656
|
|
|
1554
1657
|
_normalizeColor(color) {
|
|
1555
|
-
if (color instanceof PDFGradient$1) {
|
|
1556
|
-
return color;
|
|
1557
|
-
}
|
|
1558
|
-
|
|
1559
1658
|
if (typeof color === 'string') {
|
|
1560
1659
|
if (color.charAt(0) === '#') {
|
|
1561
1660
|
if (color.length === 4) {
|
|
@@ -1584,6 +1683,19 @@ var ColorMixin = {
|
|
|
1584
1683
|
},
|
|
1585
1684
|
|
|
1586
1685
|
_setColor(color, stroke) {
|
|
1686
|
+
if (color instanceof PDFGradient$1) {
|
|
1687
|
+
color.apply(stroke);
|
|
1688
|
+
return true; // see if tiling pattern, decode & apply it it
|
|
1689
|
+
} else if (Array.isArray(color) && color[0] instanceof PDFTilingPattern$1) {
|
|
1690
|
+
color[0].apply(stroke, color[1]);
|
|
1691
|
+
return true;
|
|
1692
|
+
} // any other case should be a normal color and not a pattern
|
|
1693
|
+
|
|
1694
|
+
|
|
1695
|
+
return this._setColorCore(color, stroke);
|
|
1696
|
+
},
|
|
1697
|
+
|
|
1698
|
+
_setColorCore(color, stroke) {
|
|
1587
1699
|
color = this._normalizeColor(color);
|
|
1588
1700
|
|
|
1589
1701
|
if (!color) {
|
|
@@ -1592,19 +1704,12 @@ var ColorMixin = {
|
|
|
1592
1704
|
|
|
1593
1705
|
const op = stroke ? 'SCN' : 'scn';
|
|
1594
1706
|
|
|
1595
|
-
|
|
1596
|
-
this._setColorSpace('Pattern', stroke);
|
|
1597
|
-
|
|
1598
|
-
color.apply(op);
|
|
1599
|
-
} else {
|
|
1600
|
-
const space = color.length === 4 ? 'DeviceCMYK' : 'DeviceRGB';
|
|
1601
|
-
|
|
1602
|
-
this._setColorSpace(space, stroke);
|
|
1707
|
+
const space = this._getColorSpace(color);
|
|
1603
1708
|
|
|
1604
|
-
|
|
1605
|
-
this.addContent(`${color} ${op}`);
|
|
1606
|
-
}
|
|
1709
|
+
this._setColorSpace(space, stroke);
|
|
1607
1710
|
|
|
1711
|
+
color = color.join(' ');
|
|
1712
|
+
this.addContent(`${color} ${op}`);
|
|
1608
1713
|
return true;
|
|
1609
1714
|
},
|
|
1610
1715
|
|
|
@@ -1613,6 +1718,10 @@ var ColorMixin = {
|
|
|
1613
1718
|
return this.addContent(`/${space} ${op}`);
|
|
1614
1719
|
},
|
|
1615
1720
|
|
|
1721
|
+
_getColorSpace(color) {
|
|
1722
|
+
return color.length === 4 ? 'DeviceCMYK' : 'DeviceRGB';
|
|
1723
|
+
},
|
|
1724
|
+
|
|
1616
1725
|
fillColor(color, opacity) {
|
|
1617
1726
|
const set = this._setColor(color, false);
|
|
1618
1727
|
|
|
@@ -1703,6 +1812,10 @@ var ColorMixin = {
|
|
|
1703
1812
|
|
|
1704
1813
|
radialGradient(x1, y1, r1, x2, y2, r2) {
|
|
1705
1814
|
return new PDFRadialGradient$1(this, x1, y1, r1, x2, y2, r2);
|
|
1815
|
+
},
|
|
1816
|
+
|
|
1817
|
+
pattern(bbox, xStep, yStep, stream) {
|
|
1818
|
+
return new PDFTilingPattern$1(this, bbox, xStep, yStep, stream);
|
|
1706
1819
|
}
|
|
1707
1820
|
|
|
1708
1821
|
};
|
|
@@ -4921,29 +5034,18 @@ var OutlineMixin = {
|
|
|
4921
5034
|
|
|
4922
5035
|
};
|
|
4923
5036
|
|
|
4924
|
-
function _defineProperty(obj, key, value) {
|
|
4925
|
-
if (key in obj) {
|
|
4926
|
-
Object.defineProperty(obj, key, {
|
|
4927
|
-
value: value,
|
|
4928
|
-
enumerable: true,
|
|
4929
|
-
configurable: true,
|
|
4930
|
-
writable: true
|
|
4931
|
-
});
|
|
4932
|
-
} else {
|
|
4933
|
-
obj[key] = value;
|
|
4934
|
-
}
|
|
4935
|
-
|
|
4936
|
-
return obj;
|
|
4937
|
-
}
|
|
4938
|
-
|
|
4939
5037
|
function ownKeys(object, enumerableOnly) {
|
|
4940
5038
|
var keys = Object.keys(object);
|
|
4941
5039
|
|
|
4942
5040
|
if (Object.getOwnPropertySymbols) {
|
|
4943
5041
|
var symbols = Object.getOwnPropertySymbols(object);
|
|
4944
|
-
|
|
4945
|
-
|
|
4946
|
-
|
|
5042
|
+
|
|
5043
|
+
if (enumerableOnly) {
|
|
5044
|
+
symbols = symbols.filter(function (sym) {
|
|
5045
|
+
return Object.getOwnPropertyDescriptor(object, sym).enumerable;
|
|
5046
|
+
});
|
|
5047
|
+
}
|
|
5048
|
+
|
|
4947
5049
|
keys.push.apply(keys, symbols);
|
|
4948
5050
|
}
|
|
4949
5051
|
|
|
@@ -4970,6 +5072,21 @@ function _objectSpread2(target) {
|
|
|
4970
5072
|
return target;
|
|
4971
5073
|
}
|
|
4972
5074
|
|
|
5075
|
+
function _defineProperty(obj, key, value) {
|
|
5076
|
+
if (key in obj) {
|
|
5077
|
+
Object.defineProperty(obj, key, {
|
|
5078
|
+
value: value,
|
|
5079
|
+
enumerable: true,
|
|
5080
|
+
configurable: true,
|
|
5081
|
+
writable: true
|
|
5082
|
+
});
|
|
5083
|
+
} else {
|
|
5084
|
+
obj[key] = value;
|
|
5085
|
+
}
|
|
5086
|
+
|
|
5087
|
+
return obj;
|
|
5088
|
+
}
|
|
5089
|
+
|
|
4973
5090
|
/*
|
|
4974
5091
|
PDFStructureContent - a reference to a marked structure content
|
|
4975
5092
|
By Ben Schmidt
|
|
@@ -6326,11 +6443,13 @@ PDFDocument.LineWrapper = LineWrapper;
|
|
|
6326
6443
|
module.exports = PDFDocument;
|
|
6327
6444
|
|
|
6328
6445
|
|
|
6329
|
-
}).call(this,require("buffer").Buffer)
|
|
6330
|
-
},{"buffer":55,"crypto-js":
|
|
6331
|
-
(function (global){
|
|
6446
|
+
}).call(this)}).call(this,require("buffer").Buffer)
|
|
6447
|
+
},{"buffer":55,"crypto-js":202,"events":231,"fontkit":232,"fs":54,"linebreak":249,"png-js":259,"stream":297,"zlib":42}],2:[function(require,module,exports){
|
|
6448
|
+
(function (global){(function (){
|
|
6332
6449
|
'use strict';
|
|
6333
6450
|
|
|
6451
|
+
var objectAssign = require('object-assign');
|
|
6452
|
+
|
|
6334
6453
|
// compare and isBuffer taken from https://github.com/feross/buffer/blob/680e9e5e488f22aac27599a57dc844a6315928dd/index.js
|
|
6335
6454
|
// original notice:
|
|
6336
6455
|
|
|
@@ -6372,6 +6491,8 @@ function isBuffer(b) {
|
|
|
6372
6491
|
}
|
|
6373
6492
|
|
|
6374
6493
|
// based on node assert, original notice:
|
|
6494
|
+
// NB: The URL to the CommonJS spec is kept just for tradition.
|
|
6495
|
+
// node-assert has evolved a lot since then, both in API and behavior.
|
|
6375
6496
|
|
|
6376
6497
|
// http://wiki.commonjs.org/wiki/Unit_Testing/1.0
|
|
6377
6498
|
//
|
|
@@ -6812,6 +6933,18 @@ assert.doesNotThrow = function(block, /*optional*/error, /*optional*/message) {
|
|
|
6812
6933
|
|
|
6813
6934
|
assert.ifError = function(err) { if (err) throw err; };
|
|
6814
6935
|
|
|
6936
|
+
// Expose a strict only variant of assert
|
|
6937
|
+
function strict(value, message) {
|
|
6938
|
+
if (!value) fail(value, true, message, '==', strict);
|
|
6939
|
+
}
|
|
6940
|
+
assert.strict = objectAssign(strict, assert, {
|
|
6941
|
+
equal: assert.strictEqual,
|
|
6942
|
+
deepEqual: assert.deepStrictEqual,
|
|
6943
|
+
notEqual: assert.notStrictEqual,
|
|
6944
|
+
notDeepEqual: assert.notDeepStrictEqual
|
|
6945
|
+
});
|
|
6946
|
+
assert.strict.strict = assert.strict;
|
|
6947
|
+
|
|
6815
6948
|
var objectKeys = Object.keys || function (obj) {
|
|
6816
6949
|
var keys = [];
|
|
6817
6950
|
for (var key in obj) {
|
|
@@ -6820,8 +6953,8 @@ var objectKeys = Object.keys || function (obj) {
|
|
|
6820
6953
|
return keys;
|
|
6821
6954
|
};
|
|
6822
6955
|
|
|
6823
|
-
}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
|
6824
|
-
},{"util/":5}],3:[function(require,module,exports){
|
|
6956
|
+
}).call(this)}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
|
6957
|
+
},{"object-assign":251,"util/":5}],3:[function(require,module,exports){
|
|
6825
6958
|
if (typeof Object.create === 'function') {
|
|
6826
6959
|
// implementation from standard node.js 'util' module
|
|
6827
6960
|
module.exports = function inherits(ctor, superCtor) {
|
|
@@ -6854,7 +6987,7 @@ module.exports = function isBuffer(arg) {
|
|
|
6854
6987
|
&& typeof arg.readUInt8 === 'function';
|
|
6855
6988
|
}
|
|
6856
6989
|
},{}],5:[function(require,module,exports){
|
|
6857
|
-
(function (process,global){
|
|
6990
|
+
(function (process,global){(function (){
|
|
6858
6991
|
// Copyright Joyent, Inc. and other Node contributors.
|
|
6859
6992
|
//
|
|
6860
6993
|
// Permission is hereby granted, free of charge, to any person obtaining a
|
|
@@ -7442,42 +7575,42 @@ function hasOwnProperty(obj, prop) {
|
|
|
7442
7575
|
return Object.prototype.hasOwnProperty.call(obj, prop);
|
|
7443
7576
|
}
|
|
7444
7577
|
|
|
7445
|
-
}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
|
7446
|
-
},{"./support/isBuffer":4,"_process":
|
|
7578
|
+
}).call(this)}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
|
7579
|
+
},{"./support/isBuffer":4,"_process":261,"inherits":3}],6:[function(require,module,exports){
|
|
7447
7580
|
module.exports = { "default": require("core-js/library/fn/array/from"), __esModule: true };
|
|
7448
|
-
},{"core-js/library/fn/array/from":
|
|
7581
|
+
},{"core-js/library/fn/array/from":60}],7:[function(require,module,exports){
|
|
7449
7582
|
module.exports = { "default": require("core-js/library/fn/get-iterator"), __esModule: true };
|
|
7450
|
-
},{"core-js/library/fn/get-iterator":
|
|
7583
|
+
},{"core-js/library/fn/get-iterator":61}],8:[function(require,module,exports){
|
|
7451
7584
|
module.exports = { "default": require("core-js/library/fn/map"), __esModule: true };
|
|
7452
|
-
},{"core-js/library/fn/map":
|
|
7585
|
+
},{"core-js/library/fn/map":62}],9:[function(require,module,exports){
|
|
7453
7586
|
module.exports = { "default": require("core-js/library/fn/number/epsilon"), __esModule: true };
|
|
7454
|
-
},{"core-js/library/fn/number/epsilon":
|
|
7587
|
+
},{"core-js/library/fn/number/epsilon":63}],10:[function(require,module,exports){
|
|
7455
7588
|
module.exports = { "default": require("core-js/library/fn/object/assign"), __esModule: true };
|
|
7456
|
-
},{"core-js/library/fn/object/assign":
|
|
7589
|
+
},{"core-js/library/fn/object/assign":64}],11:[function(require,module,exports){
|
|
7457
7590
|
module.exports = { "default": require("core-js/library/fn/object/create"), __esModule: true };
|
|
7458
|
-
},{"core-js/library/fn/object/create":
|
|
7591
|
+
},{"core-js/library/fn/object/create":65}],12:[function(require,module,exports){
|
|
7459
7592
|
module.exports = { "default": require("core-js/library/fn/object/define-properties"), __esModule: true };
|
|
7460
|
-
},{"core-js/library/fn/object/define-properties":
|
|
7593
|
+
},{"core-js/library/fn/object/define-properties":66}],13:[function(require,module,exports){
|
|
7461
7594
|
module.exports = { "default": require("core-js/library/fn/object/define-property"), __esModule: true };
|
|
7462
|
-
},{"core-js/library/fn/object/define-property":
|
|
7595
|
+
},{"core-js/library/fn/object/define-property":67}],14:[function(require,module,exports){
|
|
7463
7596
|
module.exports = { "default": require("core-js/library/fn/object/freeze"), __esModule: true };
|
|
7464
|
-
},{"core-js/library/fn/object/freeze":
|
|
7597
|
+
},{"core-js/library/fn/object/freeze":68}],15:[function(require,module,exports){
|
|
7465
7598
|
module.exports = { "default": require("core-js/library/fn/object/get-own-property-descriptor"), __esModule: true };
|
|
7466
|
-
},{"core-js/library/fn/object/get-own-property-descriptor":
|
|
7599
|
+
},{"core-js/library/fn/object/get-own-property-descriptor":69}],16:[function(require,module,exports){
|
|
7467
7600
|
module.exports = { "default": require("core-js/library/fn/object/keys"), __esModule: true };
|
|
7468
|
-
},{"core-js/library/fn/object/keys":
|
|
7601
|
+
},{"core-js/library/fn/object/keys":70}],17:[function(require,module,exports){
|
|
7469
7602
|
module.exports = { "default": require("core-js/library/fn/object/set-prototype-of"), __esModule: true };
|
|
7470
|
-
},{"core-js/library/fn/object/set-prototype-of":
|
|
7603
|
+
},{"core-js/library/fn/object/set-prototype-of":71}],18:[function(require,module,exports){
|
|
7471
7604
|
module.exports = { "default": require("core-js/library/fn/promise"), __esModule: true };
|
|
7472
|
-
},{"core-js/library/fn/promise":
|
|
7605
|
+
},{"core-js/library/fn/promise":72}],19:[function(require,module,exports){
|
|
7473
7606
|
module.exports = { "default": require("core-js/library/fn/set"), __esModule: true };
|
|
7474
|
-
},{"core-js/library/fn/set":
|
|
7607
|
+
},{"core-js/library/fn/set":73}],20:[function(require,module,exports){
|
|
7475
7608
|
module.exports = { "default": require("core-js/library/fn/string/from-code-point"), __esModule: true };
|
|
7476
|
-
},{"core-js/library/fn/string/from-code-point":
|
|
7609
|
+
},{"core-js/library/fn/string/from-code-point":74}],21:[function(require,module,exports){
|
|
7477
7610
|
module.exports = { "default": require("core-js/library/fn/symbol"), __esModule: true };
|
|
7478
|
-
},{"core-js/library/fn/symbol":
|
|
7611
|
+
},{"core-js/library/fn/symbol":75}],22:[function(require,module,exports){
|
|
7479
7612
|
module.exports = { "default": require("core-js/library/fn/symbol/iterator"), __esModule: true };
|
|
7480
|
-
},{"core-js/library/fn/symbol/iterator":
|
|
7613
|
+
},{"core-js/library/fn/symbol/iterator":76}],23:[function(require,module,exports){
|
|
7481
7614
|
"use strict";
|
|
7482
7615
|
|
|
7483
7616
|
exports.__esModule = true;
|
|
@@ -9596,7 +9729,7 @@ module.exports = require('./dec/decode').BrotliDecompressBuffer;
|
|
|
9596
9729
|
},{"./dec/decode":31}],40:[function(require,module,exports){
|
|
9597
9730
|
|
|
9598
9731
|
},{}],41:[function(require,module,exports){
|
|
9599
|
-
(function (process,Buffer){
|
|
9732
|
+
(function (process,Buffer){(function (){
|
|
9600
9733
|
'use strict';
|
|
9601
9734
|
/* eslint camelcase: "off" */
|
|
9602
9735
|
|
|
@@ -10006,9 +10139,9 @@ Zlib.prototype._reset = function () {
|
|
|
10006
10139
|
};
|
|
10007
10140
|
|
|
10008
10141
|
exports.Zlib = Zlib;
|
|
10009
|
-
}).call(this,require('_process'),require("buffer").Buffer)
|
|
10010
|
-
},{"_process":
|
|
10011
|
-
(function (process){
|
|
10142
|
+
}).call(this)}).call(this,require('_process'),require("buffer").Buffer)
|
|
10143
|
+
},{"_process":261,"assert":2,"buffer":55,"pako/lib/zlib/constants":45,"pako/lib/zlib/deflate.js":47,"pako/lib/zlib/inflate.js":49,"pako/lib/zlib/zstream":53}],42:[function(require,module,exports){
|
|
10144
|
+
(function (process){(function (){
|
|
10012
10145
|
'use strict';
|
|
10013
10146
|
|
|
10014
10147
|
var Buffer = require('buffer').Buffer;
|
|
@@ -10618,8 +10751,8 @@ util.inherits(Gunzip, Zlib);
|
|
|
10618
10751
|
util.inherits(DeflateRaw, Zlib);
|
|
10619
10752
|
util.inherits(InflateRaw, Zlib);
|
|
10620
10753
|
util.inherits(Unzip, Zlib);
|
|
10621
|
-
}).call(this,require('_process'))
|
|
10622
|
-
},{"./binding":41,"_process":
|
|
10754
|
+
}).call(this)}).call(this,require('_process'))
|
|
10755
|
+
},{"./binding":41,"_process":261,"assert":2,"buffer":55,"stream":297,"util":307}],43:[function(require,module,exports){
|
|
10623
10756
|
'use strict';
|
|
10624
10757
|
|
|
10625
10758
|
|
|
@@ -16346,6 +16479,7 @@ module.exports = ZStream;
|
|
|
16346
16479
|
},{}],54:[function(require,module,exports){
|
|
16347
16480
|
arguments[4][40][0].apply(exports,arguments)
|
|
16348
16481
|
},{"dup":40}],55:[function(require,module,exports){
|
|
16482
|
+
(function (Buffer){(function (){
|
|
16349
16483
|
/*!
|
|
16350
16484
|
* The buffer module from node.js, for the browser.
|
|
16351
16485
|
*
|
|
@@ -16358,6 +16492,10 @@ arguments[4][40][0].apply(exports,arguments)
|
|
|
16358
16492
|
|
|
16359
16493
|
var base64 = require('base64-js')
|
|
16360
16494
|
var ieee754 = require('ieee754')
|
|
16495
|
+
var customInspectSymbol =
|
|
16496
|
+
(typeof Symbol === 'function' && typeof Symbol['for'] === 'function') // eslint-disable-line dot-notation
|
|
16497
|
+
? Symbol['for']('nodejs.util.inspect.custom') // eslint-disable-line dot-notation
|
|
16498
|
+
: null
|
|
16361
16499
|
|
|
16362
16500
|
exports.Buffer = Buffer
|
|
16363
16501
|
exports.SlowBuffer = SlowBuffer
|
|
@@ -16394,7 +16532,9 @@ function typedArraySupport () {
|
|
|
16394
16532
|
// Can typed array instances can be augmented?
|
|
16395
16533
|
try {
|
|
16396
16534
|
var arr = new Uint8Array(1)
|
|
16397
|
-
|
|
16535
|
+
var proto = { foo: function () { return 42 } }
|
|
16536
|
+
Object.setPrototypeOf(proto, Uint8Array.prototype)
|
|
16537
|
+
Object.setPrototypeOf(arr, proto)
|
|
16398
16538
|
return arr.foo() === 42
|
|
16399
16539
|
} catch (e) {
|
|
16400
16540
|
return false
|
|
@@ -16423,7 +16563,7 @@ function createBuffer (length) {
|
|
|
16423
16563
|
}
|
|
16424
16564
|
// Return an augmented `Uint8Array` instance
|
|
16425
16565
|
var buf = new Uint8Array(length)
|
|
16426
|
-
buf
|
|
16566
|
+
Object.setPrototypeOf(buf, Buffer.prototype)
|
|
16427
16567
|
return buf
|
|
16428
16568
|
}
|
|
16429
16569
|
|
|
@@ -16450,17 +16590,6 @@ function Buffer (arg, encodingOrOffset, length) {
|
|
|
16450
16590
|
return from(arg, encodingOrOffset, length)
|
|
16451
16591
|
}
|
|
16452
16592
|
|
|
16453
|
-
// Fix subarray() in ES2016. See: https://github.com/feross/buffer/pull/97
|
|
16454
|
-
if (typeof Symbol !== 'undefined' && Symbol.species != null &&
|
|
16455
|
-
Buffer[Symbol.species] === Buffer) {
|
|
16456
|
-
Object.defineProperty(Buffer, Symbol.species, {
|
|
16457
|
-
value: null,
|
|
16458
|
-
configurable: true,
|
|
16459
|
-
enumerable: false,
|
|
16460
|
-
writable: false
|
|
16461
|
-
})
|
|
16462
|
-
}
|
|
16463
|
-
|
|
16464
16593
|
Buffer.poolSize = 8192 // not used by this implementation
|
|
16465
16594
|
|
|
16466
16595
|
function from (value, encodingOrOffset, length) {
|
|
@@ -16469,11 +16598,11 @@ function from (value, encodingOrOffset, length) {
|
|
|
16469
16598
|
}
|
|
16470
16599
|
|
|
16471
16600
|
if (ArrayBuffer.isView(value)) {
|
|
16472
|
-
return
|
|
16601
|
+
return fromArrayView(value)
|
|
16473
16602
|
}
|
|
16474
16603
|
|
|
16475
16604
|
if (value == null) {
|
|
16476
|
-
throw TypeError(
|
|
16605
|
+
throw new TypeError(
|
|
16477
16606
|
'The first argument must be one of type string, Buffer, ArrayBuffer, Array, ' +
|
|
16478
16607
|
'or Array-like Object. Received type ' + (typeof value)
|
|
16479
16608
|
)
|
|
@@ -16484,6 +16613,12 @@ function from (value, encodingOrOffset, length) {
|
|
|
16484
16613
|
return fromArrayBuffer(value, encodingOrOffset, length)
|
|
16485
16614
|
}
|
|
16486
16615
|
|
|
16616
|
+
if (typeof SharedArrayBuffer !== 'undefined' &&
|
|
16617
|
+
(isInstance(value, SharedArrayBuffer) ||
|
|
16618
|
+
(value && isInstance(value.buffer, SharedArrayBuffer)))) {
|
|
16619
|
+
return fromArrayBuffer(value, encodingOrOffset, length)
|
|
16620
|
+
}
|
|
16621
|
+
|
|
16487
16622
|
if (typeof value === 'number') {
|
|
16488
16623
|
throw new TypeError(
|
|
16489
16624
|
'The "value" argument must not be of type number. Received type number'
|
|
@@ -16525,8 +16660,8 @@ Buffer.from = function (value, encodingOrOffset, length) {
|
|
|
16525
16660
|
|
|
16526
16661
|
// Note: Change prototype *after* Buffer.from is defined to workaround Chrome bug:
|
|
16527
16662
|
// https://github.com/feross/buffer/pull/148
|
|
16528
|
-
Buffer.prototype
|
|
16529
|
-
Buffer
|
|
16663
|
+
Object.setPrototypeOf(Buffer.prototype, Uint8Array.prototype)
|
|
16664
|
+
Object.setPrototypeOf(Buffer, Uint8Array)
|
|
16530
16665
|
|
|
16531
16666
|
function assertSize (size) {
|
|
16532
16667
|
if (typeof size !== 'number') {
|
|
@@ -16544,7 +16679,7 @@ function alloc (size, fill, encoding) {
|
|
|
16544
16679
|
if (fill !== undefined) {
|
|
16545
16680
|
// Only pay attention to encoding if it's a string. This
|
|
16546
16681
|
// prevents accidentally sending in a number that would
|
|
16547
|
-
// be
|
|
16682
|
+
// be interpreted as a start offset.
|
|
16548
16683
|
return typeof encoding === 'string'
|
|
16549
16684
|
? createBuffer(size).fill(fill, encoding)
|
|
16550
16685
|
: createBuffer(size).fill(fill)
|
|
@@ -16611,6 +16746,14 @@ function fromArrayLike (array) {
|
|
|
16611
16746
|
return buf
|
|
16612
16747
|
}
|
|
16613
16748
|
|
|
16749
|
+
function fromArrayView (arrayView) {
|
|
16750
|
+
if (isInstance(arrayView, Uint8Array)) {
|
|
16751
|
+
var copy = new Uint8Array(arrayView)
|
|
16752
|
+
return fromArrayBuffer(copy.buffer, copy.byteOffset, copy.byteLength)
|
|
16753
|
+
}
|
|
16754
|
+
return fromArrayLike(arrayView)
|
|
16755
|
+
}
|
|
16756
|
+
|
|
16614
16757
|
function fromArrayBuffer (array, byteOffset, length) {
|
|
16615
16758
|
if (byteOffset < 0 || array.byteLength < byteOffset) {
|
|
16616
16759
|
throw new RangeError('"offset" is outside of buffer bounds')
|
|
@@ -16630,7 +16773,8 @@ function fromArrayBuffer (array, byteOffset, length) {
|
|
|
16630
16773
|
}
|
|
16631
16774
|
|
|
16632
16775
|
// Return an augmented `Uint8Array` instance
|
|
16633
|
-
buf
|
|
16776
|
+
Object.setPrototypeOf(buf, Buffer.prototype)
|
|
16777
|
+
|
|
16634
16778
|
return buf
|
|
16635
16779
|
}
|
|
16636
16780
|
|
|
@@ -16749,12 +16893,20 @@ Buffer.concat = function concat (list, length) {
|
|
|
16749
16893
|
for (i = 0; i < list.length; ++i) {
|
|
16750
16894
|
var buf = list[i]
|
|
16751
16895
|
if (isInstance(buf, Uint8Array)) {
|
|
16752
|
-
buf
|
|
16753
|
-
|
|
16754
|
-
|
|
16896
|
+
if (pos + buf.length > buffer.length) {
|
|
16897
|
+
Buffer.from(buf).copy(buffer, pos)
|
|
16898
|
+
} else {
|
|
16899
|
+
Uint8Array.prototype.set.call(
|
|
16900
|
+
buffer,
|
|
16901
|
+
buf,
|
|
16902
|
+
pos
|
|
16903
|
+
)
|
|
16904
|
+
}
|
|
16905
|
+
} else if (!Buffer.isBuffer(buf)) {
|
|
16755
16906
|
throw new TypeError('"list" argument must be an Array of Buffers')
|
|
16907
|
+
} else {
|
|
16908
|
+
buf.copy(buffer, pos)
|
|
16756
16909
|
}
|
|
16757
|
-
buf.copy(buffer, pos)
|
|
16758
16910
|
pos += buf.length
|
|
16759
16911
|
}
|
|
16760
16912
|
return buffer
|
|
@@ -16836,7 +16988,7 @@ function slowToString (encoding, start, end) {
|
|
|
16836
16988
|
return ''
|
|
16837
16989
|
}
|
|
16838
16990
|
|
|
16839
|
-
// Force
|
|
16991
|
+
// Force coercion to uint32. This will also coerce falsey/NaN values to 0.
|
|
16840
16992
|
end >>>= 0
|
|
16841
16993
|
start >>>= 0
|
|
16842
16994
|
|
|
@@ -16952,6 +17104,9 @@ Buffer.prototype.inspect = function inspect () {
|
|
|
16952
17104
|
if (this.length > max) str += ' ... '
|
|
16953
17105
|
return '<Buffer ' + str + '>'
|
|
16954
17106
|
}
|
|
17107
|
+
if (customInspectSymbol) {
|
|
17108
|
+
Buffer.prototype[customInspectSymbol] = Buffer.prototype.inspect
|
|
17109
|
+
}
|
|
16955
17110
|
|
|
16956
17111
|
Buffer.prototype.compare = function compare (target, start, end, thisStart, thisEnd) {
|
|
16957
17112
|
if (isInstance(target, Uint8Array)) {
|
|
@@ -17077,7 +17232,7 @@ function bidirectionalIndexOf (buffer, val, byteOffset, encoding, dir) {
|
|
|
17077
17232
|
return Uint8Array.prototype.lastIndexOf.call(buffer, val, byteOffset)
|
|
17078
17233
|
}
|
|
17079
17234
|
}
|
|
17080
|
-
return arrayIndexOf(buffer, [
|
|
17235
|
+
return arrayIndexOf(buffer, [val], byteOffset, encoding, dir)
|
|
17081
17236
|
}
|
|
17082
17237
|
|
|
17083
17238
|
throw new TypeError('val must be string, number or Buffer')
|
|
@@ -17184,10 +17339,6 @@ function asciiWrite (buf, string, offset, length) {
|
|
|
17184
17339
|
return blitBuffer(asciiToBytes(string), buf, offset, length)
|
|
17185
17340
|
}
|
|
17186
17341
|
|
|
17187
|
-
function latin1Write (buf, string, offset, length) {
|
|
17188
|
-
return asciiWrite(buf, string, offset, length)
|
|
17189
|
-
}
|
|
17190
|
-
|
|
17191
17342
|
function base64Write (buf, string, offset, length) {
|
|
17192
17343
|
return blitBuffer(base64ToBytes(string), buf, offset, length)
|
|
17193
17344
|
}
|
|
@@ -17243,11 +17394,9 @@ Buffer.prototype.write = function write (string, offset, length, encoding) {
|
|
|
17243
17394
|
return utf8Write(this, string, offset, length)
|
|
17244
17395
|
|
|
17245
17396
|
case 'ascii':
|
|
17246
|
-
return asciiWrite(this, string, offset, length)
|
|
17247
|
-
|
|
17248
17397
|
case 'latin1':
|
|
17249
17398
|
case 'binary':
|
|
17250
|
-
return
|
|
17399
|
+
return asciiWrite(this, string, offset, length)
|
|
17251
17400
|
|
|
17252
17401
|
case 'base64':
|
|
17253
17402
|
// Warning: maxLength not taken into account in base64Write
|
|
@@ -17290,10 +17439,13 @@ function utf8Slice (buf, start, end) {
|
|
|
17290
17439
|
while (i < end) {
|
|
17291
17440
|
var firstByte = buf[i]
|
|
17292
17441
|
var codePoint = null
|
|
17293
|
-
var bytesPerSequence = (firstByte > 0xEF)
|
|
17294
|
-
|
|
17295
|
-
|
|
17296
|
-
|
|
17442
|
+
var bytesPerSequence = (firstByte > 0xEF)
|
|
17443
|
+
? 4
|
|
17444
|
+
: (firstByte > 0xDF)
|
|
17445
|
+
? 3
|
|
17446
|
+
: (firstByte > 0xBF)
|
|
17447
|
+
? 2
|
|
17448
|
+
: 1
|
|
17297
17449
|
|
|
17298
17450
|
if (i + bytesPerSequence <= end) {
|
|
17299
17451
|
var secondByte, thirdByte, fourthByte, tempCodePoint
|
|
@@ -17406,7 +17558,7 @@ function hexSlice (buf, start, end) {
|
|
|
17406
17558
|
|
|
17407
17559
|
var out = ''
|
|
17408
17560
|
for (var i = start; i < end; ++i) {
|
|
17409
|
-
out +=
|
|
17561
|
+
out += hexSliceLookupTable[buf[i]]
|
|
17410
17562
|
}
|
|
17411
17563
|
return out
|
|
17412
17564
|
}
|
|
@@ -17414,7 +17566,8 @@ function hexSlice (buf, start, end) {
|
|
|
17414
17566
|
function utf16leSlice (buf, start, end) {
|
|
17415
17567
|
var bytes = buf.slice(start, end)
|
|
17416
17568
|
var res = ''
|
|
17417
|
-
|
|
17569
|
+
// If bytes.length is odd, the last 8 bits must be ignored (same as node.js)
|
|
17570
|
+
for (var i = 0; i < bytes.length - 1; i += 2) {
|
|
17418
17571
|
res += String.fromCharCode(bytes[i] + (bytes[i + 1] * 256))
|
|
17419
17572
|
}
|
|
17420
17573
|
return res
|
|
@@ -17443,7 +17596,8 @@ Buffer.prototype.slice = function slice (start, end) {
|
|
|
17443
17596
|
|
|
17444
17597
|
var newBuf = this.subarray(start, end)
|
|
17445
17598
|
// Return an augmented `Uint8Array` instance
|
|
17446
|
-
newBuf
|
|
17599
|
+
Object.setPrototypeOf(newBuf, Buffer.prototype)
|
|
17600
|
+
|
|
17447
17601
|
return newBuf
|
|
17448
17602
|
}
|
|
17449
17603
|
|
|
@@ -17455,6 +17609,7 @@ function checkOffset (offset, ext, length) {
|
|
|
17455
17609
|
if (offset + ext > length) throw new RangeError('Trying to access beyond buffer length')
|
|
17456
17610
|
}
|
|
17457
17611
|
|
|
17612
|
+
Buffer.prototype.readUintLE =
|
|
17458
17613
|
Buffer.prototype.readUIntLE = function readUIntLE (offset, byteLength, noAssert) {
|
|
17459
17614
|
offset = offset >>> 0
|
|
17460
17615
|
byteLength = byteLength >>> 0
|
|
@@ -17470,6 +17625,7 @@ Buffer.prototype.readUIntLE = function readUIntLE (offset, byteLength, noAssert)
|
|
|
17470
17625
|
return val
|
|
17471
17626
|
}
|
|
17472
17627
|
|
|
17628
|
+
Buffer.prototype.readUintBE =
|
|
17473
17629
|
Buffer.prototype.readUIntBE = function readUIntBE (offset, byteLength, noAssert) {
|
|
17474
17630
|
offset = offset >>> 0
|
|
17475
17631
|
byteLength = byteLength >>> 0
|
|
@@ -17486,24 +17642,28 @@ Buffer.prototype.readUIntBE = function readUIntBE (offset, byteLength, noAssert)
|
|
|
17486
17642
|
return val
|
|
17487
17643
|
}
|
|
17488
17644
|
|
|
17645
|
+
Buffer.prototype.readUint8 =
|
|
17489
17646
|
Buffer.prototype.readUInt8 = function readUInt8 (offset, noAssert) {
|
|
17490
17647
|
offset = offset >>> 0
|
|
17491
17648
|
if (!noAssert) checkOffset(offset, 1, this.length)
|
|
17492
17649
|
return this[offset]
|
|
17493
17650
|
}
|
|
17494
17651
|
|
|
17652
|
+
Buffer.prototype.readUint16LE =
|
|
17495
17653
|
Buffer.prototype.readUInt16LE = function readUInt16LE (offset, noAssert) {
|
|
17496
17654
|
offset = offset >>> 0
|
|
17497
17655
|
if (!noAssert) checkOffset(offset, 2, this.length)
|
|
17498
17656
|
return this[offset] | (this[offset + 1] << 8)
|
|
17499
17657
|
}
|
|
17500
17658
|
|
|
17659
|
+
Buffer.prototype.readUint16BE =
|
|
17501
17660
|
Buffer.prototype.readUInt16BE = function readUInt16BE (offset, noAssert) {
|
|
17502
17661
|
offset = offset >>> 0
|
|
17503
17662
|
if (!noAssert) checkOffset(offset, 2, this.length)
|
|
17504
17663
|
return (this[offset] << 8) | this[offset + 1]
|
|
17505
17664
|
}
|
|
17506
17665
|
|
|
17666
|
+
Buffer.prototype.readUint32LE =
|
|
17507
17667
|
Buffer.prototype.readUInt32LE = function readUInt32LE (offset, noAssert) {
|
|
17508
17668
|
offset = offset >>> 0
|
|
17509
17669
|
if (!noAssert) checkOffset(offset, 4, this.length)
|
|
@@ -17514,6 +17674,7 @@ Buffer.prototype.readUInt32LE = function readUInt32LE (offset, noAssert) {
|
|
|
17514
17674
|
(this[offset + 3] * 0x1000000)
|
|
17515
17675
|
}
|
|
17516
17676
|
|
|
17677
|
+
Buffer.prototype.readUint32BE =
|
|
17517
17678
|
Buffer.prototype.readUInt32BE = function readUInt32BE (offset, noAssert) {
|
|
17518
17679
|
offset = offset >>> 0
|
|
17519
17680
|
if (!noAssert) checkOffset(offset, 4, this.length)
|
|
@@ -17631,6 +17792,7 @@ function checkInt (buf, value, offset, ext, max, min) {
|
|
|
17631
17792
|
if (offset + ext > buf.length) throw new RangeError('Index out of range')
|
|
17632
17793
|
}
|
|
17633
17794
|
|
|
17795
|
+
Buffer.prototype.writeUintLE =
|
|
17634
17796
|
Buffer.prototype.writeUIntLE = function writeUIntLE (value, offset, byteLength, noAssert) {
|
|
17635
17797
|
value = +value
|
|
17636
17798
|
offset = offset >>> 0
|
|
@@ -17650,6 +17812,7 @@ Buffer.prototype.writeUIntLE = function writeUIntLE (value, offset, byteLength,
|
|
|
17650
17812
|
return offset + byteLength
|
|
17651
17813
|
}
|
|
17652
17814
|
|
|
17815
|
+
Buffer.prototype.writeUintBE =
|
|
17653
17816
|
Buffer.prototype.writeUIntBE = function writeUIntBE (value, offset, byteLength, noAssert) {
|
|
17654
17817
|
value = +value
|
|
17655
17818
|
offset = offset >>> 0
|
|
@@ -17669,6 +17832,7 @@ Buffer.prototype.writeUIntBE = function writeUIntBE (value, offset, byteLength,
|
|
|
17669
17832
|
return offset + byteLength
|
|
17670
17833
|
}
|
|
17671
17834
|
|
|
17835
|
+
Buffer.prototype.writeUint8 =
|
|
17672
17836
|
Buffer.prototype.writeUInt8 = function writeUInt8 (value, offset, noAssert) {
|
|
17673
17837
|
value = +value
|
|
17674
17838
|
offset = offset >>> 0
|
|
@@ -17677,6 +17841,7 @@ Buffer.prototype.writeUInt8 = function writeUInt8 (value, offset, noAssert) {
|
|
|
17677
17841
|
return offset + 1
|
|
17678
17842
|
}
|
|
17679
17843
|
|
|
17844
|
+
Buffer.prototype.writeUint16LE =
|
|
17680
17845
|
Buffer.prototype.writeUInt16LE = function writeUInt16LE (value, offset, noAssert) {
|
|
17681
17846
|
value = +value
|
|
17682
17847
|
offset = offset >>> 0
|
|
@@ -17686,6 +17851,7 @@ Buffer.prototype.writeUInt16LE = function writeUInt16LE (value, offset, noAssert
|
|
|
17686
17851
|
return offset + 2
|
|
17687
17852
|
}
|
|
17688
17853
|
|
|
17854
|
+
Buffer.prototype.writeUint16BE =
|
|
17689
17855
|
Buffer.prototype.writeUInt16BE = function writeUInt16BE (value, offset, noAssert) {
|
|
17690
17856
|
value = +value
|
|
17691
17857
|
offset = offset >>> 0
|
|
@@ -17695,6 +17861,7 @@ Buffer.prototype.writeUInt16BE = function writeUInt16BE (value, offset, noAssert
|
|
|
17695
17861
|
return offset + 2
|
|
17696
17862
|
}
|
|
17697
17863
|
|
|
17864
|
+
Buffer.prototype.writeUint32LE =
|
|
17698
17865
|
Buffer.prototype.writeUInt32LE = function writeUInt32LE (value, offset, noAssert) {
|
|
17699
17866
|
value = +value
|
|
17700
17867
|
offset = offset >>> 0
|
|
@@ -17706,6 +17873,7 @@ Buffer.prototype.writeUInt32LE = function writeUInt32LE (value, offset, noAssert
|
|
|
17706
17873
|
return offset + 4
|
|
17707
17874
|
}
|
|
17708
17875
|
|
|
17876
|
+
Buffer.prototype.writeUint32BE =
|
|
17709
17877
|
Buffer.prototype.writeUInt32BE = function writeUInt32BE (value, offset, noAssert) {
|
|
17710
17878
|
value = +value
|
|
17711
17879
|
offset = offset >>> 0
|
|
@@ -17885,11 +18053,6 @@ Buffer.prototype.copy = function copy (target, targetStart, start, end) {
|
|
|
17885
18053
|
if (this === target && typeof Uint8Array.prototype.copyWithin === 'function') {
|
|
17886
18054
|
// Use built-in when available, missing from IE11
|
|
17887
18055
|
this.copyWithin(targetStart, start, end)
|
|
17888
|
-
} else if (this === target && start < targetStart && targetStart < end) {
|
|
17889
|
-
// descending copy from end
|
|
17890
|
-
for (var i = len - 1; i >= 0; --i) {
|
|
17891
|
-
target[i + targetStart] = this[i + start]
|
|
17892
|
-
}
|
|
17893
18056
|
} else {
|
|
17894
18057
|
Uint8Array.prototype.set.call(
|
|
17895
18058
|
target,
|
|
@@ -17932,6 +18095,8 @@ Buffer.prototype.fill = function fill (val, start, end, encoding) {
|
|
|
17932
18095
|
}
|
|
17933
18096
|
} else if (typeof val === 'number') {
|
|
17934
18097
|
val = val & 255
|
|
18098
|
+
} else if (typeof val === 'boolean') {
|
|
18099
|
+
val = Number(val)
|
|
17935
18100
|
}
|
|
17936
18101
|
|
|
17937
18102
|
// Invalid ranges are not set to a default, so can range check early.
|
|
@@ -17989,11 +18154,6 @@ function base64clean (str) {
|
|
|
17989
18154
|
return str
|
|
17990
18155
|
}
|
|
17991
18156
|
|
|
17992
|
-
function toHex (n) {
|
|
17993
|
-
if (n < 16) return '0' + n.toString(16)
|
|
17994
|
-
return n.toString(16)
|
|
17995
|
-
}
|
|
17996
|
-
|
|
17997
18157
|
function utf8ToBytes (string, units) {
|
|
17998
18158
|
units = units || Infinity
|
|
17999
18159
|
var codePoint
|
|
@@ -18124,8 +18284,241 @@ function numberIsNaN (obj) {
|
|
|
18124
18284
|
return obj !== obj // eslint-disable-line no-self-compare
|
|
18125
18285
|
}
|
|
18126
18286
|
|
|
18127
|
-
|
|
18128
|
-
|
|
18287
|
+
// Create lookup table for `toString('hex')`
|
|
18288
|
+
// See: https://github.com/feross/buffer/issues/219
|
|
18289
|
+
var hexSliceLookupTable = (function () {
|
|
18290
|
+
var alphabet = '0123456789abcdef'
|
|
18291
|
+
var table = new Array(256)
|
|
18292
|
+
for (var i = 0; i < 16; ++i) {
|
|
18293
|
+
var i16 = i * 16
|
|
18294
|
+
for (var j = 0; j < 16; ++j) {
|
|
18295
|
+
table[i16 + j] = alphabet[i] + alphabet[j]
|
|
18296
|
+
}
|
|
18297
|
+
}
|
|
18298
|
+
return table
|
|
18299
|
+
})()
|
|
18300
|
+
|
|
18301
|
+
}).call(this)}).call(this,require("buffer").Buffer)
|
|
18302
|
+
},{"base64-js":56,"buffer":55,"ieee754":239}],56:[function(require,module,exports){
|
|
18303
|
+
'use strict'
|
|
18304
|
+
|
|
18305
|
+
exports.byteLength = byteLength
|
|
18306
|
+
exports.toByteArray = toByteArray
|
|
18307
|
+
exports.fromByteArray = fromByteArray
|
|
18308
|
+
|
|
18309
|
+
var lookup = []
|
|
18310
|
+
var revLookup = []
|
|
18311
|
+
var Arr = typeof Uint8Array !== 'undefined' ? Uint8Array : Array
|
|
18312
|
+
|
|
18313
|
+
var code = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/'
|
|
18314
|
+
for (var i = 0, len = code.length; i < len; ++i) {
|
|
18315
|
+
lookup[i] = code[i]
|
|
18316
|
+
revLookup[code.charCodeAt(i)] = i
|
|
18317
|
+
}
|
|
18318
|
+
|
|
18319
|
+
// Support decoding URL-safe base64 strings, as Node.js does.
|
|
18320
|
+
// See: https://en.wikipedia.org/wiki/Base64#URL_applications
|
|
18321
|
+
revLookup['-'.charCodeAt(0)] = 62
|
|
18322
|
+
revLookup['_'.charCodeAt(0)] = 63
|
|
18323
|
+
|
|
18324
|
+
function getLens (b64) {
|
|
18325
|
+
var len = b64.length
|
|
18326
|
+
|
|
18327
|
+
if (len % 4 > 0) {
|
|
18328
|
+
throw new Error('Invalid string. Length must be a multiple of 4')
|
|
18329
|
+
}
|
|
18330
|
+
|
|
18331
|
+
// Trim off extra bytes after placeholder bytes are found
|
|
18332
|
+
// See: https://github.com/beatgammit/base64-js/issues/42
|
|
18333
|
+
var validLen = b64.indexOf('=')
|
|
18334
|
+
if (validLen === -1) validLen = len
|
|
18335
|
+
|
|
18336
|
+
var placeHoldersLen = validLen === len
|
|
18337
|
+
? 0
|
|
18338
|
+
: 4 - (validLen % 4)
|
|
18339
|
+
|
|
18340
|
+
return [validLen, placeHoldersLen]
|
|
18341
|
+
}
|
|
18342
|
+
|
|
18343
|
+
// base64 is 4/3 + up to two characters of the original data
|
|
18344
|
+
function byteLength (b64) {
|
|
18345
|
+
var lens = getLens(b64)
|
|
18346
|
+
var validLen = lens[0]
|
|
18347
|
+
var placeHoldersLen = lens[1]
|
|
18348
|
+
return ((validLen + placeHoldersLen) * 3 / 4) - placeHoldersLen
|
|
18349
|
+
}
|
|
18350
|
+
|
|
18351
|
+
function _byteLength (b64, validLen, placeHoldersLen) {
|
|
18352
|
+
return ((validLen + placeHoldersLen) * 3 / 4) - placeHoldersLen
|
|
18353
|
+
}
|
|
18354
|
+
|
|
18355
|
+
function toByteArray (b64) {
|
|
18356
|
+
var tmp
|
|
18357
|
+
var lens = getLens(b64)
|
|
18358
|
+
var validLen = lens[0]
|
|
18359
|
+
var placeHoldersLen = lens[1]
|
|
18360
|
+
|
|
18361
|
+
var arr = new Arr(_byteLength(b64, validLen, placeHoldersLen))
|
|
18362
|
+
|
|
18363
|
+
var curByte = 0
|
|
18364
|
+
|
|
18365
|
+
// if there are placeholders, only get up to the last complete 4 chars
|
|
18366
|
+
var len = placeHoldersLen > 0
|
|
18367
|
+
? validLen - 4
|
|
18368
|
+
: validLen
|
|
18369
|
+
|
|
18370
|
+
var i
|
|
18371
|
+
for (i = 0; i < len; i += 4) {
|
|
18372
|
+
tmp =
|
|
18373
|
+
(revLookup[b64.charCodeAt(i)] << 18) |
|
|
18374
|
+
(revLookup[b64.charCodeAt(i + 1)] << 12) |
|
|
18375
|
+
(revLookup[b64.charCodeAt(i + 2)] << 6) |
|
|
18376
|
+
revLookup[b64.charCodeAt(i + 3)]
|
|
18377
|
+
arr[curByte++] = (tmp >> 16) & 0xFF
|
|
18378
|
+
arr[curByte++] = (tmp >> 8) & 0xFF
|
|
18379
|
+
arr[curByte++] = tmp & 0xFF
|
|
18380
|
+
}
|
|
18381
|
+
|
|
18382
|
+
if (placeHoldersLen === 2) {
|
|
18383
|
+
tmp =
|
|
18384
|
+
(revLookup[b64.charCodeAt(i)] << 2) |
|
|
18385
|
+
(revLookup[b64.charCodeAt(i + 1)] >> 4)
|
|
18386
|
+
arr[curByte++] = tmp & 0xFF
|
|
18387
|
+
}
|
|
18388
|
+
|
|
18389
|
+
if (placeHoldersLen === 1) {
|
|
18390
|
+
tmp =
|
|
18391
|
+
(revLookup[b64.charCodeAt(i)] << 10) |
|
|
18392
|
+
(revLookup[b64.charCodeAt(i + 1)] << 4) |
|
|
18393
|
+
(revLookup[b64.charCodeAt(i + 2)] >> 2)
|
|
18394
|
+
arr[curByte++] = (tmp >> 8) & 0xFF
|
|
18395
|
+
arr[curByte++] = tmp & 0xFF
|
|
18396
|
+
}
|
|
18397
|
+
|
|
18398
|
+
return arr
|
|
18399
|
+
}
|
|
18400
|
+
|
|
18401
|
+
function tripletToBase64 (num) {
|
|
18402
|
+
return lookup[num >> 18 & 0x3F] +
|
|
18403
|
+
lookup[num >> 12 & 0x3F] +
|
|
18404
|
+
lookup[num >> 6 & 0x3F] +
|
|
18405
|
+
lookup[num & 0x3F]
|
|
18406
|
+
}
|
|
18407
|
+
|
|
18408
|
+
function encodeChunk (uint8, start, end) {
|
|
18409
|
+
var tmp
|
|
18410
|
+
var output = []
|
|
18411
|
+
for (var i = start; i < end; i += 3) {
|
|
18412
|
+
tmp =
|
|
18413
|
+
((uint8[i] << 16) & 0xFF0000) +
|
|
18414
|
+
((uint8[i + 1] << 8) & 0xFF00) +
|
|
18415
|
+
(uint8[i + 2] & 0xFF)
|
|
18416
|
+
output.push(tripletToBase64(tmp))
|
|
18417
|
+
}
|
|
18418
|
+
return output.join('')
|
|
18419
|
+
}
|
|
18420
|
+
|
|
18421
|
+
function fromByteArray (uint8) {
|
|
18422
|
+
var tmp
|
|
18423
|
+
var len = uint8.length
|
|
18424
|
+
var extraBytes = len % 3 // if we have 1 byte left, pad 2 bytes
|
|
18425
|
+
var parts = []
|
|
18426
|
+
var maxChunkLength = 16383 // must be multiple of 3
|
|
18427
|
+
|
|
18428
|
+
// go through the array every three bytes, we'll deal with trailing stuff later
|
|
18429
|
+
for (var i = 0, len2 = len - extraBytes; i < len2; i += maxChunkLength) {
|
|
18430
|
+
parts.push(encodeChunk(uint8, i, (i + maxChunkLength) > len2 ? len2 : (i + maxChunkLength)))
|
|
18431
|
+
}
|
|
18432
|
+
|
|
18433
|
+
// pad the end with zeros, but make sure to not forget the extra bytes
|
|
18434
|
+
if (extraBytes === 1) {
|
|
18435
|
+
tmp = uint8[len - 1]
|
|
18436
|
+
parts.push(
|
|
18437
|
+
lookup[tmp >> 2] +
|
|
18438
|
+
lookup[(tmp << 4) & 0x3F] +
|
|
18439
|
+
'=='
|
|
18440
|
+
)
|
|
18441
|
+
} else if (extraBytes === 2) {
|
|
18442
|
+
tmp = (uint8[len - 2] << 8) + uint8[len - 1]
|
|
18443
|
+
parts.push(
|
|
18444
|
+
lookup[tmp >> 10] +
|
|
18445
|
+
lookup[(tmp >> 4) & 0x3F] +
|
|
18446
|
+
lookup[(tmp << 2) & 0x3F] +
|
|
18447
|
+
'='
|
|
18448
|
+
)
|
|
18449
|
+
}
|
|
18450
|
+
|
|
18451
|
+
return parts.join('')
|
|
18452
|
+
}
|
|
18453
|
+
|
|
18454
|
+
},{}],57:[function(require,module,exports){
|
|
18455
|
+
'use strict';
|
|
18456
|
+
|
|
18457
|
+
var GetIntrinsic = require('get-intrinsic');
|
|
18458
|
+
|
|
18459
|
+
var callBind = require('./');
|
|
18460
|
+
|
|
18461
|
+
var $indexOf = callBind(GetIntrinsic('String.prototype.indexOf'));
|
|
18462
|
+
|
|
18463
|
+
module.exports = function callBoundIntrinsic(name, allowMissing) {
|
|
18464
|
+
var intrinsic = GetIntrinsic(name, !!allowMissing);
|
|
18465
|
+
if (typeof intrinsic === 'function' && $indexOf(name, '.prototype.') > -1) {
|
|
18466
|
+
return callBind(intrinsic);
|
|
18467
|
+
}
|
|
18468
|
+
return intrinsic;
|
|
18469
|
+
};
|
|
18470
|
+
|
|
18471
|
+
},{"./":58,"get-intrinsic":235}],58:[function(require,module,exports){
|
|
18472
|
+
'use strict';
|
|
18473
|
+
|
|
18474
|
+
var bind = require('function-bind');
|
|
18475
|
+
var GetIntrinsic = require('get-intrinsic');
|
|
18476
|
+
|
|
18477
|
+
var $apply = GetIntrinsic('%Function.prototype.apply%');
|
|
18478
|
+
var $call = GetIntrinsic('%Function.prototype.call%');
|
|
18479
|
+
var $reflectApply = GetIntrinsic('%Reflect.apply%', true) || bind.call($call, $apply);
|
|
18480
|
+
|
|
18481
|
+
var $gOPD = GetIntrinsic('%Object.getOwnPropertyDescriptor%', true);
|
|
18482
|
+
var $defineProperty = GetIntrinsic('%Object.defineProperty%', true);
|
|
18483
|
+
var $max = GetIntrinsic('%Math.max%');
|
|
18484
|
+
|
|
18485
|
+
if ($defineProperty) {
|
|
18486
|
+
try {
|
|
18487
|
+
$defineProperty({}, 'a', { value: 1 });
|
|
18488
|
+
} catch (e) {
|
|
18489
|
+
// IE 8 has a broken defineProperty
|
|
18490
|
+
$defineProperty = null;
|
|
18491
|
+
}
|
|
18492
|
+
}
|
|
18493
|
+
|
|
18494
|
+
module.exports = function callBind(originalFunction) {
|
|
18495
|
+
var func = $reflectApply(bind, $call, arguments);
|
|
18496
|
+
if ($gOPD && $defineProperty) {
|
|
18497
|
+
var desc = $gOPD(func, 'length');
|
|
18498
|
+
if (desc.configurable) {
|
|
18499
|
+
// original length, plus the receiver, minus any additional arguments (after the receiver)
|
|
18500
|
+
$defineProperty(
|
|
18501
|
+
func,
|
|
18502
|
+
'length',
|
|
18503
|
+
{ value: 1 + $max(0, originalFunction.length - (arguments.length - 1)) }
|
|
18504
|
+
);
|
|
18505
|
+
}
|
|
18506
|
+
}
|
|
18507
|
+
return func;
|
|
18508
|
+
};
|
|
18509
|
+
|
|
18510
|
+
var applyBind = function applyBind() {
|
|
18511
|
+
return $reflectApply(bind, $apply, arguments);
|
|
18512
|
+
};
|
|
18513
|
+
|
|
18514
|
+
if ($defineProperty) {
|
|
18515
|
+
$defineProperty(module.exports, 'apply', { value: applyBind });
|
|
18516
|
+
} else {
|
|
18517
|
+
module.exports.apply = applyBind;
|
|
18518
|
+
}
|
|
18519
|
+
|
|
18520
|
+
},{"function-bind":234,"get-intrinsic":235}],59:[function(require,module,exports){
|
|
18521
|
+
(function (Buffer){(function (){
|
|
18129
18522
|
var clone = (function() {
|
|
18130
18523
|
'use strict';
|
|
18131
18524
|
|
|
@@ -18293,18 +18686,18 @@ if (typeof module === 'object' && module.exports) {
|
|
|
18293
18686
|
module.exports = clone;
|
|
18294
18687
|
}
|
|
18295
18688
|
|
|
18296
|
-
}).call(this,require("buffer").Buffer)
|
|
18297
|
-
},{"buffer":55}],
|
|
18689
|
+
}).call(this)}).call(this,require("buffer").Buffer)
|
|
18690
|
+
},{"buffer":55}],60:[function(require,module,exports){
|
|
18298
18691
|
require('../../modules/es6.string.iterator');
|
|
18299
18692
|
require('../../modules/es6.array.from');
|
|
18300
18693
|
module.exports = require('../../modules/_core').Array.from;
|
|
18301
18694
|
|
|
18302
|
-
},{"../../modules/_core":
|
|
18695
|
+
},{"../../modules/_core":91,"../../modules/es6.array.from":164,"../../modules/es6.string.iterator":180}],61:[function(require,module,exports){
|
|
18303
18696
|
require('../modules/web.dom.iterable');
|
|
18304
18697
|
require('../modules/es6.string.iterator');
|
|
18305
18698
|
module.exports = require('../modules/core.get-iterator');
|
|
18306
18699
|
|
|
18307
|
-
},{"../modules/core.get-iterator":
|
|
18700
|
+
},{"../modules/core.get-iterator":163,"../modules/es6.string.iterator":180,"../modules/web.dom.iterable":192}],62:[function(require,module,exports){
|
|
18308
18701
|
require('../modules/es6.object.to-string');
|
|
18309
18702
|
require('../modules/es6.string.iterator');
|
|
18310
18703
|
require('../modules/web.dom.iterable');
|
|
@@ -18314,55 +18707,55 @@ require('../modules/es7.map.of');
|
|
|
18314
18707
|
require('../modules/es7.map.from');
|
|
18315
18708
|
module.exports = require('../modules/_core').Map;
|
|
18316
18709
|
|
|
18317
|
-
},{"../modules/_core":
|
|
18710
|
+
},{"../modules/_core":91,"../modules/es6.map":166,"../modules/es6.object.to-string":176,"../modules/es6.string.iterator":180,"../modules/es7.map.from":182,"../modules/es7.map.of":183,"../modules/es7.map.to-json":184,"../modules/web.dom.iterable":192}],63:[function(require,module,exports){
|
|
18318
18711
|
require('../../modules/es6.number.epsilon');
|
|
18319
18712
|
module.exports = Math.pow(2, -52);
|
|
18320
18713
|
|
|
18321
|
-
},{"../../modules/es6.number.epsilon":
|
|
18714
|
+
},{"../../modules/es6.number.epsilon":167}],64:[function(require,module,exports){
|
|
18322
18715
|
require('../../modules/es6.object.assign');
|
|
18323
18716
|
module.exports = require('../../modules/_core').Object.assign;
|
|
18324
18717
|
|
|
18325
|
-
},{"../../modules/_core":
|
|
18718
|
+
},{"../../modules/_core":91,"../../modules/es6.object.assign":168}],65:[function(require,module,exports){
|
|
18326
18719
|
require('../../modules/es6.object.create');
|
|
18327
18720
|
var $Object = require('../../modules/_core').Object;
|
|
18328
18721
|
module.exports = function create(P, D) {
|
|
18329
18722
|
return $Object.create(P, D);
|
|
18330
18723
|
};
|
|
18331
18724
|
|
|
18332
|
-
},{"../../modules/_core":
|
|
18725
|
+
},{"../../modules/_core":91,"../../modules/es6.object.create":169}],66:[function(require,module,exports){
|
|
18333
18726
|
require('../../modules/es6.object.define-properties');
|
|
18334
18727
|
var $Object = require('../../modules/_core').Object;
|
|
18335
18728
|
module.exports = function defineProperties(T, D) {
|
|
18336
18729
|
return $Object.defineProperties(T, D);
|
|
18337
18730
|
};
|
|
18338
18731
|
|
|
18339
|
-
},{"../../modules/_core":
|
|
18732
|
+
},{"../../modules/_core":91,"../../modules/es6.object.define-properties":170}],67:[function(require,module,exports){
|
|
18340
18733
|
require('../../modules/es6.object.define-property');
|
|
18341
18734
|
var $Object = require('../../modules/_core').Object;
|
|
18342
18735
|
module.exports = function defineProperty(it, key, desc) {
|
|
18343
18736
|
return $Object.defineProperty(it, key, desc);
|
|
18344
18737
|
};
|
|
18345
18738
|
|
|
18346
|
-
},{"../../modules/_core":
|
|
18739
|
+
},{"../../modules/_core":91,"../../modules/es6.object.define-property":171}],68:[function(require,module,exports){
|
|
18347
18740
|
require('../../modules/es6.object.freeze');
|
|
18348
18741
|
module.exports = require('../../modules/_core').Object.freeze;
|
|
18349
18742
|
|
|
18350
|
-
},{"../../modules/_core":
|
|
18743
|
+
},{"../../modules/_core":91,"../../modules/es6.object.freeze":172}],69:[function(require,module,exports){
|
|
18351
18744
|
require('../../modules/es6.object.get-own-property-descriptor');
|
|
18352
18745
|
var $Object = require('../../modules/_core').Object;
|
|
18353
18746
|
module.exports = function getOwnPropertyDescriptor(it, key) {
|
|
18354
18747
|
return $Object.getOwnPropertyDescriptor(it, key);
|
|
18355
18748
|
};
|
|
18356
18749
|
|
|
18357
|
-
},{"../../modules/_core":
|
|
18750
|
+
},{"../../modules/_core":91,"../../modules/es6.object.get-own-property-descriptor":173}],70:[function(require,module,exports){
|
|
18358
18751
|
require('../../modules/es6.object.keys');
|
|
18359
18752
|
module.exports = require('../../modules/_core').Object.keys;
|
|
18360
18753
|
|
|
18361
|
-
},{"../../modules/_core":
|
|
18754
|
+
},{"../../modules/_core":91,"../../modules/es6.object.keys":174}],71:[function(require,module,exports){
|
|
18362
18755
|
require('../../modules/es6.object.set-prototype-of');
|
|
18363
18756
|
module.exports = require('../../modules/_core').Object.setPrototypeOf;
|
|
18364
18757
|
|
|
18365
|
-
},{"../../modules/_core":
|
|
18758
|
+
},{"../../modules/_core":91,"../../modules/es6.object.set-prototype-of":175}],72:[function(require,module,exports){
|
|
18366
18759
|
require('../modules/es6.object.to-string');
|
|
18367
18760
|
require('../modules/es6.string.iterator');
|
|
18368
18761
|
require('../modules/web.dom.iterable');
|
|
@@ -18371,7 +18764,7 @@ require('../modules/es7.promise.finally');
|
|
|
18371
18764
|
require('../modules/es7.promise.try');
|
|
18372
18765
|
module.exports = require('../modules/_core').Promise;
|
|
18373
18766
|
|
|
18374
|
-
},{"../modules/_core":
|
|
18767
|
+
},{"../modules/_core":91,"../modules/es6.object.to-string":176,"../modules/es6.promise":177,"../modules/es6.string.iterator":180,"../modules/es7.promise.finally":185,"../modules/es7.promise.try":186,"../modules/web.dom.iterable":192}],73:[function(require,module,exports){
|
|
18375
18768
|
require('../modules/es6.object.to-string');
|
|
18376
18769
|
require('../modules/es6.string.iterator');
|
|
18377
18770
|
require('../modules/web.dom.iterable');
|
|
@@ -18381,46 +18774,46 @@ require('../modules/es7.set.of');
|
|
|
18381
18774
|
require('../modules/es7.set.from');
|
|
18382
18775
|
module.exports = require('../modules/_core').Set;
|
|
18383
18776
|
|
|
18384
|
-
},{"../modules/_core":
|
|
18777
|
+
},{"../modules/_core":91,"../modules/es6.object.to-string":176,"../modules/es6.set":178,"../modules/es6.string.iterator":180,"../modules/es7.set.from":187,"../modules/es7.set.of":188,"../modules/es7.set.to-json":189,"../modules/web.dom.iterable":192}],74:[function(require,module,exports){
|
|
18385
18778
|
require('../../modules/es6.string.from-code-point');
|
|
18386
18779
|
module.exports = require('../../modules/_core').String.fromCodePoint;
|
|
18387
18780
|
|
|
18388
|
-
},{"../../modules/_core":
|
|
18781
|
+
},{"../../modules/_core":91,"../../modules/es6.string.from-code-point":179}],75:[function(require,module,exports){
|
|
18389
18782
|
require('../../modules/es6.symbol');
|
|
18390
18783
|
require('../../modules/es6.object.to-string');
|
|
18391
18784
|
require('../../modules/es7.symbol.async-iterator');
|
|
18392
18785
|
require('../../modules/es7.symbol.observable');
|
|
18393
18786
|
module.exports = require('../../modules/_core').Symbol;
|
|
18394
18787
|
|
|
18395
|
-
},{"../../modules/_core":
|
|
18788
|
+
},{"../../modules/_core":91,"../../modules/es6.object.to-string":176,"../../modules/es6.symbol":181,"../../modules/es7.symbol.async-iterator":190,"../../modules/es7.symbol.observable":191}],76:[function(require,module,exports){
|
|
18396
18789
|
require('../../modules/es6.string.iterator');
|
|
18397
18790
|
require('../../modules/web.dom.iterable');
|
|
18398
18791
|
module.exports = require('../../modules/_wks-ext').f('iterator');
|
|
18399
18792
|
|
|
18400
|
-
},{"../../modules/_wks-ext":
|
|
18793
|
+
},{"../../modules/_wks-ext":160,"../../modules/es6.string.iterator":180,"../../modules/web.dom.iterable":192}],77:[function(require,module,exports){
|
|
18401
18794
|
module.exports = function (it) {
|
|
18402
18795
|
if (typeof it != 'function') throw TypeError(it + ' is not a function!');
|
|
18403
18796
|
return it;
|
|
18404
18797
|
};
|
|
18405
18798
|
|
|
18406
|
-
},{}],
|
|
18799
|
+
},{}],78:[function(require,module,exports){
|
|
18407
18800
|
module.exports = function () { /* empty */ };
|
|
18408
18801
|
|
|
18409
|
-
},{}],
|
|
18802
|
+
},{}],79:[function(require,module,exports){
|
|
18410
18803
|
module.exports = function (it, Constructor, name, forbiddenField) {
|
|
18411
18804
|
if (!(it instanceof Constructor) || (forbiddenField !== undefined && forbiddenField in it)) {
|
|
18412
18805
|
throw TypeError(name + ': incorrect invocation!');
|
|
18413
18806
|
} return it;
|
|
18414
18807
|
};
|
|
18415
18808
|
|
|
18416
|
-
},{}],
|
|
18809
|
+
},{}],80:[function(require,module,exports){
|
|
18417
18810
|
var isObject = require('./_is-object');
|
|
18418
18811
|
module.exports = function (it) {
|
|
18419
18812
|
if (!isObject(it)) throw TypeError(it + ' is not an object!');
|
|
18420
18813
|
return it;
|
|
18421
18814
|
};
|
|
18422
18815
|
|
|
18423
|
-
},{"./_is-object":
|
|
18816
|
+
},{"./_is-object":111}],81:[function(require,module,exports){
|
|
18424
18817
|
var forOf = require('./_for-of');
|
|
18425
18818
|
|
|
18426
18819
|
module.exports = function (iter, ITERATOR) {
|
|
@@ -18429,7 +18822,7 @@ module.exports = function (iter, ITERATOR) {
|
|
|
18429
18822
|
return result;
|
|
18430
18823
|
};
|
|
18431
18824
|
|
|
18432
|
-
},{"./_for-of":
|
|
18825
|
+
},{"./_for-of":101}],82:[function(require,module,exports){
|
|
18433
18826
|
// false -> Array#indexOf
|
|
18434
18827
|
// true -> Array#includes
|
|
18435
18828
|
var toIObject = require('./_to-iobject');
|
|
@@ -18454,7 +18847,7 @@ module.exports = function (IS_INCLUDES) {
|
|
|
18454
18847
|
};
|
|
18455
18848
|
};
|
|
18456
18849
|
|
|
18457
|
-
},{"./_to-absolute-index":
|
|
18850
|
+
},{"./_to-absolute-index":150,"./_to-iobject":152,"./_to-length":153}],83:[function(require,module,exports){
|
|
18458
18851
|
// 0 -> Array#forEach
|
|
18459
18852
|
// 1 -> Array#map
|
|
18460
18853
|
// 2 -> Array#filter
|
|
@@ -18500,7 +18893,7 @@ module.exports = function (TYPE, $create) {
|
|
|
18500
18893
|
};
|
|
18501
18894
|
};
|
|
18502
18895
|
|
|
18503
|
-
},{"./_array-species-create":
|
|
18896
|
+
},{"./_array-species-create":85,"./_ctx":93,"./_iobject":108,"./_to-length":153,"./_to-object":154}],84:[function(require,module,exports){
|
|
18504
18897
|
var isObject = require('./_is-object');
|
|
18505
18898
|
var isArray = require('./_is-array');
|
|
18506
18899
|
var SPECIES = require('./_wks')('species');
|
|
@@ -18518,7 +18911,7 @@ module.exports = function (original) {
|
|
|
18518
18911
|
} return C === undefined ? Array : C;
|
|
18519
18912
|
};
|
|
18520
18913
|
|
|
18521
|
-
},{"./_is-array":
|
|
18914
|
+
},{"./_is-array":110,"./_is-object":111,"./_wks":161}],85:[function(require,module,exports){
|
|
18522
18915
|
// 9.4.2.3 ArraySpeciesCreate(originalArray, length)
|
|
18523
18916
|
var speciesConstructor = require('./_array-species-constructor');
|
|
18524
18917
|
|
|
@@ -18526,7 +18919,7 @@ module.exports = function (original, length) {
|
|
|
18526
18919
|
return new (speciesConstructor(original))(length);
|
|
18527
18920
|
};
|
|
18528
18921
|
|
|
18529
|
-
},{"./_array-species-constructor":
|
|
18922
|
+
},{"./_array-species-constructor":84}],86:[function(require,module,exports){
|
|
18530
18923
|
// getting tag from 19.1.3.6 Object.prototype.toString()
|
|
18531
18924
|
var cof = require('./_cof');
|
|
18532
18925
|
var TAG = require('./_wks')('toStringTag');
|
|
@@ -18551,14 +18944,14 @@ module.exports = function (it) {
|
|
|
18551
18944
|
: (B = cof(O)) == 'Object' && typeof O.callee == 'function' ? 'Arguments' : B;
|
|
18552
18945
|
};
|
|
18553
18946
|
|
|
18554
|
-
},{"./_cof":
|
|
18947
|
+
},{"./_cof":87,"./_wks":161}],87:[function(require,module,exports){
|
|
18555
18948
|
var toString = {}.toString;
|
|
18556
18949
|
|
|
18557
18950
|
module.exports = function (it) {
|
|
18558
18951
|
return toString.call(it).slice(8, -1);
|
|
18559
18952
|
};
|
|
18560
18953
|
|
|
18561
|
-
},{}],
|
|
18954
|
+
},{}],88:[function(require,module,exports){
|
|
18562
18955
|
'use strict';
|
|
18563
18956
|
var dP = require('./_object-dp').f;
|
|
18564
18957
|
var create = require('./_object-create');
|
|
@@ -18704,7 +19097,7 @@ module.exports = {
|
|
|
18704
19097
|
}
|
|
18705
19098
|
};
|
|
18706
19099
|
|
|
18707
|
-
},{"./_an-instance":
|
|
19100
|
+
},{"./_an-instance":79,"./_ctx":93,"./_descriptors":95,"./_for-of":101,"./_iter-define":114,"./_iter-step":116,"./_meta":119,"./_object-create":123,"./_object-dp":124,"./_redefine-all":138,"./_set-species":143,"./_validate-collection":158}],89:[function(require,module,exports){
|
|
18708
19101
|
// https://github.com/DavidBruant/Map-Set.prototype.toJSON
|
|
18709
19102
|
var classof = require('./_classof');
|
|
18710
19103
|
var from = require('./_array-from-iterable');
|
|
@@ -18715,7 +19108,7 @@ module.exports = function (NAME) {
|
|
|
18715
19108
|
};
|
|
18716
19109
|
};
|
|
18717
19110
|
|
|
18718
|
-
},{"./_array-from-iterable":
|
|
19111
|
+
},{"./_array-from-iterable":81,"./_classof":86}],90:[function(require,module,exports){
|
|
18719
19112
|
'use strict';
|
|
18720
19113
|
var global = require('./_global');
|
|
18721
19114
|
var $export = require('./_export');
|
|
@@ -18776,11 +19169,11 @@ module.exports = function (NAME, wrapper, methods, common, IS_MAP, IS_WEAK) {
|
|
|
18776
19169
|
return C;
|
|
18777
19170
|
};
|
|
18778
19171
|
|
|
18779
|
-
},{"./_an-instance":
|
|
18780
|
-
var core = module.exports = { version: '2.6.
|
|
19172
|
+
},{"./_an-instance":79,"./_array-methods":83,"./_descriptors":95,"./_export":99,"./_fails":100,"./_for-of":101,"./_global":102,"./_hide":104,"./_is-object":111,"./_meta":119,"./_object-dp":124,"./_redefine-all":138,"./_set-to-string-tag":144}],91:[function(require,module,exports){
|
|
19173
|
+
var core = module.exports = { version: '2.6.12' };
|
|
18781
19174
|
if (typeof __e == 'number') __e = core; // eslint-disable-line no-undef
|
|
18782
19175
|
|
|
18783
|
-
},{}],
|
|
19176
|
+
},{}],92:[function(require,module,exports){
|
|
18784
19177
|
'use strict';
|
|
18785
19178
|
var $defineProperty = require('./_object-dp');
|
|
18786
19179
|
var createDesc = require('./_property-desc');
|
|
@@ -18790,7 +19183,7 @@ module.exports = function (object, index, value) {
|
|
|
18790
19183
|
else object[index] = value;
|
|
18791
19184
|
};
|
|
18792
19185
|
|
|
18793
|
-
},{"./_object-dp":
|
|
19186
|
+
},{"./_object-dp":124,"./_property-desc":137}],93:[function(require,module,exports){
|
|
18794
19187
|
// optional / simple context binding
|
|
18795
19188
|
var aFunction = require('./_a-function');
|
|
18796
19189
|
module.exports = function (fn, that, length) {
|
|
@@ -18812,20 +19205,20 @@ module.exports = function (fn, that, length) {
|
|
|
18812
19205
|
};
|
|
18813
19206
|
};
|
|
18814
19207
|
|
|
18815
|
-
},{"./_a-function":
|
|
19208
|
+
},{"./_a-function":77}],94:[function(require,module,exports){
|
|
18816
19209
|
// 7.2.1 RequireObjectCoercible(argument)
|
|
18817
19210
|
module.exports = function (it) {
|
|
18818
19211
|
if (it == undefined) throw TypeError("Can't call method on " + it);
|
|
18819
19212
|
return it;
|
|
18820
19213
|
};
|
|
18821
19214
|
|
|
18822
|
-
},{}],
|
|
19215
|
+
},{}],95:[function(require,module,exports){
|
|
18823
19216
|
// Thank's IE8 for his funny defineProperty
|
|
18824
19217
|
module.exports = !require('./_fails')(function () {
|
|
18825
19218
|
return Object.defineProperty({}, 'a', { get: function () { return 7; } }).a != 7;
|
|
18826
19219
|
});
|
|
18827
19220
|
|
|
18828
|
-
},{"./_fails":
|
|
19221
|
+
},{"./_fails":100}],96:[function(require,module,exports){
|
|
18829
19222
|
var isObject = require('./_is-object');
|
|
18830
19223
|
var document = require('./_global').document;
|
|
18831
19224
|
// typeof document.createElement is 'object' in old IE
|
|
@@ -18834,13 +19227,13 @@ module.exports = function (it) {
|
|
|
18834
19227
|
return is ? document.createElement(it) : {};
|
|
18835
19228
|
};
|
|
18836
19229
|
|
|
18837
|
-
},{"./_global":
|
|
19230
|
+
},{"./_global":102,"./_is-object":111}],97:[function(require,module,exports){
|
|
18838
19231
|
// IE 8- don't enum bug keys
|
|
18839
19232
|
module.exports = (
|
|
18840
19233
|
'constructor,hasOwnProperty,isPrototypeOf,propertyIsEnumerable,toLocaleString,toString,valueOf'
|
|
18841
19234
|
).split(',');
|
|
18842
19235
|
|
|
18843
|
-
},{}],
|
|
19236
|
+
},{}],98:[function(require,module,exports){
|
|
18844
19237
|
// all enumerable object keys, includes symbols
|
|
18845
19238
|
var getKeys = require('./_object-keys');
|
|
18846
19239
|
var gOPS = require('./_object-gops');
|
|
@@ -18857,7 +19250,7 @@ module.exports = function (it) {
|
|
|
18857
19250
|
} return result;
|
|
18858
19251
|
};
|
|
18859
19252
|
|
|
18860
|
-
},{"./_object-gops":
|
|
19253
|
+
},{"./_object-gops":129,"./_object-keys":132,"./_object-pie":133}],99:[function(require,module,exports){
|
|
18861
19254
|
var global = require('./_global');
|
|
18862
19255
|
var core = require('./_core');
|
|
18863
19256
|
var ctx = require('./_ctx');
|
|
@@ -18921,7 +19314,7 @@ $export.U = 64; // safe
|
|
|
18921
19314
|
$export.R = 128; // real proto method for `library`
|
|
18922
19315
|
module.exports = $export;
|
|
18923
19316
|
|
|
18924
|
-
},{"./_core":
|
|
19317
|
+
},{"./_core":91,"./_ctx":93,"./_global":102,"./_has":103,"./_hide":104}],100:[function(require,module,exports){
|
|
18925
19318
|
module.exports = function (exec) {
|
|
18926
19319
|
try {
|
|
18927
19320
|
return !!exec();
|
|
@@ -18930,7 +19323,7 @@ module.exports = function (exec) {
|
|
|
18930
19323
|
}
|
|
18931
19324
|
};
|
|
18932
19325
|
|
|
18933
|
-
},{}],
|
|
19326
|
+
},{}],101:[function(require,module,exports){
|
|
18934
19327
|
var ctx = require('./_ctx');
|
|
18935
19328
|
var call = require('./_iter-call');
|
|
18936
19329
|
var isArrayIter = require('./_is-array-iter');
|
|
@@ -18957,7 +19350,7 @@ var exports = module.exports = function (iterable, entries, fn, that, ITERATOR)
|
|
|
18957
19350
|
exports.BREAK = BREAK;
|
|
18958
19351
|
exports.RETURN = RETURN;
|
|
18959
19352
|
|
|
18960
|
-
},{"./_an-object":
|
|
19353
|
+
},{"./_an-object":80,"./_ctx":93,"./_is-array-iter":109,"./_iter-call":112,"./_to-length":153,"./core.get-iterator-method":162}],102:[function(require,module,exports){
|
|
18961
19354
|
// https://github.com/zloirock/core-js/issues/86#issuecomment-115759028
|
|
18962
19355
|
var global = module.exports = typeof window != 'undefined' && window.Math == Math
|
|
18963
19356
|
? window : typeof self != 'undefined' && self.Math == Math ? self
|
|
@@ -18965,13 +19358,13 @@ var global = module.exports = typeof window != 'undefined' && window.Math == Mat
|
|
|
18965
19358
|
: Function('return this')();
|
|
18966
19359
|
if (typeof __g == 'number') __g = global; // eslint-disable-line no-undef
|
|
18967
19360
|
|
|
18968
|
-
},{}],
|
|
19361
|
+
},{}],103:[function(require,module,exports){
|
|
18969
19362
|
var hasOwnProperty = {}.hasOwnProperty;
|
|
18970
19363
|
module.exports = function (it, key) {
|
|
18971
19364
|
return hasOwnProperty.call(it, key);
|
|
18972
19365
|
};
|
|
18973
19366
|
|
|
18974
|
-
},{}],
|
|
19367
|
+
},{}],104:[function(require,module,exports){
|
|
18975
19368
|
var dP = require('./_object-dp');
|
|
18976
19369
|
var createDesc = require('./_property-desc');
|
|
18977
19370
|
module.exports = require('./_descriptors') ? function (object, key, value) {
|
|
@@ -18981,16 +19374,16 @@ module.exports = require('./_descriptors') ? function (object, key, value) {
|
|
|
18981
19374
|
return object;
|
|
18982
19375
|
};
|
|
18983
19376
|
|
|
18984
|
-
},{"./_descriptors":
|
|
19377
|
+
},{"./_descriptors":95,"./_object-dp":124,"./_property-desc":137}],105:[function(require,module,exports){
|
|
18985
19378
|
var document = require('./_global').document;
|
|
18986
19379
|
module.exports = document && document.documentElement;
|
|
18987
19380
|
|
|
18988
|
-
},{"./_global":
|
|
19381
|
+
},{"./_global":102}],106:[function(require,module,exports){
|
|
18989
19382
|
module.exports = !require('./_descriptors') && !require('./_fails')(function () {
|
|
18990
19383
|
return Object.defineProperty(require('./_dom-create')('div'), 'a', { get: function () { return 7; } }).a != 7;
|
|
18991
19384
|
});
|
|
18992
19385
|
|
|
18993
|
-
},{"./_descriptors":
|
|
19386
|
+
},{"./_descriptors":95,"./_dom-create":96,"./_fails":100}],107:[function(require,module,exports){
|
|
18994
19387
|
// fast apply, http://jsperf.lnkit.com/fast-apply/5
|
|
18995
19388
|
module.exports = function (fn, args, that) {
|
|
18996
19389
|
var un = that === undefined;
|
|
@@ -19008,7 +19401,7 @@ module.exports = function (fn, args, that) {
|
|
|
19008
19401
|
} return fn.apply(that, args);
|
|
19009
19402
|
};
|
|
19010
19403
|
|
|
19011
|
-
},{}],
|
|
19404
|
+
},{}],108:[function(require,module,exports){
|
|
19012
19405
|
// fallback for non-array-like ES3 and non-enumerable old V8 strings
|
|
19013
19406
|
var cof = require('./_cof');
|
|
19014
19407
|
// eslint-disable-next-line no-prototype-builtins
|
|
@@ -19016,7 +19409,7 @@ module.exports = Object('z').propertyIsEnumerable(0) ? Object : function (it) {
|
|
|
19016
19409
|
return cof(it) == 'String' ? it.split('') : Object(it);
|
|
19017
19410
|
};
|
|
19018
19411
|
|
|
19019
|
-
},{"./_cof":
|
|
19412
|
+
},{"./_cof":87}],109:[function(require,module,exports){
|
|
19020
19413
|
// check on default Array iterator
|
|
19021
19414
|
var Iterators = require('./_iterators');
|
|
19022
19415
|
var ITERATOR = require('./_wks')('iterator');
|
|
@@ -19026,19 +19419,19 @@ module.exports = function (it) {
|
|
|
19026
19419
|
return it !== undefined && (Iterators.Array === it || ArrayProto[ITERATOR] === it);
|
|
19027
19420
|
};
|
|
19028
19421
|
|
|
19029
|
-
},{"./_iterators":
|
|
19422
|
+
},{"./_iterators":117,"./_wks":161}],110:[function(require,module,exports){
|
|
19030
19423
|
// 7.2.2 IsArray(argument)
|
|
19031
19424
|
var cof = require('./_cof');
|
|
19032
19425
|
module.exports = Array.isArray || function isArray(arg) {
|
|
19033
19426
|
return cof(arg) == 'Array';
|
|
19034
19427
|
};
|
|
19035
19428
|
|
|
19036
|
-
},{"./_cof":
|
|
19429
|
+
},{"./_cof":87}],111:[function(require,module,exports){
|
|
19037
19430
|
module.exports = function (it) {
|
|
19038
19431
|
return typeof it === 'object' ? it !== null : typeof it === 'function';
|
|
19039
19432
|
};
|
|
19040
19433
|
|
|
19041
|
-
},{}],
|
|
19434
|
+
},{}],112:[function(require,module,exports){
|
|
19042
19435
|
// call something on iterator step with safe closing on error
|
|
19043
19436
|
var anObject = require('./_an-object');
|
|
19044
19437
|
module.exports = function (iterator, fn, value, entries) {
|
|
@@ -19052,7 +19445,7 @@ module.exports = function (iterator, fn, value, entries) {
|
|
|
19052
19445
|
}
|
|
19053
19446
|
};
|
|
19054
19447
|
|
|
19055
|
-
},{"./_an-object":
|
|
19448
|
+
},{"./_an-object":80}],113:[function(require,module,exports){
|
|
19056
19449
|
'use strict';
|
|
19057
19450
|
var create = require('./_object-create');
|
|
19058
19451
|
var descriptor = require('./_property-desc');
|
|
@@ -19067,7 +19460,7 @@ module.exports = function (Constructor, NAME, next) {
|
|
|
19067
19460
|
setToStringTag(Constructor, NAME + ' Iterator');
|
|
19068
19461
|
};
|
|
19069
19462
|
|
|
19070
|
-
},{"./_hide":
|
|
19463
|
+
},{"./_hide":104,"./_object-create":123,"./_property-desc":137,"./_set-to-string-tag":144,"./_wks":161}],114:[function(require,module,exports){
|
|
19071
19464
|
'use strict';
|
|
19072
19465
|
var LIBRARY = require('./_library');
|
|
19073
19466
|
var $export = require('./_export');
|
|
@@ -19138,7 +19531,7 @@ module.exports = function (Base, NAME, Constructor, next, DEFAULT, IS_SET, FORCE
|
|
|
19138
19531
|
return methods;
|
|
19139
19532
|
};
|
|
19140
19533
|
|
|
19141
|
-
},{"./_export":
|
|
19534
|
+
},{"./_export":99,"./_hide":104,"./_iter-create":113,"./_iterators":117,"./_library":118,"./_object-gpo":130,"./_redefine":139,"./_set-to-string-tag":144,"./_wks":161}],115:[function(require,module,exports){
|
|
19142
19535
|
var ITERATOR = require('./_wks')('iterator');
|
|
19143
19536
|
var SAFE_CLOSING = false;
|
|
19144
19537
|
|
|
@@ -19162,18 +19555,18 @@ module.exports = function (exec, skipClosing) {
|
|
|
19162
19555
|
return safe;
|
|
19163
19556
|
};
|
|
19164
19557
|
|
|
19165
|
-
},{"./_wks":
|
|
19558
|
+
},{"./_wks":161}],116:[function(require,module,exports){
|
|
19166
19559
|
module.exports = function (done, value) {
|
|
19167
19560
|
return { value: value, done: !!done };
|
|
19168
19561
|
};
|
|
19169
19562
|
|
|
19170
|
-
},{}],
|
|
19563
|
+
},{}],117:[function(require,module,exports){
|
|
19171
19564
|
module.exports = {};
|
|
19172
19565
|
|
|
19173
|
-
},{}],
|
|
19566
|
+
},{}],118:[function(require,module,exports){
|
|
19174
19567
|
module.exports = true;
|
|
19175
19568
|
|
|
19176
|
-
},{}],
|
|
19569
|
+
},{}],119:[function(require,module,exports){
|
|
19177
19570
|
var META = require('./_uid')('meta');
|
|
19178
19571
|
var isObject = require('./_is-object');
|
|
19179
19572
|
var has = require('./_has');
|
|
@@ -19228,7 +19621,7 @@ var meta = module.exports = {
|
|
|
19228
19621
|
onFreeze: onFreeze
|
|
19229
19622
|
};
|
|
19230
19623
|
|
|
19231
|
-
},{"./_fails":
|
|
19624
|
+
},{"./_fails":100,"./_has":103,"./_is-object":111,"./_object-dp":124,"./_uid":156}],120:[function(require,module,exports){
|
|
19232
19625
|
var global = require('./_global');
|
|
19233
19626
|
var macrotask = require('./_task').set;
|
|
19234
19627
|
var Observer = global.MutationObserver || global.WebKitMutationObserver;
|
|
@@ -19299,7 +19692,7 @@ module.exports = function () {
|
|
|
19299
19692
|
};
|
|
19300
19693
|
};
|
|
19301
19694
|
|
|
19302
|
-
},{"./_cof":
|
|
19695
|
+
},{"./_cof":87,"./_global":102,"./_task":149}],121:[function(require,module,exports){
|
|
19303
19696
|
'use strict';
|
|
19304
19697
|
// 25.4.1.5 NewPromiseCapability(C)
|
|
19305
19698
|
var aFunction = require('./_a-function');
|
|
@@ -19319,9 +19712,10 @@ module.exports.f = function (C) {
|
|
|
19319
19712
|
return new PromiseCapability(C);
|
|
19320
19713
|
};
|
|
19321
19714
|
|
|
19322
|
-
},{"./_a-function":
|
|
19715
|
+
},{"./_a-function":77}],122:[function(require,module,exports){
|
|
19323
19716
|
'use strict';
|
|
19324
19717
|
// 19.1.2.1 Object.assign(target, source, ...)
|
|
19718
|
+
var DESCRIPTORS = require('./_descriptors');
|
|
19325
19719
|
var getKeys = require('./_object-keys');
|
|
19326
19720
|
var gOPS = require('./_object-gops');
|
|
19327
19721
|
var pIE = require('./_object-pie');
|
|
@@ -19351,11 +19745,14 @@ module.exports = !$assign || require('./_fails')(function () {
|
|
|
19351
19745
|
var length = keys.length;
|
|
19352
19746
|
var j = 0;
|
|
19353
19747
|
var key;
|
|
19354
|
-
while (length > j)
|
|
19748
|
+
while (length > j) {
|
|
19749
|
+
key = keys[j++];
|
|
19750
|
+
if (!DESCRIPTORS || isEnum.call(S, key)) T[key] = S[key];
|
|
19751
|
+
}
|
|
19355
19752
|
} return T;
|
|
19356
19753
|
} : $assign;
|
|
19357
19754
|
|
|
19358
|
-
},{"./_fails":
|
|
19755
|
+
},{"./_descriptors":95,"./_fails":100,"./_iobject":108,"./_object-gops":129,"./_object-keys":132,"./_object-pie":133,"./_to-object":154}],123:[function(require,module,exports){
|
|
19359
19756
|
// 19.1.2.2 / 15.2.3.5 Object.create(O [, Properties])
|
|
19360
19757
|
var anObject = require('./_an-object');
|
|
19361
19758
|
var dPs = require('./_object-dps');
|
|
@@ -19398,7 +19795,7 @@ module.exports = Object.create || function create(O, Properties) {
|
|
|
19398
19795
|
return Properties === undefined ? result : dPs(result, Properties);
|
|
19399
19796
|
};
|
|
19400
19797
|
|
|
19401
|
-
},{"./_an-object":
|
|
19798
|
+
},{"./_an-object":80,"./_dom-create":96,"./_enum-bug-keys":97,"./_html":105,"./_object-dps":125,"./_shared-key":145}],124:[function(require,module,exports){
|
|
19402
19799
|
var anObject = require('./_an-object');
|
|
19403
19800
|
var IE8_DOM_DEFINE = require('./_ie8-dom-define');
|
|
19404
19801
|
var toPrimitive = require('./_to-primitive');
|
|
@@ -19416,7 +19813,7 @@ exports.f = require('./_descriptors') ? Object.defineProperty : function defineP
|
|
|
19416
19813
|
return O;
|
|
19417
19814
|
};
|
|
19418
19815
|
|
|
19419
|
-
},{"./_an-object":
|
|
19816
|
+
},{"./_an-object":80,"./_descriptors":95,"./_ie8-dom-define":106,"./_to-primitive":155}],125:[function(require,module,exports){
|
|
19420
19817
|
var dP = require('./_object-dp');
|
|
19421
19818
|
var anObject = require('./_an-object');
|
|
19422
19819
|
var getKeys = require('./_object-keys');
|
|
@@ -19431,7 +19828,7 @@ module.exports = require('./_descriptors') ? Object.defineProperties : function
|
|
|
19431
19828
|
return O;
|
|
19432
19829
|
};
|
|
19433
19830
|
|
|
19434
|
-
},{"./_an-object":
|
|
19831
|
+
},{"./_an-object":80,"./_descriptors":95,"./_object-dp":124,"./_object-keys":132}],126:[function(require,module,exports){
|
|
19435
19832
|
var pIE = require('./_object-pie');
|
|
19436
19833
|
var createDesc = require('./_property-desc');
|
|
19437
19834
|
var toIObject = require('./_to-iobject');
|
|
@@ -19449,7 +19846,7 @@ exports.f = require('./_descriptors') ? gOPD : function getOwnPropertyDescriptor
|
|
|
19449
19846
|
if (has(O, P)) return createDesc(!pIE.f.call(O, P), O[P]);
|
|
19450
19847
|
};
|
|
19451
19848
|
|
|
19452
|
-
},{"./_descriptors":
|
|
19849
|
+
},{"./_descriptors":95,"./_has":103,"./_ie8-dom-define":106,"./_object-pie":133,"./_property-desc":137,"./_to-iobject":152,"./_to-primitive":155}],127:[function(require,module,exports){
|
|
19453
19850
|
// fallback for IE11 buggy Object.getOwnPropertyNames with iframe and window
|
|
19454
19851
|
var toIObject = require('./_to-iobject');
|
|
19455
19852
|
var gOPN = require('./_object-gopn').f;
|
|
@@ -19470,7 +19867,7 @@ module.exports.f = function getOwnPropertyNames(it) {
|
|
|
19470
19867
|
return windowNames && toString.call(it) == '[object Window]' ? getWindowNames(it) : gOPN(toIObject(it));
|
|
19471
19868
|
};
|
|
19472
19869
|
|
|
19473
|
-
},{"./_object-gopn":
|
|
19870
|
+
},{"./_object-gopn":128,"./_to-iobject":152}],128:[function(require,module,exports){
|
|
19474
19871
|
// 19.1.2.7 / 15.2.3.4 Object.getOwnPropertyNames(O)
|
|
19475
19872
|
var $keys = require('./_object-keys-internal');
|
|
19476
19873
|
var hiddenKeys = require('./_enum-bug-keys').concat('length', 'prototype');
|
|
@@ -19479,10 +19876,10 @@ exports.f = Object.getOwnPropertyNames || function getOwnPropertyNames(O) {
|
|
|
19479
19876
|
return $keys(O, hiddenKeys);
|
|
19480
19877
|
};
|
|
19481
19878
|
|
|
19482
|
-
},{"./_enum-bug-keys":
|
|
19879
|
+
},{"./_enum-bug-keys":97,"./_object-keys-internal":131}],129:[function(require,module,exports){
|
|
19483
19880
|
exports.f = Object.getOwnPropertySymbols;
|
|
19484
19881
|
|
|
19485
|
-
},{}],
|
|
19882
|
+
},{}],130:[function(require,module,exports){
|
|
19486
19883
|
// 19.1.2.9 / 15.2.3.2 Object.getPrototypeOf(O)
|
|
19487
19884
|
var has = require('./_has');
|
|
19488
19885
|
var toObject = require('./_to-object');
|
|
@@ -19497,7 +19894,7 @@ module.exports = Object.getPrototypeOf || function (O) {
|
|
|
19497
19894
|
} return O instanceof Object ? ObjectProto : null;
|
|
19498
19895
|
};
|
|
19499
19896
|
|
|
19500
|
-
},{"./_has":
|
|
19897
|
+
},{"./_has":103,"./_shared-key":145,"./_to-object":154}],131:[function(require,module,exports){
|
|
19501
19898
|
var has = require('./_has');
|
|
19502
19899
|
var toIObject = require('./_to-iobject');
|
|
19503
19900
|
var arrayIndexOf = require('./_array-includes')(false);
|
|
@@ -19516,7 +19913,7 @@ module.exports = function (object, names) {
|
|
|
19516
19913
|
return result;
|
|
19517
19914
|
};
|
|
19518
19915
|
|
|
19519
|
-
},{"./_array-includes":
|
|
19916
|
+
},{"./_array-includes":82,"./_has":103,"./_shared-key":145,"./_to-iobject":152}],132:[function(require,module,exports){
|
|
19520
19917
|
// 19.1.2.14 / 15.2.3.14 Object.keys(O)
|
|
19521
19918
|
var $keys = require('./_object-keys-internal');
|
|
19522
19919
|
var enumBugKeys = require('./_enum-bug-keys');
|
|
@@ -19525,10 +19922,10 @@ module.exports = Object.keys || function keys(O) {
|
|
|
19525
19922
|
return $keys(O, enumBugKeys);
|
|
19526
19923
|
};
|
|
19527
19924
|
|
|
19528
|
-
},{"./_enum-bug-keys":
|
|
19925
|
+
},{"./_enum-bug-keys":97,"./_object-keys-internal":131}],133:[function(require,module,exports){
|
|
19529
19926
|
exports.f = {}.propertyIsEnumerable;
|
|
19530
19927
|
|
|
19531
|
-
},{}],
|
|
19928
|
+
},{}],134:[function(require,module,exports){
|
|
19532
19929
|
// most Object methods by ES6 should accept primitives
|
|
19533
19930
|
var $export = require('./_export');
|
|
19534
19931
|
var core = require('./_core');
|
|
@@ -19540,7 +19937,7 @@ module.exports = function (KEY, exec) {
|
|
|
19540
19937
|
$export($export.S + $export.F * fails(function () { fn(1); }), 'Object', exp);
|
|
19541
19938
|
};
|
|
19542
19939
|
|
|
19543
|
-
},{"./_core":
|
|
19940
|
+
},{"./_core":91,"./_export":99,"./_fails":100}],135:[function(require,module,exports){
|
|
19544
19941
|
module.exports = function (exec) {
|
|
19545
19942
|
try {
|
|
19546
19943
|
return { e: false, v: exec() };
|
|
@@ -19549,7 +19946,7 @@ module.exports = function (exec) {
|
|
|
19549
19946
|
}
|
|
19550
19947
|
};
|
|
19551
19948
|
|
|
19552
|
-
},{}],
|
|
19949
|
+
},{}],136:[function(require,module,exports){
|
|
19553
19950
|
var anObject = require('./_an-object');
|
|
19554
19951
|
var isObject = require('./_is-object');
|
|
19555
19952
|
var newPromiseCapability = require('./_new-promise-capability');
|
|
@@ -19563,7 +19960,7 @@ module.exports = function (C, x) {
|
|
|
19563
19960
|
return promiseCapability.promise;
|
|
19564
19961
|
};
|
|
19565
19962
|
|
|
19566
|
-
},{"./_an-object":
|
|
19963
|
+
},{"./_an-object":80,"./_is-object":111,"./_new-promise-capability":121}],137:[function(require,module,exports){
|
|
19567
19964
|
module.exports = function (bitmap, value) {
|
|
19568
19965
|
return {
|
|
19569
19966
|
enumerable: !(bitmap & 1),
|
|
@@ -19573,7 +19970,7 @@ module.exports = function (bitmap, value) {
|
|
|
19573
19970
|
};
|
|
19574
19971
|
};
|
|
19575
19972
|
|
|
19576
|
-
},{}],
|
|
19973
|
+
},{}],138:[function(require,module,exports){
|
|
19577
19974
|
var hide = require('./_hide');
|
|
19578
19975
|
module.exports = function (target, src, safe) {
|
|
19579
19976
|
for (var key in src) {
|
|
@@ -19582,10 +19979,10 @@ module.exports = function (target, src, safe) {
|
|
|
19582
19979
|
} return target;
|
|
19583
19980
|
};
|
|
19584
19981
|
|
|
19585
|
-
},{"./_hide":
|
|
19982
|
+
},{"./_hide":104}],139:[function(require,module,exports){
|
|
19586
19983
|
module.exports = require('./_hide');
|
|
19587
19984
|
|
|
19588
|
-
},{"./_hide":
|
|
19985
|
+
},{"./_hide":104}],140:[function(require,module,exports){
|
|
19589
19986
|
'use strict';
|
|
19590
19987
|
// https://tc39.github.io/proposal-setmap-offrom/
|
|
19591
19988
|
var $export = require('./_export');
|
|
@@ -19615,7 +20012,7 @@ module.exports = function (COLLECTION) {
|
|
|
19615
20012
|
} });
|
|
19616
20013
|
};
|
|
19617
20014
|
|
|
19618
|
-
},{"./_a-function":
|
|
20015
|
+
},{"./_a-function":77,"./_ctx":93,"./_export":99,"./_for-of":101}],141:[function(require,module,exports){
|
|
19619
20016
|
'use strict';
|
|
19620
20017
|
// https://tc39.github.io/proposal-setmap-offrom/
|
|
19621
20018
|
var $export = require('./_export');
|
|
@@ -19629,7 +20026,7 @@ module.exports = function (COLLECTION) {
|
|
|
19629
20026
|
} });
|
|
19630
20027
|
};
|
|
19631
20028
|
|
|
19632
|
-
},{"./_export":
|
|
20029
|
+
},{"./_export":99}],142:[function(require,module,exports){
|
|
19633
20030
|
// Works with __proto__ only. Old v8 can't work with null proto objects.
|
|
19634
20031
|
/* eslint-disable no-proto */
|
|
19635
20032
|
var isObject = require('./_is-object');
|
|
@@ -19656,7 +20053,7 @@ module.exports = {
|
|
|
19656
20053
|
check: check
|
|
19657
20054
|
};
|
|
19658
20055
|
|
|
19659
|
-
},{"./_an-object":
|
|
20056
|
+
},{"./_an-object":80,"./_ctx":93,"./_is-object":111,"./_object-gopd":126}],143:[function(require,module,exports){
|
|
19660
20057
|
'use strict';
|
|
19661
20058
|
var global = require('./_global');
|
|
19662
20059
|
var core = require('./_core');
|
|
@@ -19672,7 +20069,7 @@ module.exports = function (KEY) {
|
|
|
19672
20069
|
});
|
|
19673
20070
|
};
|
|
19674
20071
|
|
|
19675
|
-
},{"./_core":
|
|
20072
|
+
},{"./_core":91,"./_descriptors":95,"./_global":102,"./_object-dp":124,"./_wks":161}],144:[function(require,module,exports){
|
|
19676
20073
|
var def = require('./_object-dp').f;
|
|
19677
20074
|
var has = require('./_has');
|
|
19678
20075
|
var TAG = require('./_wks')('toStringTag');
|
|
@@ -19681,14 +20078,14 @@ module.exports = function (it, tag, stat) {
|
|
|
19681
20078
|
if (it && !has(it = stat ? it : it.prototype, TAG)) def(it, TAG, { configurable: true, value: tag });
|
|
19682
20079
|
};
|
|
19683
20080
|
|
|
19684
|
-
},{"./_has":
|
|
20081
|
+
},{"./_has":103,"./_object-dp":124,"./_wks":161}],145:[function(require,module,exports){
|
|
19685
20082
|
var shared = require('./_shared')('keys');
|
|
19686
20083
|
var uid = require('./_uid');
|
|
19687
20084
|
module.exports = function (key) {
|
|
19688
20085
|
return shared[key] || (shared[key] = uid(key));
|
|
19689
20086
|
};
|
|
19690
20087
|
|
|
19691
|
-
},{"./_shared":
|
|
20088
|
+
},{"./_shared":146,"./_uid":156}],146:[function(require,module,exports){
|
|
19692
20089
|
var core = require('./_core');
|
|
19693
20090
|
var global = require('./_global');
|
|
19694
20091
|
var SHARED = '__core-js_shared__';
|
|
@@ -19699,10 +20096,10 @@ var store = global[SHARED] || (global[SHARED] = {});
|
|
|
19699
20096
|
})('versions', []).push({
|
|
19700
20097
|
version: core.version,
|
|
19701
20098
|
mode: require('./_library') ? 'pure' : 'global',
|
|
19702
|
-
copyright: '©
|
|
20099
|
+
copyright: '© 2020 Denis Pushkarev (zloirock.ru)'
|
|
19703
20100
|
});
|
|
19704
20101
|
|
|
19705
|
-
},{"./_core":
|
|
20102
|
+
},{"./_core":91,"./_global":102,"./_library":118}],147:[function(require,module,exports){
|
|
19706
20103
|
// 7.3.20 SpeciesConstructor(O, defaultConstructor)
|
|
19707
20104
|
var anObject = require('./_an-object');
|
|
19708
20105
|
var aFunction = require('./_a-function');
|
|
@@ -19713,7 +20110,7 @@ module.exports = function (O, D) {
|
|
|
19713
20110
|
return C === undefined || (S = anObject(C)[SPECIES]) == undefined ? D : aFunction(S);
|
|
19714
20111
|
};
|
|
19715
20112
|
|
|
19716
|
-
},{"./_a-function":
|
|
20113
|
+
},{"./_a-function":77,"./_an-object":80,"./_wks":161}],148:[function(require,module,exports){
|
|
19717
20114
|
var toInteger = require('./_to-integer');
|
|
19718
20115
|
var defined = require('./_defined');
|
|
19719
20116
|
// true -> String#at
|
|
@@ -19732,7 +20129,7 @@ module.exports = function (TO_STRING) {
|
|
|
19732
20129
|
};
|
|
19733
20130
|
};
|
|
19734
20131
|
|
|
19735
|
-
},{"./_defined":
|
|
20132
|
+
},{"./_defined":94,"./_to-integer":151}],149:[function(require,module,exports){
|
|
19736
20133
|
var ctx = require('./_ctx');
|
|
19737
20134
|
var invoke = require('./_invoke');
|
|
19738
20135
|
var html = require('./_html');
|
|
@@ -19818,7 +20215,7 @@ module.exports = {
|
|
|
19818
20215
|
clear: clearTask
|
|
19819
20216
|
};
|
|
19820
20217
|
|
|
19821
|
-
},{"./_cof":
|
|
20218
|
+
},{"./_cof":87,"./_ctx":93,"./_dom-create":96,"./_global":102,"./_html":105,"./_invoke":107}],150:[function(require,module,exports){
|
|
19822
20219
|
var toInteger = require('./_to-integer');
|
|
19823
20220
|
var max = Math.max;
|
|
19824
20221
|
var min = Math.min;
|
|
@@ -19827,7 +20224,7 @@ module.exports = function (index, length) {
|
|
|
19827
20224
|
return index < 0 ? max(index + length, 0) : min(index, length);
|
|
19828
20225
|
};
|
|
19829
20226
|
|
|
19830
|
-
},{"./_to-integer":
|
|
20227
|
+
},{"./_to-integer":151}],151:[function(require,module,exports){
|
|
19831
20228
|
// 7.1.4 ToInteger
|
|
19832
20229
|
var ceil = Math.ceil;
|
|
19833
20230
|
var floor = Math.floor;
|
|
@@ -19835,7 +20232,7 @@ module.exports = function (it) {
|
|
|
19835
20232
|
return isNaN(it = +it) ? 0 : (it > 0 ? floor : ceil)(it);
|
|
19836
20233
|
};
|
|
19837
20234
|
|
|
19838
|
-
},{}],
|
|
20235
|
+
},{}],152:[function(require,module,exports){
|
|
19839
20236
|
// to indexed object, toObject with fallback for non-array-like ES3 strings
|
|
19840
20237
|
var IObject = require('./_iobject');
|
|
19841
20238
|
var defined = require('./_defined');
|
|
@@ -19843,7 +20240,7 @@ module.exports = function (it) {
|
|
|
19843
20240
|
return IObject(defined(it));
|
|
19844
20241
|
};
|
|
19845
20242
|
|
|
19846
|
-
},{"./_defined":
|
|
20243
|
+
},{"./_defined":94,"./_iobject":108}],153:[function(require,module,exports){
|
|
19847
20244
|
// 7.1.15 ToLength
|
|
19848
20245
|
var toInteger = require('./_to-integer');
|
|
19849
20246
|
var min = Math.min;
|
|
@@ -19851,14 +20248,14 @@ module.exports = function (it) {
|
|
|
19851
20248
|
return it > 0 ? min(toInteger(it), 0x1fffffffffffff) : 0; // pow(2, 53) - 1 == 9007199254740991
|
|
19852
20249
|
};
|
|
19853
20250
|
|
|
19854
|
-
},{"./_to-integer":
|
|
20251
|
+
},{"./_to-integer":151}],154:[function(require,module,exports){
|
|
19855
20252
|
// 7.1.13 ToObject(argument)
|
|
19856
20253
|
var defined = require('./_defined');
|
|
19857
20254
|
module.exports = function (it) {
|
|
19858
20255
|
return Object(defined(it));
|
|
19859
20256
|
};
|
|
19860
20257
|
|
|
19861
|
-
},{"./_defined":
|
|
20258
|
+
},{"./_defined":94}],155:[function(require,module,exports){
|
|
19862
20259
|
// 7.1.1 ToPrimitive(input [, PreferredType])
|
|
19863
20260
|
var isObject = require('./_is-object');
|
|
19864
20261
|
// instead of the ES6 spec version, we didn't implement @@toPrimitive case
|
|
@@ -19872,27 +20269,27 @@ module.exports = function (it, S) {
|
|
|
19872
20269
|
throw TypeError("Can't convert object to primitive value");
|
|
19873
20270
|
};
|
|
19874
20271
|
|
|
19875
|
-
},{"./_is-object":
|
|
20272
|
+
},{"./_is-object":111}],156:[function(require,module,exports){
|
|
19876
20273
|
var id = 0;
|
|
19877
20274
|
var px = Math.random();
|
|
19878
20275
|
module.exports = function (key) {
|
|
19879
20276
|
return 'Symbol('.concat(key === undefined ? '' : key, ')_', (++id + px).toString(36));
|
|
19880
20277
|
};
|
|
19881
20278
|
|
|
19882
|
-
},{}],
|
|
20279
|
+
},{}],157:[function(require,module,exports){
|
|
19883
20280
|
var global = require('./_global');
|
|
19884
20281
|
var navigator = global.navigator;
|
|
19885
20282
|
|
|
19886
20283
|
module.exports = navigator && navigator.userAgent || '';
|
|
19887
20284
|
|
|
19888
|
-
},{"./_global":
|
|
20285
|
+
},{"./_global":102}],158:[function(require,module,exports){
|
|
19889
20286
|
var isObject = require('./_is-object');
|
|
19890
20287
|
module.exports = function (it, TYPE) {
|
|
19891
20288
|
if (!isObject(it) || it._t !== TYPE) throw TypeError('Incompatible receiver, ' + TYPE + ' required!');
|
|
19892
20289
|
return it;
|
|
19893
20290
|
};
|
|
19894
20291
|
|
|
19895
|
-
},{"./_is-object":
|
|
20292
|
+
},{"./_is-object":111}],159:[function(require,module,exports){
|
|
19896
20293
|
var global = require('./_global');
|
|
19897
20294
|
var core = require('./_core');
|
|
19898
20295
|
var LIBRARY = require('./_library');
|
|
@@ -19903,10 +20300,10 @@ module.exports = function (name) {
|
|
|
19903
20300
|
if (name.charAt(0) != '_' && !(name in $Symbol)) defineProperty($Symbol, name, { value: wksExt.f(name) });
|
|
19904
20301
|
};
|
|
19905
20302
|
|
|
19906
|
-
},{"./_core":
|
|
20303
|
+
},{"./_core":91,"./_global":102,"./_library":118,"./_object-dp":124,"./_wks-ext":160}],160:[function(require,module,exports){
|
|
19907
20304
|
exports.f = require('./_wks');
|
|
19908
20305
|
|
|
19909
|
-
},{"./_wks":
|
|
20306
|
+
},{"./_wks":161}],161:[function(require,module,exports){
|
|
19910
20307
|
var store = require('./_shared')('wks');
|
|
19911
20308
|
var uid = require('./_uid');
|
|
19912
20309
|
var Symbol = require('./_global').Symbol;
|
|
@@ -19919,7 +20316,7 @@ var $exports = module.exports = function (name) {
|
|
|
19919
20316
|
|
|
19920
20317
|
$exports.store = store;
|
|
19921
20318
|
|
|
19922
|
-
},{"./_global":
|
|
20319
|
+
},{"./_global":102,"./_shared":146,"./_uid":156}],162:[function(require,module,exports){
|
|
19923
20320
|
var classof = require('./_classof');
|
|
19924
20321
|
var ITERATOR = require('./_wks')('iterator');
|
|
19925
20322
|
var Iterators = require('./_iterators');
|
|
@@ -19929,7 +20326,7 @@ module.exports = require('./_core').getIteratorMethod = function (it) {
|
|
|
19929
20326
|
|| Iterators[classof(it)];
|
|
19930
20327
|
};
|
|
19931
20328
|
|
|
19932
|
-
},{"./_classof":
|
|
20329
|
+
},{"./_classof":86,"./_core":91,"./_iterators":117,"./_wks":161}],163:[function(require,module,exports){
|
|
19933
20330
|
var anObject = require('./_an-object');
|
|
19934
20331
|
var get = require('./core.get-iterator-method');
|
|
19935
20332
|
module.exports = require('./_core').getIterator = function (it) {
|
|
@@ -19938,7 +20335,7 @@ module.exports = require('./_core').getIterator = function (it) {
|
|
|
19938
20335
|
return anObject(iterFn.call(it));
|
|
19939
20336
|
};
|
|
19940
20337
|
|
|
19941
|
-
},{"./_an-object":
|
|
20338
|
+
},{"./_an-object":80,"./_core":91,"./core.get-iterator-method":162}],164:[function(require,module,exports){
|
|
19942
20339
|
'use strict';
|
|
19943
20340
|
var ctx = require('./_ctx');
|
|
19944
20341
|
var $export = require('./_export');
|
|
@@ -19977,7 +20374,7 @@ $export($export.S + $export.F * !require('./_iter-detect')(function (iter) { Arr
|
|
|
19977
20374
|
}
|
|
19978
20375
|
});
|
|
19979
20376
|
|
|
19980
|
-
},{"./_create-property":
|
|
20377
|
+
},{"./_create-property":92,"./_ctx":93,"./_export":99,"./_is-array-iter":109,"./_iter-call":112,"./_iter-detect":115,"./_to-length":153,"./_to-object":154,"./core.get-iterator-method":162}],165:[function(require,module,exports){
|
|
19981
20378
|
'use strict';
|
|
19982
20379
|
var addToUnscopables = require('./_add-to-unscopables');
|
|
19983
20380
|
var step = require('./_iter-step');
|
|
@@ -20013,7 +20410,7 @@ addToUnscopables('keys');
|
|
|
20013
20410
|
addToUnscopables('values');
|
|
20014
20411
|
addToUnscopables('entries');
|
|
20015
20412
|
|
|
20016
|
-
},{"./_add-to-unscopables":
|
|
20413
|
+
},{"./_add-to-unscopables":78,"./_iter-define":114,"./_iter-step":116,"./_iterators":117,"./_to-iobject":152}],166:[function(require,module,exports){
|
|
20017
20414
|
'use strict';
|
|
20018
20415
|
var strong = require('./_collection-strong');
|
|
20019
20416
|
var validate = require('./_validate-collection');
|
|
@@ -20034,34 +20431,34 @@ module.exports = require('./_collection')(MAP, function (get) {
|
|
|
20034
20431
|
}
|
|
20035
20432
|
}, strong, true);
|
|
20036
20433
|
|
|
20037
|
-
},{"./_collection":
|
|
20434
|
+
},{"./_collection":90,"./_collection-strong":88,"./_validate-collection":158}],167:[function(require,module,exports){
|
|
20038
20435
|
// 20.1.2.1 Number.EPSILON
|
|
20039
20436
|
var $export = require('./_export');
|
|
20040
20437
|
|
|
20041
20438
|
$export($export.S, 'Number', { EPSILON: Math.pow(2, -52) });
|
|
20042
20439
|
|
|
20043
|
-
},{"./_export":
|
|
20440
|
+
},{"./_export":99}],168:[function(require,module,exports){
|
|
20044
20441
|
// 19.1.3.1 Object.assign(target, source)
|
|
20045
20442
|
var $export = require('./_export');
|
|
20046
20443
|
|
|
20047
20444
|
$export($export.S + $export.F, 'Object', { assign: require('./_object-assign') });
|
|
20048
20445
|
|
|
20049
|
-
},{"./_export":
|
|
20446
|
+
},{"./_export":99,"./_object-assign":122}],169:[function(require,module,exports){
|
|
20050
20447
|
var $export = require('./_export');
|
|
20051
20448
|
// 19.1.2.2 / 15.2.3.5 Object.create(O [, Properties])
|
|
20052
20449
|
$export($export.S, 'Object', { create: require('./_object-create') });
|
|
20053
20450
|
|
|
20054
|
-
},{"./_export":
|
|
20451
|
+
},{"./_export":99,"./_object-create":123}],170:[function(require,module,exports){
|
|
20055
20452
|
var $export = require('./_export');
|
|
20056
20453
|
// 19.1.2.3 / 15.2.3.7 Object.defineProperties(O, Properties)
|
|
20057
20454
|
$export($export.S + $export.F * !require('./_descriptors'), 'Object', { defineProperties: require('./_object-dps') });
|
|
20058
20455
|
|
|
20059
|
-
},{"./_descriptors":
|
|
20456
|
+
},{"./_descriptors":95,"./_export":99,"./_object-dps":125}],171:[function(require,module,exports){
|
|
20060
20457
|
var $export = require('./_export');
|
|
20061
20458
|
// 19.1.2.4 / 15.2.3.6 Object.defineProperty(O, P, Attributes)
|
|
20062
20459
|
$export($export.S + $export.F * !require('./_descriptors'), 'Object', { defineProperty: require('./_object-dp').f });
|
|
20063
20460
|
|
|
20064
|
-
},{"./_descriptors":
|
|
20461
|
+
},{"./_descriptors":95,"./_export":99,"./_object-dp":124}],172:[function(require,module,exports){
|
|
20065
20462
|
// 19.1.2.5 Object.freeze(O)
|
|
20066
20463
|
var isObject = require('./_is-object');
|
|
20067
20464
|
var meta = require('./_meta').onFreeze;
|
|
@@ -20072,7 +20469,7 @@ require('./_object-sap')('freeze', function ($freeze) {
|
|
|
20072
20469
|
};
|
|
20073
20470
|
});
|
|
20074
20471
|
|
|
20075
|
-
},{"./_is-object":
|
|
20472
|
+
},{"./_is-object":111,"./_meta":119,"./_object-sap":134}],173:[function(require,module,exports){
|
|
20076
20473
|
// 19.1.2.6 Object.getOwnPropertyDescriptor(O, P)
|
|
20077
20474
|
var toIObject = require('./_to-iobject');
|
|
20078
20475
|
var $getOwnPropertyDescriptor = require('./_object-gopd').f;
|
|
@@ -20083,7 +20480,7 @@ require('./_object-sap')('getOwnPropertyDescriptor', function () {
|
|
|
20083
20480
|
};
|
|
20084
20481
|
});
|
|
20085
20482
|
|
|
20086
|
-
},{"./_object-gopd":
|
|
20483
|
+
},{"./_object-gopd":126,"./_object-sap":134,"./_to-iobject":152}],174:[function(require,module,exports){
|
|
20087
20484
|
// 19.1.2.14 Object.keys(O)
|
|
20088
20485
|
var toObject = require('./_to-object');
|
|
20089
20486
|
var $keys = require('./_object-keys');
|
|
@@ -20094,14 +20491,14 @@ require('./_object-sap')('keys', function () {
|
|
|
20094
20491
|
};
|
|
20095
20492
|
});
|
|
20096
20493
|
|
|
20097
|
-
},{"./_object-keys":
|
|
20494
|
+
},{"./_object-keys":132,"./_object-sap":134,"./_to-object":154}],175:[function(require,module,exports){
|
|
20098
20495
|
// 19.1.3.19 Object.setPrototypeOf(O, proto)
|
|
20099
20496
|
var $export = require('./_export');
|
|
20100
20497
|
$export($export.S, 'Object', { setPrototypeOf: require('./_set-proto').set });
|
|
20101
20498
|
|
|
20102
|
-
},{"./_export":
|
|
20499
|
+
},{"./_export":99,"./_set-proto":142}],176:[function(require,module,exports){
|
|
20103
20500
|
arguments[4][40][0].apply(exports,arguments)
|
|
20104
|
-
},{"dup":40}],
|
|
20501
|
+
},{"dup":40}],177:[function(require,module,exports){
|
|
20105
20502
|
'use strict';
|
|
20106
20503
|
var LIBRARY = require('./_library');
|
|
20107
20504
|
var global = require('./_global');
|
|
@@ -20389,7 +20786,7 @@ $export($export.S + $export.F * !(USE_NATIVE && require('./_iter-detect')(functi
|
|
|
20389
20786
|
}
|
|
20390
20787
|
});
|
|
20391
20788
|
|
|
20392
|
-
},{"./_a-function":
|
|
20789
|
+
},{"./_a-function":77,"./_an-instance":79,"./_classof":86,"./_core":91,"./_ctx":93,"./_export":99,"./_for-of":101,"./_global":102,"./_is-object":111,"./_iter-detect":115,"./_library":118,"./_microtask":120,"./_new-promise-capability":121,"./_perform":135,"./_promise-resolve":136,"./_redefine-all":138,"./_set-species":143,"./_set-to-string-tag":144,"./_species-constructor":147,"./_task":149,"./_user-agent":157,"./_wks":161}],178:[function(require,module,exports){
|
|
20393
20790
|
'use strict';
|
|
20394
20791
|
var strong = require('./_collection-strong');
|
|
20395
20792
|
var validate = require('./_validate-collection');
|
|
@@ -20405,7 +20802,7 @@ module.exports = require('./_collection')(SET, function (get) {
|
|
|
20405
20802
|
}
|
|
20406
20803
|
}, strong);
|
|
20407
20804
|
|
|
20408
|
-
},{"./_collection":
|
|
20805
|
+
},{"./_collection":90,"./_collection-strong":88,"./_validate-collection":158}],179:[function(require,module,exports){
|
|
20409
20806
|
var $export = require('./_export');
|
|
20410
20807
|
var toAbsoluteIndex = require('./_to-absolute-index');
|
|
20411
20808
|
var fromCharCode = String.fromCharCode;
|
|
@@ -20430,7 +20827,7 @@ $export($export.S + $export.F * (!!$fromCodePoint && $fromCodePoint.length != 1)
|
|
|
20430
20827
|
}
|
|
20431
20828
|
});
|
|
20432
20829
|
|
|
20433
|
-
},{"./_export":
|
|
20830
|
+
},{"./_export":99,"./_to-absolute-index":150}],180:[function(require,module,exports){
|
|
20434
20831
|
'use strict';
|
|
20435
20832
|
var $at = require('./_string-at')(true);
|
|
20436
20833
|
|
|
@@ -20449,7 +20846,7 @@ require('./_iter-define')(String, 'String', function (iterated) {
|
|
|
20449
20846
|
return { value: point, done: false };
|
|
20450
20847
|
});
|
|
20451
20848
|
|
|
20452
|
-
},{"./_iter-define":
|
|
20849
|
+
},{"./_iter-define":114,"./_string-at":148}],181:[function(require,module,exports){
|
|
20453
20850
|
'use strict';
|
|
20454
20851
|
// ECMAScript 6 symbols shim
|
|
20455
20852
|
var global = require('./_global');
|
|
@@ -20469,12 +20866,14 @@ var enumKeys = require('./_enum-keys');
|
|
|
20469
20866
|
var isArray = require('./_is-array');
|
|
20470
20867
|
var anObject = require('./_an-object');
|
|
20471
20868
|
var isObject = require('./_is-object');
|
|
20869
|
+
var toObject = require('./_to-object');
|
|
20472
20870
|
var toIObject = require('./_to-iobject');
|
|
20473
20871
|
var toPrimitive = require('./_to-primitive');
|
|
20474
20872
|
var createDesc = require('./_property-desc');
|
|
20475
20873
|
var _create = require('./_object-create');
|
|
20476
20874
|
var gOPNExt = require('./_object-gopn-ext');
|
|
20477
20875
|
var $GOPD = require('./_object-gopd');
|
|
20876
|
+
var $GOPS = require('./_object-gops');
|
|
20478
20877
|
var $DP = require('./_object-dp');
|
|
20479
20878
|
var $keys = require('./_object-keys');
|
|
20480
20879
|
var gOPD = $GOPD.f;
|
|
@@ -20491,7 +20890,7 @@ var SymbolRegistry = shared('symbol-registry');
|
|
|
20491
20890
|
var AllSymbols = shared('symbols');
|
|
20492
20891
|
var OPSymbols = shared('op-symbols');
|
|
20493
20892
|
var ObjectProto = Object[PROTOTYPE];
|
|
20494
|
-
var USE_NATIVE = typeof $Symbol == 'function';
|
|
20893
|
+
var USE_NATIVE = typeof $Symbol == 'function' && !!$GOPS.f;
|
|
20495
20894
|
var QObject = global.QObject;
|
|
20496
20895
|
// Don't use setters in Qt Script, https://github.com/zloirock/core-js/issues/173
|
|
20497
20896
|
var setter = !QObject || !QObject[PROTOTYPE] || !QObject[PROTOTYPE].findChild;
|
|
@@ -20601,7 +21000,7 @@ if (!USE_NATIVE) {
|
|
|
20601
21000
|
$DP.f = $defineProperty;
|
|
20602
21001
|
require('./_object-gopn').f = gOPNExt.f = $getOwnPropertyNames;
|
|
20603
21002
|
require('./_object-pie').f = $propertyIsEnumerable;
|
|
20604
|
-
|
|
21003
|
+
$GOPS.f = $getOwnPropertySymbols;
|
|
20605
21004
|
|
|
20606
21005
|
if (DESCRIPTORS && !require('./_library')) {
|
|
20607
21006
|
redefine(ObjectProto, 'propertyIsEnumerable', $propertyIsEnumerable, true);
|
|
@@ -20652,6 +21051,16 @@ $export($export.S + $export.F * !USE_NATIVE, 'Object', {
|
|
|
20652
21051
|
getOwnPropertySymbols: $getOwnPropertySymbols
|
|
20653
21052
|
});
|
|
20654
21053
|
|
|
21054
|
+
// Chrome 38 and 39 `Object.getOwnPropertySymbols` fails on primitives
|
|
21055
|
+
// https://bugs.chromium.org/p/v8/issues/detail?id=3443
|
|
21056
|
+
var FAILS_ON_PRIMITIVES = $fails(function () { $GOPS.f(1); });
|
|
21057
|
+
|
|
21058
|
+
$export($export.S + $export.F * FAILS_ON_PRIMITIVES, 'Object', {
|
|
21059
|
+
getOwnPropertySymbols: function getOwnPropertySymbols(it) {
|
|
21060
|
+
return $GOPS.f(toObject(it));
|
|
21061
|
+
}
|
|
21062
|
+
});
|
|
21063
|
+
|
|
20655
21064
|
// 24.3.2 JSON.stringify(value [, replacer [, space]])
|
|
20656
21065
|
$JSON && $export($export.S + $export.F * (!USE_NATIVE || $fails(function () {
|
|
20657
21066
|
var S = $Symbol();
|
|
@@ -20685,21 +21094,21 @@ setToStringTag(Math, 'Math', true);
|
|
|
20685
21094
|
// 24.3.3 JSON[@@toStringTag]
|
|
20686
21095
|
setToStringTag(global.JSON, 'JSON', true);
|
|
20687
21096
|
|
|
20688
|
-
},{"./_an-object":
|
|
21097
|
+
},{"./_an-object":80,"./_descriptors":95,"./_enum-keys":98,"./_export":99,"./_fails":100,"./_global":102,"./_has":103,"./_hide":104,"./_is-array":110,"./_is-object":111,"./_library":118,"./_meta":119,"./_object-create":123,"./_object-dp":124,"./_object-gopd":126,"./_object-gopn":128,"./_object-gopn-ext":127,"./_object-gops":129,"./_object-keys":132,"./_object-pie":133,"./_property-desc":137,"./_redefine":139,"./_set-to-string-tag":144,"./_shared":146,"./_to-iobject":152,"./_to-object":154,"./_to-primitive":155,"./_uid":156,"./_wks":161,"./_wks-define":159,"./_wks-ext":160}],182:[function(require,module,exports){
|
|
20689
21098
|
// https://tc39.github.io/proposal-setmap-offrom/#sec-map.from
|
|
20690
21099
|
require('./_set-collection-from')('Map');
|
|
20691
21100
|
|
|
20692
|
-
},{"./_set-collection-from":
|
|
21101
|
+
},{"./_set-collection-from":140}],183:[function(require,module,exports){
|
|
20693
21102
|
// https://tc39.github.io/proposal-setmap-offrom/#sec-map.of
|
|
20694
21103
|
require('./_set-collection-of')('Map');
|
|
20695
21104
|
|
|
20696
|
-
},{"./_set-collection-of":
|
|
21105
|
+
},{"./_set-collection-of":141}],184:[function(require,module,exports){
|
|
20697
21106
|
// https://github.com/DavidBruant/Map-Set.prototype.toJSON
|
|
20698
21107
|
var $export = require('./_export');
|
|
20699
21108
|
|
|
20700
21109
|
$export($export.P + $export.R, 'Map', { toJSON: require('./_collection-to-json')('Map') });
|
|
20701
21110
|
|
|
20702
|
-
},{"./_collection-to-json":
|
|
21111
|
+
},{"./_collection-to-json":89,"./_export":99}],185:[function(require,module,exports){
|
|
20703
21112
|
// https://github.com/tc39/proposal-promise-finally
|
|
20704
21113
|
'use strict';
|
|
20705
21114
|
var $export = require('./_export');
|
|
@@ -20721,7 +21130,7 @@ $export($export.P + $export.R, 'Promise', { 'finally': function (onFinally) {
|
|
|
20721
21130
|
);
|
|
20722
21131
|
} });
|
|
20723
21132
|
|
|
20724
|
-
},{"./_core":
|
|
21133
|
+
},{"./_core":91,"./_export":99,"./_global":102,"./_promise-resolve":136,"./_species-constructor":147}],186:[function(require,module,exports){
|
|
20725
21134
|
'use strict';
|
|
20726
21135
|
// https://github.com/tc39/proposal-promise-try
|
|
20727
21136
|
var $export = require('./_export');
|
|
@@ -20735,27 +21144,27 @@ $export($export.S, 'Promise', { 'try': function (callbackfn) {
|
|
|
20735
21144
|
return promiseCapability.promise;
|
|
20736
21145
|
} });
|
|
20737
21146
|
|
|
20738
|
-
},{"./_export":
|
|
21147
|
+
},{"./_export":99,"./_new-promise-capability":121,"./_perform":135}],187:[function(require,module,exports){
|
|
20739
21148
|
// https://tc39.github.io/proposal-setmap-offrom/#sec-set.from
|
|
20740
21149
|
require('./_set-collection-from')('Set');
|
|
20741
21150
|
|
|
20742
|
-
},{"./_set-collection-from":
|
|
21151
|
+
},{"./_set-collection-from":140}],188:[function(require,module,exports){
|
|
20743
21152
|
// https://tc39.github.io/proposal-setmap-offrom/#sec-set.of
|
|
20744
21153
|
require('./_set-collection-of')('Set');
|
|
20745
21154
|
|
|
20746
|
-
},{"./_set-collection-of":
|
|
21155
|
+
},{"./_set-collection-of":141}],189:[function(require,module,exports){
|
|
20747
21156
|
// https://github.com/DavidBruant/Map-Set.prototype.toJSON
|
|
20748
21157
|
var $export = require('./_export');
|
|
20749
21158
|
|
|
20750
21159
|
$export($export.P + $export.R, 'Set', { toJSON: require('./_collection-to-json')('Set') });
|
|
20751
21160
|
|
|
20752
|
-
},{"./_collection-to-json":
|
|
21161
|
+
},{"./_collection-to-json":89,"./_export":99}],190:[function(require,module,exports){
|
|
20753
21162
|
require('./_wks-define')('asyncIterator');
|
|
20754
21163
|
|
|
20755
|
-
},{"./_wks-define":
|
|
21164
|
+
},{"./_wks-define":159}],191:[function(require,module,exports){
|
|
20756
21165
|
require('./_wks-define')('observable');
|
|
20757
21166
|
|
|
20758
|
-
},{"./_wks-define":
|
|
21167
|
+
},{"./_wks-define":159}],192:[function(require,module,exports){
|
|
20759
21168
|
require('./es6.array.iterator');
|
|
20760
21169
|
var global = require('./_global');
|
|
20761
21170
|
var hide = require('./_hide');
|
|
@@ -20776,8 +21185,8 @@ for (var i = 0; i < DOMIterables.length; i++) {
|
|
|
20776
21185
|
Iterators[NAME] = Iterators.Array;
|
|
20777
21186
|
}
|
|
20778
21187
|
|
|
20779
|
-
},{"./_global":
|
|
20780
|
-
(function (Buffer){
|
|
21188
|
+
},{"./_global":102,"./_hide":104,"./_iterators":117,"./_wks":161,"./es6.array.iterator":165}],193:[function(require,module,exports){
|
|
21189
|
+
(function (Buffer){(function (){
|
|
20781
21190
|
// Copyright Joyent, Inc. and other Node contributors.
|
|
20782
21191
|
//
|
|
20783
21192
|
// Permission is hereby granted, free of charge, to any person obtaining a
|
|
@@ -20886,8 +21295,8 @@ function objectToString(o) {
|
|
|
20886
21295
|
return Object.prototype.toString.call(o);
|
|
20887
21296
|
}
|
|
20888
21297
|
|
|
20889
|
-
}).call(this,{"isBuffer":require("../../is-buffer/index.js")})
|
|
20890
|
-
},{"../../is-buffer/index.js":
|
|
21298
|
+
}).call(this)}).call(this,{"isBuffer":require("../../is-buffer/index.js")})
|
|
21299
|
+
},{"../../is-buffer/index.js":242}],194:[function(require,module,exports){
|
|
20891
21300
|
;(function (root, factory, undef) {
|
|
20892
21301
|
if (typeof exports === "object") {
|
|
20893
21302
|
// CommonJS
|
|
@@ -21122,7 +21531,7 @@ function objectToString(o) {
|
|
|
21122
21531
|
return CryptoJS.AES;
|
|
21123
21532
|
|
|
21124
21533
|
}));
|
|
21125
|
-
},{"./cipher-core":
|
|
21534
|
+
},{"./cipher-core":195,"./core":196,"./enc-base64":197,"./evpkdf":199,"./md5":204}],195:[function(require,module,exports){
|
|
21126
21535
|
;(function (root, factory, undef) {
|
|
21127
21536
|
if (typeof exports === "object") {
|
|
21128
21537
|
// CommonJS
|
|
@@ -22013,8 +22422,8 @@ function objectToString(o) {
|
|
|
22013
22422
|
|
|
22014
22423
|
|
|
22015
22424
|
}));
|
|
22016
|
-
},{"./core":
|
|
22017
|
-
(function (global){
|
|
22425
|
+
},{"./core":196,"./evpkdf":199}],196:[function(require,module,exports){
|
|
22426
|
+
(function (global){(function (){
|
|
22018
22427
|
;(function (root, factory) {
|
|
22019
22428
|
if (typeof exports === "object") {
|
|
22020
22429
|
// CommonJS
|
|
@@ -22812,8 +23221,8 @@ function objectToString(o) {
|
|
|
22812
23221
|
return CryptoJS;
|
|
22813
23222
|
|
|
22814
23223
|
}));
|
|
22815
|
-
}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
|
22816
|
-
},{"crypto":54}],
|
|
23224
|
+
}).call(this)}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
|
23225
|
+
},{"crypto":54}],197:[function(require,module,exports){
|
|
22817
23226
|
;(function (root, factory) {
|
|
22818
23227
|
if (typeof exports === "object") {
|
|
22819
23228
|
// CommonJS
|
|
@@ -22950,7 +23359,7 @@ function objectToString(o) {
|
|
|
22950
23359
|
return CryptoJS.enc.Base64;
|
|
22951
23360
|
|
|
22952
23361
|
}));
|
|
22953
|
-
},{"./core":
|
|
23362
|
+
},{"./core":196}],198:[function(require,module,exports){
|
|
22954
23363
|
;(function (root, factory) {
|
|
22955
23364
|
if (typeof exports === "object") {
|
|
22956
23365
|
// CommonJS
|
|
@@ -23100,7 +23509,7 @@ function objectToString(o) {
|
|
|
23100
23509
|
return CryptoJS.enc.Utf16;
|
|
23101
23510
|
|
|
23102
23511
|
}));
|
|
23103
|
-
},{"./core":
|
|
23512
|
+
},{"./core":196}],199:[function(require,module,exports){
|
|
23104
23513
|
;(function (root, factory, undef) {
|
|
23105
23514
|
if (typeof exports === "object") {
|
|
23106
23515
|
// CommonJS
|
|
@@ -23235,7 +23644,7 @@ function objectToString(o) {
|
|
|
23235
23644
|
return CryptoJS.EvpKDF;
|
|
23236
23645
|
|
|
23237
23646
|
}));
|
|
23238
|
-
},{"./core":
|
|
23647
|
+
},{"./core":196,"./hmac":201,"./sha1":220}],200:[function(require,module,exports){
|
|
23239
23648
|
;(function (root, factory, undef) {
|
|
23240
23649
|
if (typeof exports === "object") {
|
|
23241
23650
|
// CommonJS
|
|
@@ -23302,7 +23711,7 @@ function objectToString(o) {
|
|
|
23302
23711
|
return CryptoJS.format.Hex;
|
|
23303
23712
|
|
|
23304
23713
|
}));
|
|
23305
|
-
},{"./cipher-core":
|
|
23714
|
+
},{"./cipher-core":195,"./core":196}],201:[function(require,module,exports){
|
|
23306
23715
|
;(function (root, factory) {
|
|
23307
23716
|
if (typeof exports === "object") {
|
|
23308
23717
|
// CommonJS
|
|
@@ -23446,7 +23855,7 @@ function objectToString(o) {
|
|
|
23446
23855
|
|
|
23447
23856
|
|
|
23448
23857
|
}));
|
|
23449
|
-
},{"./core":
|
|
23858
|
+
},{"./core":196}],202:[function(require,module,exports){
|
|
23450
23859
|
;(function (root, factory, undef) {
|
|
23451
23860
|
if (typeof exports === "object") {
|
|
23452
23861
|
// CommonJS
|
|
@@ -23465,7 +23874,7 @@ function objectToString(o) {
|
|
|
23465
23874
|
return CryptoJS;
|
|
23466
23875
|
|
|
23467
23876
|
}));
|
|
23468
|
-
},{"./aes":
|
|
23877
|
+
},{"./aes":194,"./cipher-core":195,"./core":196,"./enc-base64":197,"./enc-utf16":198,"./evpkdf":199,"./format-hex":200,"./hmac":201,"./lib-typedarrays":203,"./md5":204,"./mode-cfb":205,"./mode-ctr":207,"./mode-ctr-gladman":206,"./mode-ecb":208,"./mode-ofb":209,"./pad-ansix923":210,"./pad-iso10126":211,"./pad-iso97971":212,"./pad-nopadding":213,"./pad-zeropadding":214,"./pbkdf2":215,"./rabbit":217,"./rabbit-legacy":216,"./rc4":218,"./ripemd160":219,"./sha1":220,"./sha224":221,"./sha256":222,"./sha3":223,"./sha384":224,"./sha512":225,"./tripledes":226,"./x64-core":227}],203:[function(require,module,exports){
|
|
23469
23878
|
;(function (root, factory) {
|
|
23470
23879
|
if (typeof exports === "object") {
|
|
23471
23880
|
// CommonJS
|
|
@@ -23542,7 +23951,7 @@ function objectToString(o) {
|
|
|
23542
23951
|
return CryptoJS.lib.WordArray;
|
|
23543
23952
|
|
|
23544
23953
|
}));
|
|
23545
|
-
},{"./core":
|
|
23954
|
+
},{"./core":196}],204:[function(require,module,exports){
|
|
23546
23955
|
;(function (root, factory) {
|
|
23547
23956
|
if (typeof exports === "object") {
|
|
23548
23957
|
// CommonJS
|
|
@@ -23811,7 +24220,7 @@ function objectToString(o) {
|
|
|
23811
24220
|
return CryptoJS.MD5;
|
|
23812
24221
|
|
|
23813
24222
|
}));
|
|
23814
|
-
},{"./core":
|
|
24223
|
+
},{"./core":196}],205:[function(require,module,exports){
|
|
23815
24224
|
;(function (root, factory, undef) {
|
|
23816
24225
|
if (typeof exports === "object") {
|
|
23817
24226
|
// CommonJS
|
|
@@ -23892,7 +24301,7 @@ function objectToString(o) {
|
|
|
23892
24301
|
return CryptoJS.mode.CFB;
|
|
23893
24302
|
|
|
23894
24303
|
}));
|
|
23895
|
-
},{"./cipher-core":
|
|
24304
|
+
},{"./cipher-core":195,"./core":196}],206:[function(require,module,exports){
|
|
23896
24305
|
;(function (root, factory, undef) {
|
|
23897
24306
|
if (typeof exports === "object") {
|
|
23898
24307
|
// CommonJS
|
|
@@ -24009,7 +24418,7 @@ function objectToString(o) {
|
|
|
24009
24418
|
return CryptoJS.mode.CTRGladman;
|
|
24010
24419
|
|
|
24011
24420
|
}));
|
|
24012
|
-
},{"./cipher-core":
|
|
24421
|
+
},{"./cipher-core":195,"./core":196}],207:[function(require,module,exports){
|
|
24013
24422
|
;(function (root, factory, undef) {
|
|
24014
24423
|
if (typeof exports === "object") {
|
|
24015
24424
|
// CommonJS
|
|
@@ -24068,7 +24477,7 @@ function objectToString(o) {
|
|
|
24068
24477
|
return CryptoJS.mode.CTR;
|
|
24069
24478
|
|
|
24070
24479
|
}));
|
|
24071
|
-
},{"./cipher-core":
|
|
24480
|
+
},{"./cipher-core":195,"./core":196}],208:[function(require,module,exports){
|
|
24072
24481
|
;(function (root, factory, undef) {
|
|
24073
24482
|
if (typeof exports === "object") {
|
|
24074
24483
|
// CommonJS
|
|
@@ -24109,7 +24518,7 @@ function objectToString(o) {
|
|
|
24109
24518
|
return CryptoJS.mode.ECB;
|
|
24110
24519
|
|
|
24111
24520
|
}));
|
|
24112
|
-
},{"./cipher-core":
|
|
24521
|
+
},{"./cipher-core":195,"./core":196}],209:[function(require,module,exports){
|
|
24113
24522
|
;(function (root, factory, undef) {
|
|
24114
24523
|
if (typeof exports === "object") {
|
|
24115
24524
|
// CommonJS
|
|
@@ -24164,7 +24573,7 @@ function objectToString(o) {
|
|
|
24164
24573
|
return CryptoJS.mode.OFB;
|
|
24165
24574
|
|
|
24166
24575
|
}));
|
|
24167
|
-
},{"./cipher-core":
|
|
24576
|
+
},{"./cipher-core":195,"./core":196}],210:[function(require,module,exports){
|
|
24168
24577
|
;(function (root, factory, undef) {
|
|
24169
24578
|
if (typeof exports === "object") {
|
|
24170
24579
|
// CommonJS
|
|
@@ -24214,7 +24623,7 @@ function objectToString(o) {
|
|
|
24214
24623
|
return CryptoJS.pad.Ansix923;
|
|
24215
24624
|
|
|
24216
24625
|
}));
|
|
24217
|
-
},{"./cipher-core":
|
|
24626
|
+
},{"./cipher-core":195,"./core":196}],211:[function(require,module,exports){
|
|
24218
24627
|
;(function (root, factory, undef) {
|
|
24219
24628
|
if (typeof exports === "object") {
|
|
24220
24629
|
// CommonJS
|
|
@@ -24259,7 +24668,7 @@ function objectToString(o) {
|
|
|
24259
24668
|
return CryptoJS.pad.Iso10126;
|
|
24260
24669
|
|
|
24261
24670
|
}));
|
|
24262
|
-
},{"./cipher-core":
|
|
24671
|
+
},{"./cipher-core":195,"./core":196}],212:[function(require,module,exports){
|
|
24263
24672
|
;(function (root, factory, undef) {
|
|
24264
24673
|
if (typeof exports === "object") {
|
|
24265
24674
|
// CommonJS
|
|
@@ -24300,7 +24709,7 @@ function objectToString(o) {
|
|
|
24300
24709
|
return CryptoJS.pad.Iso97971;
|
|
24301
24710
|
|
|
24302
24711
|
}));
|
|
24303
|
-
},{"./cipher-core":
|
|
24712
|
+
},{"./cipher-core":195,"./core":196}],213:[function(require,module,exports){
|
|
24304
24713
|
;(function (root, factory, undef) {
|
|
24305
24714
|
if (typeof exports === "object") {
|
|
24306
24715
|
// CommonJS
|
|
@@ -24331,7 +24740,7 @@ function objectToString(o) {
|
|
|
24331
24740
|
return CryptoJS.pad.NoPadding;
|
|
24332
24741
|
|
|
24333
24742
|
}));
|
|
24334
|
-
},{"./cipher-core":
|
|
24743
|
+
},{"./cipher-core":195,"./core":196}],214:[function(require,module,exports){
|
|
24335
24744
|
;(function (root, factory, undef) {
|
|
24336
24745
|
if (typeof exports === "object") {
|
|
24337
24746
|
// CommonJS
|
|
@@ -24379,7 +24788,7 @@ function objectToString(o) {
|
|
|
24379
24788
|
return CryptoJS.pad.ZeroPadding;
|
|
24380
24789
|
|
|
24381
24790
|
}));
|
|
24382
|
-
},{"./cipher-core":
|
|
24791
|
+
},{"./cipher-core":195,"./core":196}],215:[function(require,module,exports){
|
|
24383
24792
|
;(function (root, factory, undef) {
|
|
24384
24793
|
if (typeof exports === "object") {
|
|
24385
24794
|
// CommonJS
|
|
@@ -24525,7 +24934,7 @@ function objectToString(o) {
|
|
|
24525
24934
|
return CryptoJS.PBKDF2;
|
|
24526
24935
|
|
|
24527
24936
|
}));
|
|
24528
|
-
},{"./core":
|
|
24937
|
+
},{"./core":196,"./hmac":201,"./sha1":220}],216:[function(require,module,exports){
|
|
24529
24938
|
;(function (root, factory, undef) {
|
|
24530
24939
|
if (typeof exports === "object") {
|
|
24531
24940
|
// CommonJS
|
|
@@ -24716,7 +25125,7 @@ function objectToString(o) {
|
|
|
24716
25125
|
return CryptoJS.RabbitLegacy;
|
|
24717
25126
|
|
|
24718
25127
|
}));
|
|
24719
|
-
},{"./cipher-core":
|
|
25128
|
+
},{"./cipher-core":195,"./core":196,"./enc-base64":197,"./evpkdf":199,"./md5":204}],217:[function(require,module,exports){
|
|
24720
25129
|
;(function (root, factory, undef) {
|
|
24721
25130
|
if (typeof exports === "object") {
|
|
24722
25131
|
// CommonJS
|
|
@@ -24909,7 +25318,7 @@ function objectToString(o) {
|
|
|
24909
25318
|
return CryptoJS.Rabbit;
|
|
24910
25319
|
|
|
24911
25320
|
}));
|
|
24912
|
-
},{"./cipher-core":
|
|
25321
|
+
},{"./cipher-core":195,"./core":196,"./enc-base64":197,"./evpkdf":199,"./md5":204}],218:[function(require,module,exports){
|
|
24913
25322
|
;(function (root, factory, undef) {
|
|
24914
25323
|
if (typeof exports === "object") {
|
|
24915
25324
|
// CommonJS
|
|
@@ -25049,7 +25458,7 @@ function objectToString(o) {
|
|
|
25049
25458
|
return CryptoJS.RC4;
|
|
25050
25459
|
|
|
25051
25460
|
}));
|
|
25052
|
-
},{"./cipher-core":
|
|
25461
|
+
},{"./cipher-core":195,"./core":196,"./enc-base64":197,"./evpkdf":199,"./md5":204}],219:[function(require,module,exports){
|
|
25053
25462
|
;(function (root, factory) {
|
|
25054
25463
|
if (typeof exports === "object") {
|
|
25055
25464
|
// CommonJS
|
|
@@ -25317,7 +25726,7 @@ function objectToString(o) {
|
|
|
25317
25726
|
return CryptoJS.RIPEMD160;
|
|
25318
25727
|
|
|
25319
25728
|
}));
|
|
25320
|
-
},{"./core":
|
|
25729
|
+
},{"./core":196}],220:[function(require,module,exports){
|
|
25321
25730
|
;(function (root, factory) {
|
|
25322
25731
|
if (typeof exports === "object") {
|
|
25323
25732
|
// CommonJS
|
|
@@ -25468,7 +25877,7 @@ function objectToString(o) {
|
|
|
25468
25877
|
return CryptoJS.SHA1;
|
|
25469
25878
|
|
|
25470
25879
|
}));
|
|
25471
|
-
},{"./core":
|
|
25880
|
+
},{"./core":196}],221:[function(require,module,exports){
|
|
25472
25881
|
;(function (root, factory, undef) {
|
|
25473
25882
|
if (typeof exports === "object") {
|
|
25474
25883
|
// CommonJS
|
|
@@ -25549,7 +25958,7 @@ function objectToString(o) {
|
|
|
25549
25958
|
return CryptoJS.SHA224;
|
|
25550
25959
|
|
|
25551
25960
|
}));
|
|
25552
|
-
},{"./core":
|
|
25961
|
+
},{"./core":196,"./sha256":222}],222:[function(require,module,exports){
|
|
25553
25962
|
;(function (root, factory) {
|
|
25554
25963
|
if (typeof exports === "object") {
|
|
25555
25964
|
// CommonJS
|
|
@@ -25749,7 +26158,7 @@ function objectToString(o) {
|
|
|
25749
26158
|
return CryptoJS.SHA256;
|
|
25750
26159
|
|
|
25751
26160
|
}));
|
|
25752
|
-
},{"./core":
|
|
26161
|
+
},{"./core":196}],223:[function(require,module,exports){
|
|
25753
26162
|
;(function (root, factory, undef) {
|
|
25754
26163
|
if (typeof exports === "object") {
|
|
25755
26164
|
// CommonJS
|
|
@@ -26076,7 +26485,7 @@ function objectToString(o) {
|
|
|
26076
26485
|
return CryptoJS.SHA3;
|
|
26077
26486
|
|
|
26078
26487
|
}));
|
|
26079
|
-
},{"./core":
|
|
26488
|
+
},{"./core":196,"./x64-core":227}],224:[function(require,module,exports){
|
|
26080
26489
|
;(function (root, factory, undef) {
|
|
26081
26490
|
if (typeof exports === "object") {
|
|
26082
26491
|
// CommonJS
|
|
@@ -26160,7 +26569,7 @@ function objectToString(o) {
|
|
|
26160
26569
|
return CryptoJS.SHA384;
|
|
26161
26570
|
|
|
26162
26571
|
}));
|
|
26163
|
-
},{"./core":
|
|
26572
|
+
},{"./core":196,"./sha512":225,"./x64-core":227}],225:[function(require,module,exports){
|
|
26164
26573
|
;(function (root, factory, undef) {
|
|
26165
26574
|
if (typeof exports === "object") {
|
|
26166
26575
|
// CommonJS
|
|
@@ -26487,7 +26896,7 @@ function objectToString(o) {
|
|
|
26487
26896
|
return CryptoJS.SHA512;
|
|
26488
26897
|
|
|
26489
26898
|
}));
|
|
26490
|
-
},{"./core":
|
|
26899
|
+
},{"./core":196,"./x64-core":227}],226:[function(require,module,exports){
|
|
26491
26900
|
;(function (root, factory, undef) {
|
|
26492
26901
|
if (typeof exports === "object") {
|
|
26493
26902
|
// CommonJS
|
|
@@ -27267,7 +27676,7 @@ function objectToString(o) {
|
|
|
27267
27676
|
return CryptoJS.TripleDES;
|
|
27268
27677
|
|
|
27269
27678
|
}));
|
|
27270
|
-
},{"./cipher-core":
|
|
27679
|
+
},{"./cipher-core":195,"./core":196,"./enc-base64":197,"./evpkdf":199,"./md5":204}],227:[function(require,module,exports){
|
|
27271
27680
|
;(function (root, factory) {
|
|
27272
27681
|
if (typeof exports === "object") {
|
|
27273
27682
|
// CommonJS
|
|
@@ -27572,136 +27981,181 @@ function objectToString(o) {
|
|
|
27572
27981
|
return CryptoJS;
|
|
27573
27982
|
|
|
27574
27983
|
}));
|
|
27575
|
-
},{"./core":
|
|
27576
|
-
var
|
|
27577
|
-
var
|
|
27578
|
-
var
|
|
27984
|
+
},{"./core":196}],228:[function(require,module,exports){
|
|
27985
|
+
var objectKeys = require('object-keys');
|
|
27986
|
+
var isArguments = require('is-arguments');
|
|
27987
|
+
var is = require('object-is');
|
|
27988
|
+
var isRegex = require('is-regex');
|
|
27989
|
+
var flags = require('regexp.prototype.flags');
|
|
27990
|
+
var isDate = require('is-date-object');
|
|
27579
27991
|
|
|
27580
|
-
var
|
|
27581
|
-
if (!opts) opts = {};
|
|
27582
|
-
// 7.1. All identical values are equivalent, as determined by ===.
|
|
27583
|
-
if (actual === expected) {
|
|
27584
|
-
return true;
|
|
27992
|
+
var getTime = Date.prototype.getTime;
|
|
27585
27993
|
|
|
27586
|
-
|
|
27587
|
-
|
|
27994
|
+
function deepEqual(actual, expected, options) {
|
|
27995
|
+
var opts = options || {};
|
|
27588
27996
|
|
|
27589
|
-
// 7.
|
|
27590
|
-
|
|
27591
|
-
|
|
27592
|
-
|
|
27997
|
+
// 7.1. All identical values are equivalent, as determined by ===.
|
|
27998
|
+
if (opts.strict ? is(actual, expected) : actual === expected) {
|
|
27999
|
+
return true;
|
|
28000
|
+
}
|
|
27593
28001
|
|
|
27594
|
-
// 7.
|
|
27595
|
-
|
|
27596
|
-
|
|
27597
|
-
// (although not necessarily the same order), equivalent values for every
|
|
27598
|
-
// corresponding key, and an identical 'prototype' property. Note: this
|
|
27599
|
-
// accounts for both named and indexed properties on Arrays.
|
|
27600
|
-
} else {
|
|
27601
|
-
return objEquiv(actual, expected, opts);
|
|
28002
|
+
// 7.3. Other pairs that do not both pass typeof value == 'object', equivalence is determined by ==.
|
|
28003
|
+
if (!actual || !expected || (typeof actual !== 'object' && typeof expected !== 'object')) {
|
|
28004
|
+
return opts.strict ? is(actual, expected) : actual == expected;
|
|
27602
28005
|
}
|
|
28006
|
+
|
|
28007
|
+
/*
|
|
28008
|
+
* 7.4. For all other Object pairs, including Array objects, equivalence is
|
|
28009
|
+
* determined by having the same number of owned properties (as verified
|
|
28010
|
+
* with Object.prototype.hasOwnProperty.call), the same set of keys
|
|
28011
|
+
* (although not necessarily the same order), equivalent values for every
|
|
28012
|
+
* corresponding key, and an identical 'prototype' property. Note: this
|
|
28013
|
+
* accounts for both named and indexed properties on Arrays.
|
|
28014
|
+
*/
|
|
28015
|
+
// eslint-disable-next-line no-use-before-define
|
|
28016
|
+
return objEquiv(actual, expected, opts);
|
|
27603
28017
|
}
|
|
27604
28018
|
|
|
27605
28019
|
function isUndefinedOrNull(value) {
|
|
27606
28020
|
return value === null || value === undefined;
|
|
27607
28021
|
}
|
|
27608
28022
|
|
|
27609
|
-
function isBuffer
|
|
27610
|
-
if (!x || typeof x !== 'object' || typeof x.length !== 'number')
|
|
28023
|
+
function isBuffer(x) {
|
|
28024
|
+
if (!x || typeof x !== 'object' || typeof x.length !== 'number') {
|
|
28025
|
+
return false;
|
|
28026
|
+
}
|
|
27611
28027
|
if (typeof x.copy !== 'function' || typeof x.slice !== 'function') {
|
|
27612
28028
|
return false;
|
|
27613
28029
|
}
|
|
27614
|
-
if (x.length > 0 && typeof x[0] !== 'number')
|
|
28030
|
+
if (x.length > 0 && typeof x[0] !== 'number') {
|
|
28031
|
+
return false;
|
|
28032
|
+
}
|
|
27615
28033
|
return true;
|
|
27616
28034
|
}
|
|
27617
28035
|
|
|
27618
28036
|
function objEquiv(a, b, opts) {
|
|
28037
|
+
/* eslint max-statements: [2, 50] */
|
|
27619
28038
|
var i, key;
|
|
27620
|
-
if (
|
|
27621
|
-
|
|
28039
|
+
if (typeof a !== typeof b) { return false; }
|
|
28040
|
+
if (isUndefinedOrNull(a) || isUndefinedOrNull(b)) { return false; }
|
|
28041
|
+
|
|
27622
28042
|
// an identical 'prototype' property.
|
|
27623
|
-
if (a.prototype !== b.prototype) return false;
|
|
27624
|
-
|
|
27625
|
-
|
|
27626
|
-
|
|
27627
|
-
|
|
27628
|
-
|
|
27629
|
-
|
|
27630
|
-
|
|
27631
|
-
b
|
|
27632
|
-
return deepEqual(a, b, opts);
|
|
28043
|
+
if (a.prototype !== b.prototype) { return false; }
|
|
28044
|
+
|
|
28045
|
+
if (isArguments(a) !== isArguments(b)) { return false; }
|
|
28046
|
+
|
|
28047
|
+
var aIsRegex = isRegex(a);
|
|
28048
|
+
var bIsRegex = isRegex(b);
|
|
28049
|
+
if (aIsRegex !== bIsRegex) { return false; }
|
|
28050
|
+
if (aIsRegex || bIsRegex) {
|
|
28051
|
+
return a.source === b.source && flags(a) === flags(b);
|
|
27633
28052
|
}
|
|
27634
|
-
|
|
27635
|
-
|
|
27636
|
-
|
|
27637
|
-
|
|
27638
|
-
|
|
28053
|
+
|
|
28054
|
+
if (isDate(a) && isDate(b)) {
|
|
28055
|
+
return getTime.call(a) === getTime.call(b);
|
|
28056
|
+
}
|
|
28057
|
+
|
|
28058
|
+
var aIsBuffer = isBuffer(a);
|
|
28059
|
+
var bIsBuffer = isBuffer(b);
|
|
28060
|
+
if (aIsBuffer !== bIsBuffer) { return false; }
|
|
28061
|
+
if (aIsBuffer || bIsBuffer) { // && would work too, because both are true or both false here
|
|
28062
|
+
if (a.length !== b.length) { return false; }
|
|
27639
28063
|
for (i = 0; i < a.length; i++) {
|
|
27640
|
-
if (a[i] !== b[i]) return false;
|
|
28064
|
+
if (a[i] !== b[i]) { return false; }
|
|
27641
28065
|
}
|
|
27642
28066
|
return true;
|
|
27643
28067
|
}
|
|
28068
|
+
|
|
28069
|
+
if (typeof a !== typeof b) { return false; }
|
|
28070
|
+
|
|
27644
28071
|
try {
|
|
27645
|
-
var ka = objectKeys(a)
|
|
27646
|
-
|
|
27647
|
-
} catch (e) {//happens when one is a string literal and the other isn't
|
|
28072
|
+
var ka = objectKeys(a);
|
|
28073
|
+
var kb = objectKeys(b);
|
|
28074
|
+
} catch (e) { // happens when one is a string literal and the other isn't
|
|
27648
28075
|
return false;
|
|
27649
28076
|
}
|
|
27650
|
-
// having the same number of owned properties (keys incorporates
|
|
27651
|
-
|
|
27652
|
-
|
|
27653
|
-
|
|
27654
|
-
//the same set of keys (although not necessarily the same order),
|
|
28077
|
+
// having the same number of owned properties (keys incorporates hasOwnProperty)
|
|
28078
|
+
if (ka.length !== kb.length) { return false; }
|
|
28079
|
+
|
|
28080
|
+
// the same set of keys (although not necessarily the same order),
|
|
27655
28081
|
ka.sort();
|
|
27656
28082
|
kb.sort();
|
|
27657
|
-
|
|
28083
|
+
// ~~~cheap key test
|
|
27658
28084
|
for (i = ka.length - 1; i >= 0; i--) {
|
|
27659
|
-
if (ka[i] != kb[i])
|
|
27660
|
-
return false;
|
|
28085
|
+
if (ka[i] != kb[i]) { return false; }
|
|
27661
28086
|
}
|
|
27662
|
-
//equivalent values for every corresponding key, and
|
|
27663
|
-
//~~~possibly expensive deep test
|
|
28087
|
+
// equivalent values for every corresponding key, and ~~~possibly expensive deep test
|
|
27664
28088
|
for (i = ka.length - 1; i >= 0; i--) {
|
|
27665
28089
|
key = ka[i];
|
|
27666
|
-
if (!deepEqual(a[key], b[key], opts)) return false;
|
|
28090
|
+
if (!deepEqual(a[key], b[key], opts)) { return false; }
|
|
27667
28091
|
}
|
|
27668
|
-
|
|
28092
|
+
|
|
28093
|
+
return true;
|
|
27669
28094
|
}
|
|
27670
28095
|
|
|
27671
|
-
|
|
27672
|
-
var supportsArgumentsClass = (function(){
|
|
27673
|
-
return Object.prototype.toString.call(arguments)
|
|
27674
|
-
})() == '[object Arguments]';
|
|
28096
|
+
module.exports = deepEqual;
|
|
27675
28097
|
|
|
27676
|
-
|
|
28098
|
+
},{"is-arguments":241,"is-date-object":243,"is-regex":244,"object-is":253,"object-keys":257,"regexp.prototype.flags":276}],229:[function(require,module,exports){
|
|
28099
|
+
'use strict';
|
|
27677
28100
|
|
|
27678
|
-
|
|
27679
|
-
function
|
|
27680
|
-
|
|
28101
|
+
var keys = require('object-keys');
|
|
28102
|
+
var hasSymbols = typeof Symbol === 'function' && typeof Symbol('foo') === 'symbol';
|
|
28103
|
+
|
|
28104
|
+
var toStr = Object.prototype.toString;
|
|
28105
|
+
var concat = Array.prototype.concat;
|
|
28106
|
+
var origDefineProperty = Object.defineProperty;
|
|
28107
|
+
|
|
28108
|
+
var isFunction = function (fn) {
|
|
28109
|
+
return typeof fn === 'function' && toStr.call(fn) === '[object Function]';
|
|
27681
28110
|
};
|
|
27682
28111
|
|
|
27683
|
-
|
|
27684
|
-
|
|
27685
|
-
|
|
27686
|
-
|
|
27687
|
-
|
|
27688
|
-
|
|
27689
|
-
|
|
27690
|
-
|
|
28112
|
+
var arePropertyDescriptorsSupported = function () {
|
|
28113
|
+
var obj = {};
|
|
28114
|
+
try {
|
|
28115
|
+
origDefineProperty(obj, 'x', { enumerable: false, value: obj });
|
|
28116
|
+
// eslint-disable-next-line no-unused-vars, no-restricted-syntax
|
|
28117
|
+
for (var _ in obj) { // jscs:ignore disallowUnusedVariables
|
|
28118
|
+
return false;
|
|
28119
|
+
}
|
|
28120
|
+
return obj.x === obj;
|
|
28121
|
+
} catch (e) { /* this is IE 8. */
|
|
28122
|
+
return false;
|
|
28123
|
+
}
|
|
27691
28124
|
};
|
|
28125
|
+
var supportsDescriptors = origDefineProperty && arePropertyDescriptorsSupported();
|
|
27692
28126
|
|
|
27693
|
-
|
|
27694
|
-
|
|
27695
|
-
|
|
28127
|
+
var defineProperty = function (object, name, value, predicate) {
|
|
28128
|
+
if (name in object && (!isFunction(predicate) || !predicate())) {
|
|
28129
|
+
return;
|
|
28130
|
+
}
|
|
28131
|
+
if (supportsDescriptors) {
|
|
28132
|
+
origDefineProperty(object, name, {
|
|
28133
|
+
configurable: true,
|
|
28134
|
+
enumerable: false,
|
|
28135
|
+
value: value,
|
|
28136
|
+
writable: true
|
|
28137
|
+
});
|
|
28138
|
+
} else {
|
|
28139
|
+
object[name] = value;
|
|
28140
|
+
}
|
|
28141
|
+
};
|
|
27696
28142
|
|
|
27697
|
-
|
|
27698
|
-
|
|
27699
|
-
|
|
27700
|
-
|
|
27701
|
-
|
|
27702
|
-
}
|
|
28143
|
+
var defineProperties = function (object, map) {
|
|
28144
|
+
var predicates = arguments.length > 2 ? arguments[2] : {};
|
|
28145
|
+
var props = keys(map);
|
|
28146
|
+
if (hasSymbols) {
|
|
28147
|
+
props = concat.call(props, Object.getOwnPropertySymbols(map));
|
|
28148
|
+
}
|
|
28149
|
+
for (var i = 0; i < props.length; i += 1) {
|
|
28150
|
+
defineProperty(object, props[i], map[props[i]], predicates[props[i]]);
|
|
28151
|
+
}
|
|
28152
|
+
};
|
|
28153
|
+
|
|
28154
|
+
defineProperties.supportsDescriptors = !!supportsDescriptors;
|
|
28155
|
+
|
|
28156
|
+
module.exports = defineProperties;
|
|
27703
28157
|
|
|
27704
|
-
},{}],
|
|
28158
|
+
},{"object-keys":257}],230:[function(require,module,exports){
|
|
27705
28159
|
'use strict';
|
|
27706
28160
|
|
|
27707
28161
|
var INITIAL_STATE = 1;
|
|
@@ -27794,7 +28248,7 @@ class StateMachine {
|
|
|
27794
28248
|
module.exports = StateMachine;
|
|
27795
28249
|
|
|
27796
28250
|
|
|
27797
|
-
},{}],
|
|
28251
|
+
},{}],231:[function(require,module,exports){
|
|
27798
28252
|
// Copyright Joyent, Inc. and other Node contributors.
|
|
27799
28253
|
//
|
|
27800
28254
|
// Permission is hereby granted, free of charge, to any person obtaining a
|
|
@@ -28319,8 +28773,8 @@ function functionBindPolyfill(context) {
|
|
|
28319
28773
|
};
|
|
28320
28774
|
}
|
|
28321
28775
|
|
|
28322
|
-
},{}],
|
|
28323
|
-
(function (Buffer){
|
|
28776
|
+
},{}],232:[function(require,module,exports){
|
|
28777
|
+
(function (Buffer){(function (){
|
|
28324
28778
|
'use strict';
|
|
28325
28779
|
function _interopDefault(ex) {
|
|
28326
28780
|
return ex && typeof ex === 'object' && 'default' in ex ? ex['default'] : ex;
|
|
@@ -59676,8 +60130,468 @@ fontkit.registerFormat(WOFF2Font);
|
|
|
59676
60130
|
fontkit.registerFormat(TrueTypeCollection);
|
|
59677
60131
|
fontkit.registerFormat(DFont);
|
|
59678
60132
|
module.exports = fontkit;
|
|
59679
|
-
}).call(this,require("buffer").Buffer)
|
|
59680
|
-
},{"babel-runtime/core-js/array/from":6,"babel-runtime/core-js/get-iterator":7,"babel-runtime/core-js/map":8,"babel-runtime/core-js/number/epsilon":9,"babel-runtime/core-js/object/assign":10,"babel-runtime/core-js/object/define-properties":12,"babel-runtime/core-js/object/define-property":13,"babel-runtime/core-js/object/freeze":14,"babel-runtime/core-js/object/get-own-property-descriptor":15,"babel-runtime/core-js/object/keys":16,"babel-runtime/core-js/promise":18,"babel-runtime/core-js/set":19,"babel-runtime/core-js/string/from-code-point":20,"babel-runtime/helpers/classCallCheck":23,"babel-runtime/helpers/createClass":24,"babel-runtime/helpers/inherits":25,"babel-runtime/helpers/possibleConstructorReturn":26,"babel-runtime/helpers/typeof":27,"brotli/decompress":39,"buffer":55,"clone":
|
|
60133
|
+
}).call(this)}).call(this,require("buffer").Buffer)
|
|
60134
|
+
},{"babel-runtime/core-js/array/from":6,"babel-runtime/core-js/get-iterator":7,"babel-runtime/core-js/map":8,"babel-runtime/core-js/number/epsilon":9,"babel-runtime/core-js/object/assign":10,"babel-runtime/core-js/object/define-properties":12,"babel-runtime/core-js/object/define-property":13,"babel-runtime/core-js/object/freeze":14,"babel-runtime/core-js/object/get-own-property-descriptor":15,"babel-runtime/core-js/object/keys":16,"babel-runtime/core-js/promise":18,"babel-runtime/core-js/set":19,"babel-runtime/core-js/string/from-code-point":20,"babel-runtime/helpers/classCallCheck":23,"babel-runtime/helpers/createClass":24,"babel-runtime/helpers/inherits":25,"babel-runtime/helpers/possibleConstructorReturn":26,"babel-runtime/helpers/typeof":27,"brotli/decompress":39,"buffer":55,"clone":59,"deep-equal":228,"dfa":230,"fs":54,"iconv-lite":54,"restructure":279,"restructure/src/utils":295,"tiny-inflate":300,"unicode-properties":303,"unicode-trie":304}],233:[function(require,module,exports){
|
|
60135
|
+
'use strict';
|
|
60136
|
+
|
|
60137
|
+
/* eslint no-invalid-this: 1 */
|
|
60138
|
+
|
|
60139
|
+
var ERROR_MESSAGE = 'Function.prototype.bind called on incompatible ';
|
|
60140
|
+
var slice = Array.prototype.slice;
|
|
60141
|
+
var toStr = Object.prototype.toString;
|
|
60142
|
+
var funcType = '[object Function]';
|
|
60143
|
+
|
|
60144
|
+
module.exports = function bind(that) {
|
|
60145
|
+
var target = this;
|
|
60146
|
+
if (typeof target !== 'function' || toStr.call(target) !== funcType) {
|
|
60147
|
+
throw new TypeError(ERROR_MESSAGE + target);
|
|
60148
|
+
}
|
|
60149
|
+
var args = slice.call(arguments, 1);
|
|
60150
|
+
|
|
60151
|
+
var bound;
|
|
60152
|
+
var binder = function () {
|
|
60153
|
+
if (this instanceof bound) {
|
|
60154
|
+
var result = target.apply(
|
|
60155
|
+
this,
|
|
60156
|
+
args.concat(slice.call(arguments))
|
|
60157
|
+
);
|
|
60158
|
+
if (Object(result) === result) {
|
|
60159
|
+
return result;
|
|
60160
|
+
}
|
|
60161
|
+
return this;
|
|
60162
|
+
} else {
|
|
60163
|
+
return target.apply(
|
|
60164
|
+
that,
|
|
60165
|
+
args.concat(slice.call(arguments))
|
|
60166
|
+
);
|
|
60167
|
+
}
|
|
60168
|
+
};
|
|
60169
|
+
|
|
60170
|
+
var boundLength = Math.max(0, target.length - args.length);
|
|
60171
|
+
var boundArgs = [];
|
|
60172
|
+
for (var i = 0; i < boundLength; i++) {
|
|
60173
|
+
boundArgs.push('$' + i);
|
|
60174
|
+
}
|
|
60175
|
+
|
|
60176
|
+
bound = Function('binder', 'return function (' + boundArgs.join(',') + '){ return binder.apply(this,arguments); }')(binder);
|
|
60177
|
+
|
|
60178
|
+
if (target.prototype) {
|
|
60179
|
+
var Empty = function Empty() {};
|
|
60180
|
+
Empty.prototype = target.prototype;
|
|
60181
|
+
bound.prototype = new Empty();
|
|
60182
|
+
Empty.prototype = null;
|
|
60183
|
+
}
|
|
60184
|
+
|
|
60185
|
+
return bound;
|
|
60186
|
+
};
|
|
60187
|
+
|
|
60188
|
+
},{}],234:[function(require,module,exports){
|
|
60189
|
+
'use strict';
|
|
60190
|
+
|
|
60191
|
+
var implementation = require('./implementation');
|
|
60192
|
+
|
|
60193
|
+
module.exports = Function.prototype.bind || implementation;
|
|
60194
|
+
|
|
60195
|
+
},{"./implementation":233}],235:[function(require,module,exports){
|
|
60196
|
+
'use strict';
|
|
60197
|
+
|
|
60198
|
+
var undefined;
|
|
60199
|
+
|
|
60200
|
+
var $SyntaxError = SyntaxError;
|
|
60201
|
+
var $Function = Function;
|
|
60202
|
+
var $TypeError = TypeError;
|
|
60203
|
+
|
|
60204
|
+
// eslint-disable-next-line consistent-return
|
|
60205
|
+
var getEvalledConstructor = function (expressionSyntax) {
|
|
60206
|
+
try {
|
|
60207
|
+
return $Function('"use strict"; return (' + expressionSyntax + ').constructor;')();
|
|
60208
|
+
} catch (e) {}
|
|
60209
|
+
};
|
|
60210
|
+
|
|
60211
|
+
var $gOPD = Object.getOwnPropertyDescriptor;
|
|
60212
|
+
if ($gOPD) {
|
|
60213
|
+
try {
|
|
60214
|
+
$gOPD({}, '');
|
|
60215
|
+
} catch (e) {
|
|
60216
|
+
$gOPD = null; // this is IE 8, which has a broken gOPD
|
|
60217
|
+
}
|
|
60218
|
+
}
|
|
60219
|
+
|
|
60220
|
+
var throwTypeError = function () {
|
|
60221
|
+
throw new $TypeError();
|
|
60222
|
+
};
|
|
60223
|
+
var ThrowTypeError = $gOPD
|
|
60224
|
+
? (function () {
|
|
60225
|
+
try {
|
|
60226
|
+
// eslint-disable-next-line no-unused-expressions, no-caller, no-restricted-properties
|
|
60227
|
+
arguments.callee; // IE 8 does not throw here
|
|
60228
|
+
return throwTypeError;
|
|
60229
|
+
} catch (calleeThrows) {
|
|
60230
|
+
try {
|
|
60231
|
+
// IE 8 throws on Object.getOwnPropertyDescriptor(arguments, '')
|
|
60232
|
+
return $gOPD(arguments, 'callee').get;
|
|
60233
|
+
} catch (gOPDthrows) {
|
|
60234
|
+
return throwTypeError;
|
|
60235
|
+
}
|
|
60236
|
+
}
|
|
60237
|
+
}())
|
|
60238
|
+
: throwTypeError;
|
|
60239
|
+
|
|
60240
|
+
var hasSymbols = require('has-symbols')();
|
|
60241
|
+
|
|
60242
|
+
var getProto = Object.getPrototypeOf || function (x) { return x.__proto__; }; // eslint-disable-line no-proto
|
|
60243
|
+
|
|
60244
|
+
var needsEval = {};
|
|
60245
|
+
|
|
60246
|
+
var TypedArray = typeof Uint8Array === 'undefined' ? undefined : getProto(Uint8Array);
|
|
60247
|
+
|
|
60248
|
+
var INTRINSICS = {
|
|
60249
|
+
'%AggregateError%': typeof AggregateError === 'undefined' ? undefined : AggregateError,
|
|
60250
|
+
'%Array%': Array,
|
|
60251
|
+
'%ArrayBuffer%': typeof ArrayBuffer === 'undefined' ? undefined : ArrayBuffer,
|
|
60252
|
+
'%ArrayIteratorPrototype%': hasSymbols ? getProto([][Symbol.iterator]()) : undefined,
|
|
60253
|
+
'%AsyncFromSyncIteratorPrototype%': undefined,
|
|
60254
|
+
'%AsyncFunction%': needsEval,
|
|
60255
|
+
'%AsyncGenerator%': needsEval,
|
|
60256
|
+
'%AsyncGeneratorFunction%': needsEval,
|
|
60257
|
+
'%AsyncIteratorPrototype%': needsEval,
|
|
60258
|
+
'%Atomics%': typeof Atomics === 'undefined' ? undefined : Atomics,
|
|
60259
|
+
'%BigInt%': typeof BigInt === 'undefined' ? undefined : BigInt,
|
|
60260
|
+
'%Boolean%': Boolean,
|
|
60261
|
+
'%DataView%': typeof DataView === 'undefined' ? undefined : DataView,
|
|
60262
|
+
'%Date%': Date,
|
|
60263
|
+
'%decodeURI%': decodeURI,
|
|
60264
|
+
'%decodeURIComponent%': decodeURIComponent,
|
|
60265
|
+
'%encodeURI%': encodeURI,
|
|
60266
|
+
'%encodeURIComponent%': encodeURIComponent,
|
|
60267
|
+
'%Error%': Error,
|
|
60268
|
+
'%eval%': eval, // eslint-disable-line no-eval
|
|
60269
|
+
'%EvalError%': EvalError,
|
|
60270
|
+
'%Float32Array%': typeof Float32Array === 'undefined' ? undefined : Float32Array,
|
|
60271
|
+
'%Float64Array%': typeof Float64Array === 'undefined' ? undefined : Float64Array,
|
|
60272
|
+
'%FinalizationRegistry%': typeof FinalizationRegistry === 'undefined' ? undefined : FinalizationRegistry,
|
|
60273
|
+
'%Function%': $Function,
|
|
60274
|
+
'%GeneratorFunction%': needsEval,
|
|
60275
|
+
'%Int8Array%': typeof Int8Array === 'undefined' ? undefined : Int8Array,
|
|
60276
|
+
'%Int16Array%': typeof Int16Array === 'undefined' ? undefined : Int16Array,
|
|
60277
|
+
'%Int32Array%': typeof Int32Array === 'undefined' ? undefined : Int32Array,
|
|
60278
|
+
'%isFinite%': isFinite,
|
|
60279
|
+
'%isNaN%': isNaN,
|
|
60280
|
+
'%IteratorPrototype%': hasSymbols ? getProto(getProto([][Symbol.iterator]())) : undefined,
|
|
60281
|
+
'%JSON%': typeof JSON === 'object' ? JSON : undefined,
|
|
60282
|
+
'%Map%': typeof Map === 'undefined' ? undefined : Map,
|
|
60283
|
+
'%MapIteratorPrototype%': typeof Map === 'undefined' || !hasSymbols ? undefined : getProto(new Map()[Symbol.iterator]()),
|
|
60284
|
+
'%Math%': Math,
|
|
60285
|
+
'%Number%': Number,
|
|
60286
|
+
'%Object%': Object,
|
|
60287
|
+
'%parseFloat%': parseFloat,
|
|
60288
|
+
'%parseInt%': parseInt,
|
|
60289
|
+
'%Promise%': typeof Promise === 'undefined' ? undefined : Promise,
|
|
60290
|
+
'%Proxy%': typeof Proxy === 'undefined' ? undefined : Proxy,
|
|
60291
|
+
'%RangeError%': RangeError,
|
|
60292
|
+
'%ReferenceError%': ReferenceError,
|
|
60293
|
+
'%Reflect%': typeof Reflect === 'undefined' ? undefined : Reflect,
|
|
60294
|
+
'%RegExp%': RegExp,
|
|
60295
|
+
'%Set%': typeof Set === 'undefined' ? undefined : Set,
|
|
60296
|
+
'%SetIteratorPrototype%': typeof Set === 'undefined' || !hasSymbols ? undefined : getProto(new Set()[Symbol.iterator]()),
|
|
60297
|
+
'%SharedArrayBuffer%': typeof SharedArrayBuffer === 'undefined' ? undefined : SharedArrayBuffer,
|
|
60298
|
+
'%String%': String,
|
|
60299
|
+
'%StringIteratorPrototype%': hasSymbols ? getProto(''[Symbol.iterator]()) : undefined,
|
|
60300
|
+
'%Symbol%': hasSymbols ? Symbol : undefined,
|
|
60301
|
+
'%SyntaxError%': $SyntaxError,
|
|
60302
|
+
'%ThrowTypeError%': ThrowTypeError,
|
|
60303
|
+
'%TypedArray%': TypedArray,
|
|
60304
|
+
'%TypeError%': $TypeError,
|
|
60305
|
+
'%Uint8Array%': typeof Uint8Array === 'undefined' ? undefined : Uint8Array,
|
|
60306
|
+
'%Uint8ClampedArray%': typeof Uint8ClampedArray === 'undefined' ? undefined : Uint8ClampedArray,
|
|
60307
|
+
'%Uint16Array%': typeof Uint16Array === 'undefined' ? undefined : Uint16Array,
|
|
60308
|
+
'%Uint32Array%': typeof Uint32Array === 'undefined' ? undefined : Uint32Array,
|
|
60309
|
+
'%URIError%': URIError,
|
|
60310
|
+
'%WeakMap%': typeof WeakMap === 'undefined' ? undefined : WeakMap,
|
|
60311
|
+
'%WeakRef%': typeof WeakRef === 'undefined' ? undefined : WeakRef,
|
|
60312
|
+
'%WeakSet%': typeof WeakSet === 'undefined' ? undefined : WeakSet
|
|
60313
|
+
};
|
|
60314
|
+
|
|
60315
|
+
var doEval = function doEval(name) {
|
|
60316
|
+
var value;
|
|
60317
|
+
if (name === '%AsyncFunction%') {
|
|
60318
|
+
value = getEvalledConstructor('async function () {}');
|
|
60319
|
+
} else if (name === '%GeneratorFunction%') {
|
|
60320
|
+
value = getEvalledConstructor('function* () {}');
|
|
60321
|
+
} else if (name === '%AsyncGeneratorFunction%') {
|
|
60322
|
+
value = getEvalledConstructor('async function* () {}');
|
|
60323
|
+
} else if (name === '%AsyncGenerator%') {
|
|
60324
|
+
var fn = doEval('%AsyncGeneratorFunction%');
|
|
60325
|
+
if (fn) {
|
|
60326
|
+
value = fn.prototype;
|
|
60327
|
+
}
|
|
60328
|
+
} else if (name === '%AsyncIteratorPrototype%') {
|
|
60329
|
+
var gen = doEval('%AsyncGenerator%');
|
|
60330
|
+
if (gen) {
|
|
60331
|
+
value = getProto(gen.prototype);
|
|
60332
|
+
}
|
|
60333
|
+
}
|
|
60334
|
+
|
|
60335
|
+
INTRINSICS[name] = value;
|
|
60336
|
+
|
|
60337
|
+
return value;
|
|
60338
|
+
};
|
|
60339
|
+
|
|
60340
|
+
var LEGACY_ALIASES = {
|
|
60341
|
+
'%ArrayBufferPrototype%': ['ArrayBuffer', 'prototype'],
|
|
60342
|
+
'%ArrayPrototype%': ['Array', 'prototype'],
|
|
60343
|
+
'%ArrayProto_entries%': ['Array', 'prototype', 'entries'],
|
|
60344
|
+
'%ArrayProto_forEach%': ['Array', 'prototype', 'forEach'],
|
|
60345
|
+
'%ArrayProto_keys%': ['Array', 'prototype', 'keys'],
|
|
60346
|
+
'%ArrayProto_values%': ['Array', 'prototype', 'values'],
|
|
60347
|
+
'%AsyncFunctionPrototype%': ['AsyncFunction', 'prototype'],
|
|
60348
|
+
'%AsyncGenerator%': ['AsyncGeneratorFunction', 'prototype'],
|
|
60349
|
+
'%AsyncGeneratorPrototype%': ['AsyncGeneratorFunction', 'prototype', 'prototype'],
|
|
60350
|
+
'%BooleanPrototype%': ['Boolean', 'prototype'],
|
|
60351
|
+
'%DataViewPrototype%': ['DataView', 'prototype'],
|
|
60352
|
+
'%DatePrototype%': ['Date', 'prototype'],
|
|
60353
|
+
'%ErrorPrototype%': ['Error', 'prototype'],
|
|
60354
|
+
'%EvalErrorPrototype%': ['EvalError', 'prototype'],
|
|
60355
|
+
'%Float32ArrayPrototype%': ['Float32Array', 'prototype'],
|
|
60356
|
+
'%Float64ArrayPrototype%': ['Float64Array', 'prototype'],
|
|
60357
|
+
'%FunctionPrototype%': ['Function', 'prototype'],
|
|
60358
|
+
'%Generator%': ['GeneratorFunction', 'prototype'],
|
|
60359
|
+
'%GeneratorPrototype%': ['GeneratorFunction', 'prototype', 'prototype'],
|
|
60360
|
+
'%Int8ArrayPrototype%': ['Int8Array', 'prototype'],
|
|
60361
|
+
'%Int16ArrayPrototype%': ['Int16Array', 'prototype'],
|
|
60362
|
+
'%Int32ArrayPrototype%': ['Int32Array', 'prototype'],
|
|
60363
|
+
'%JSONParse%': ['JSON', 'parse'],
|
|
60364
|
+
'%JSONStringify%': ['JSON', 'stringify'],
|
|
60365
|
+
'%MapPrototype%': ['Map', 'prototype'],
|
|
60366
|
+
'%NumberPrototype%': ['Number', 'prototype'],
|
|
60367
|
+
'%ObjectPrototype%': ['Object', 'prototype'],
|
|
60368
|
+
'%ObjProto_toString%': ['Object', 'prototype', 'toString'],
|
|
60369
|
+
'%ObjProto_valueOf%': ['Object', 'prototype', 'valueOf'],
|
|
60370
|
+
'%PromisePrototype%': ['Promise', 'prototype'],
|
|
60371
|
+
'%PromiseProto_then%': ['Promise', 'prototype', 'then'],
|
|
60372
|
+
'%Promise_all%': ['Promise', 'all'],
|
|
60373
|
+
'%Promise_reject%': ['Promise', 'reject'],
|
|
60374
|
+
'%Promise_resolve%': ['Promise', 'resolve'],
|
|
60375
|
+
'%RangeErrorPrototype%': ['RangeError', 'prototype'],
|
|
60376
|
+
'%ReferenceErrorPrototype%': ['ReferenceError', 'prototype'],
|
|
60377
|
+
'%RegExpPrototype%': ['RegExp', 'prototype'],
|
|
60378
|
+
'%SetPrototype%': ['Set', 'prototype'],
|
|
60379
|
+
'%SharedArrayBufferPrototype%': ['SharedArrayBuffer', 'prototype'],
|
|
60380
|
+
'%StringPrototype%': ['String', 'prototype'],
|
|
60381
|
+
'%SymbolPrototype%': ['Symbol', 'prototype'],
|
|
60382
|
+
'%SyntaxErrorPrototype%': ['SyntaxError', 'prototype'],
|
|
60383
|
+
'%TypedArrayPrototype%': ['TypedArray', 'prototype'],
|
|
60384
|
+
'%TypeErrorPrototype%': ['TypeError', 'prototype'],
|
|
60385
|
+
'%Uint8ArrayPrototype%': ['Uint8Array', 'prototype'],
|
|
60386
|
+
'%Uint8ClampedArrayPrototype%': ['Uint8ClampedArray', 'prototype'],
|
|
60387
|
+
'%Uint16ArrayPrototype%': ['Uint16Array', 'prototype'],
|
|
60388
|
+
'%Uint32ArrayPrototype%': ['Uint32Array', 'prototype'],
|
|
60389
|
+
'%URIErrorPrototype%': ['URIError', 'prototype'],
|
|
60390
|
+
'%WeakMapPrototype%': ['WeakMap', 'prototype'],
|
|
60391
|
+
'%WeakSetPrototype%': ['WeakSet', 'prototype']
|
|
60392
|
+
};
|
|
60393
|
+
|
|
60394
|
+
var bind = require('function-bind');
|
|
60395
|
+
var hasOwn = require('has');
|
|
60396
|
+
var $concat = bind.call(Function.call, Array.prototype.concat);
|
|
60397
|
+
var $spliceApply = bind.call(Function.apply, Array.prototype.splice);
|
|
60398
|
+
var $replace = bind.call(Function.call, String.prototype.replace);
|
|
60399
|
+
var $strSlice = bind.call(Function.call, String.prototype.slice);
|
|
60400
|
+
|
|
60401
|
+
/* adapted from https://github.com/lodash/lodash/blob/4.17.15/dist/lodash.js#L6735-L6744 */
|
|
60402
|
+
var rePropName = /[^%.[\]]+|\[(?:(-?\d+(?:\.\d+)?)|(["'])((?:(?!\2)[^\\]|\\.)*?)\2)\]|(?=(?:\.|\[\])(?:\.|\[\]|%$))/g;
|
|
60403
|
+
var reEscapeChar = /\\(\\)?/g; /** Used to match backslashes in property paths. */
|
|
60404
|
+
var stringToPath = function stringToPath(string) {
|
|
60405
|
+
var first = $strSlice(string, 0, 1);
|
|
60406
|
+
var last = $strSlice(string, -1);
|
|
60407
|
+
if (first === '%' && last !== '%') {
|
|
60408
|
+
throw new $SyntaxError('invalid intrinsic syntax, expected closing `%`');
|
|
60409
|
+
} else if (last === '%' && first !== '%') {
|
|
60410
|
+
throw new $SyntaxError('invalid intrinsic syntax, expected opening `%`');
|
|
60411
|
+
}
|
|
60412
|
+
var result = [];
|
|
60413
|
+
$replace(string, rePropName, function (match, number, quote, subString) {
|
|
60414
|
+
result[result.length] = quote ? $replace(subString, reEscapeChar, '$1') : number || match;
|
|
60415
|
+
});
|
|
60416
|
+
return result;
|
|
60417
|
+
};
|
|
60418
|
+
/* end adaptation */
|
|
60419
|
+
|
|
60420
|
+
var getBaseIntrinsic = function getBaseIntrinsic(name, allowMissing) {
|
|
60421
|
+
var intrinsicName = name;
|
|
60422
|
+
var alias;
|
|
60423
|
+
if (hasOwn(LEGACY_ALIASES, intrinsicName)) {
|
|
60424
|
+
alias = LEGACY_ALIASES[intrinsicName];
|
|
60425
|
+
intrinsicName = '%' + alias[0] + '%';
|
|
60426
|
+
}
|
|
60427
|
+
|
|
60428
|
+
if (hasOwn(INTRINSICS, intrinsicName)) {
|
|
60429
|
+
var value = INTRINSICS[intrinsicName];
|
|
60430
|
+
if (value === needsEval) {
|
|
60431
|
+
value = doEval(intrinsicName);
|
|
60432
|
+
}
|
|
60433
|
+
if (typeof value === 'undefined' && !allowMissing) {
|
|
60434
|
+
throw new $TypeError('intrinsic ' + name + ' exists, but is not available. Please file an issue!');
|
|
60435
|
+
}
|
|
60436
|
+
|
|
60437
|
+
return {
|
|
60438
|
+
alias: alias,
|
|
60439
|
+
name: intrinsicName,
|
|
60440
|
+
value: value
|
|
60441
|
+
};
|
|
60442
|
+
}
|
|
60443
|
+
|
|
60444
|
+
throw new $SyntaxError('intrinsic ' + name + ' does not exist!');
|
|
60445
|
+
};
|
|
60446
|
+
|
|
60447
|
+
module.exports = function GetIntrinsic(name, allowMissing) {
|
|
60448
|
+
if (typeof name !== 'string' || name.length === 0) {
|
|
60449
|
+
throw new $TypeError('intrinsic name must be a non-empty string');
|
|
60450
|
+
}
|
|
60451
|
+
if (arguments.length > 1 && typeof allowMissing !== 'boolean') {
|
|
60452
|
+
throw new $TypeError('"allowMissing" argument must be a boolean');
|
|
60453
|
+
}
|
|
60454
|
+
|
|
60455
|
+
var parts = stringToPath(name);
|
|
60456
|
+
var intrinsicBaseName = parts.length > 0 ? parts[0] : '';
|
|
60457
|
+
|
|
60458
|
+
var intrinsic = getBaseIntrinsic('%' + intrinsicBaseName + '%', allowMissing);
|
|
60459
|
+
var intrinsicRealName = intrinsic.name;
|
|
60460
|
+
var value = intrinsic.value;
|
|
60461
|
+
var skipFurtherCaching = false;
|
|
60462
|
+
|
|
60463
|
+
var alias = intrinsic.alias;
|
|
60464
|
+
if (alias) {
|
|
60465
|
+
intrinsicBaseName = alias[0];
|
|
60466
|
+
$spliceApply(parts, $concat([0, 1], alias));
|
|
60467
|
+
}
|
|
60468
|
+
|
|
60469
|
+
for (var i = 1, isOwn = true; i < parts.length; i += 1) {
|
|
60470
|
+
var part = parts[i];
|
|
60471
|
+
var first = $strSlice(part, 0, 1);
|
|
60472
|
+
var last = $strSlice(part, -1);
|
|
60473
|
+
if (
|
|
60474
|
+
(
|
|
60475
|
+
(first === '"' || first === "'" || first === '`')
|
|
60476
|
+
|| (last === '"' || last === "'" || last === '`')
|
|
60477
|
+
)
|
|
60478
|
+
&& first !== last
|
|
60479
|
+
) {
|
|
60480
|
+
throw new $SyntaxError('property names with quotes must have matching quotes');
|
|
60481
|
+
}
|
|
60482
|
+
if (part === 'constructor' || !isOwn) {
|
|
60483
|
+
skipFurtherCaching = true;
|
|
60484
|
+
}
|
|
60485
|
+
|
|
60486
|
+
intrinsicBaseName += '.' + part;
|
|
60487
|
+
intrinsicRealName = '%' + intrinsicBaseName + '%';
|
|
60488
|
+
|
|
60489
|
+
if (hasOwn(INTRINSICS, intrinsicRealName)) {
|
|
60490
|
+
value = INTRINSICS[intrinsicRealName];
|
|
60491
|
+
} else if (value != null) {
|
|
60492
|
+
if (!(part in value)) {
|
|
60493
|
+
if (!allowMissing) {
|
|
60494
|
+
throw new $TypeError('base intrinsic for ' + name + ' exists, but the property is not available.');
|
|
60495
|
+
}
|
|
60496
|
+
return void undefined;
|
|
60497
|
+
}
|
|
60498
|
+
if ($gOPD && (i + 1) >= parts.length) {
|
|
60499
|
+
var desc = $gOPD(value, part);
|
|
60500
|
+
isOwn = !!desc;
|
|
60501
|
+
|
|
60502
|
+
// By convention, when a data property is converted to an accessor
|
|
60503
|
+
// property to emulate a data property that does not suffer from
|
|
60504
|
+
// the override mistake, that accessor's getter is marked with
|
|
60505
|
+
// an `originalValue` property. Here, when we detect this, we
|
|
60506
|
+
// uphold the illusion by pretending to see that original data
|
|
60507
|
+
// property, i.e., returning the value rather than the getter
|
|
60508
|
+
// itself.
|
|
60509
|
+
if (isOwn && 'get' in desc && !('originalValue' in desc.get)) {
|
|
60510
|
+
value = desc.get;
|
|
60511
|
+
} else {
|
|
60512
|
+
value = value[part];
|
|
60513
|
+
}
|
|
60514
|
+
} else {
|
|
60515
|
+
isOwn = hasOwn(value, part);
|
|
60516
|
+
value = value[part];
|
|
60517
|
+
}
|
|
60518
|
+
|
|
60519
|
+
if (isOwn && !skipFurtherCaching) {
|
|
60520
|
+
INTRINSICS[intrinsicRealName] = value;
|
|
60521
|
+
}
|
|
60522
|
+
}
|
|
60523
|
+
}
|
|
60524
|
+
return value;
|
|
60525
|
+
};
|
|
60526
|
+
|
|
60527
|
+
},{"function-bind":234,"has":238,"has-symbols":236}],236:[function(require,module,exports){
|
|
60528
|
+
'use strict';
|
|
60529
|
+
|
|
60530
|
+
var origSymbol = typeof Symbol !== 'undefined' && Symbol;
|
|
60531
|
+
var hasSymbolSham = require('./shams');
|
|
60532
|
+
|
|
60533
|
+
module.exports = function hasNativeSymbols() {
|
|
60534
|
+
if (typeof origSymbol !== 'function') { return false; }
|
|
60535
|
+
if (typeof Symbol !== 'function') { return false; }
|
|
60536
|
+
if (typeof origSymbol('foo') !== 'symbol') { return false; }
|
|
60537
|
+
if (typeof Symbol('bar') !== 'symbol') { return false; }
|
|
60538
|
+
|
|
60539
|
+
return hasSymbolSham();
|
|
60540
|
+
};
|
|
60541
|
+
|
|
60542
|
+
},{"./shams":237}],237:[function(require,module,exports){
|
|
60543
|
+
'use strict';
|
|
60544
|
+
|
|
60545
|
+
/* eslint complexity: [2, 18], max-statements: [2, 33] */
|
|
60546
|
+
module.exports = function hasSymbols() {
|
|
60547
|
+
if (typeof Symbol !== 'function' || typeof Object.getOwnPropertySymbols !== 'function') { return false; }
|
|
60548
|
+
if (typeof Symbol.iterator === 'symbol') { return true; }
|
|
60549
|
+
|
|
60550
|
+
var obj = {};
|
|
60551
|
+
var sym = Symbol('test');
|
|
60552
|
+
var symObj = Object(sym);
|
|
60553
|
+
if (typeof sym === 'string') { return false; }
|
|
60554
|
+
|
|
60555
|
+
if (Object.prototype.toString.call(sym) !== '[object Symbol]') { return false; }
|
|
60556
|
+
if (Object.prototype.toString.call(symObj) !== '[object Symbol]') { return false; }
|
|
60557
|
+
|
|
60558
|
+
// temp disabled per https://github.com/ljharb/object.assign/issues/17
|
|
60559
|
+
// if (sym instanceof Symbol) { return false; }
|
|
60560
|
+
// temp disabled per https://github.com/WebReflection/get-own-property-symbols/issues/4
|
|
60561
|
+
// if (!(symObj instanceof Symbol)) { return false; }
|
|
60562
|
+
|
|
60563
|
+
// if (typeof Symbol.prototype.toString !== 'function') { return false; }
|
|
60564
|
+
// if (String(sym) !== Symbol.prototype.toString.call(sym)) { return false; }
|
|
60565
|
+
|
|
60566
|
+
var symVal = 42;
|
|
60567
|
+
obj[sym] = symVal;
|
|
60568
|
+
for (sym in obj) { return false; } // eslint-disable-line no-restricted-syntax, no-unreachable-loop
|
|
60569
|
+
if (typeof Object.keys === 'function' && Object.keys(obj).length !== 0) { return false; }
|
|
60570
|
+
|
|
60571
|
+
if (typeof Object.getOwnPropertyNames === 'function' && Object.getOwnPropertyNames(obj).length !== 0) { return false; }
|
|
60572
|
+
|
|
60573
|
+
var syms = Object.getOwnPropertySymbols(obj);
|
|
60574
|
+
if (syms.length !== 1 || syms[0] !== sym) { return false; }
|
|
60575
|
+
|
|
60576
|
+
if (!Object.prototype.propertyIsEnumerable.call(obj, sym)) { return false; }
|
|
60577
|
+
|
|
60578
|
+
if (typeof Object.getOwnPropertyDescriptor === 'function') {
|
|
60579
|
+
var descriptor = Object.getOwnPropertyDescriptor(obj, sym);
|
|
60580
|
+
if (descriptor.value !== symVal || descriptor.enumerable !== true) { return false; }
|
|
60581
|
+
}
|
|
60582
|
+
|
|
60583
|
+
return true;
|
|
60584
|
+
};
|
|
60585
|
+
|
|
60586
|
+
},{}],238:[function(require,module,exports){
|
|
60587
|
+
'use strict';
|
|
60588
|
+
|
|
60589
|
+
var bind = require('function-bind');
|
|
60590
|
+
|
|
60591
|
+
module.exports = bind.call(Function.call, Object.prototype.hasOwnProperty);
|
|
60592
|
+
|
|
60593
|
+
},{"function-bind":234}],239:[function(require,module,exports){
|
|
60594
|
+
/*! ieee754. BSD-3-Clause License. Feross Aboukhadijeh <https://feross.org/opensource> */
|
|
59681
60595
|
exports.read = function (buffer, offset, isLE, mLen, nBytes) {
|
|
59682
60596
|
var e, m
|
|
59683
60597
|
var eLen = (nBytes * 8) - mLen - 1
|
|
@@ -59763,9 +60677,44 @@ exports.write = function (buffer, value, offset, isLE, mLen, nBytes) {
|
|
|
59763
60677
|
buffer[offset + i - d] |= s * 128
|
|
59764
60678
|
}
|
|
59765
60679
|
|
|
59766
|
-
},{}],
|
|
60680
|
+
},{}],240:[function(require,module,exports){
|
|
59767
60681
|
arguments[4][3][0].apply(exports,arguments)
|
|
59768
|
-
},{"dup":3}],
|
|
60682
|
+
},{"dup":3}],241:[function(require,module,exports){
|
|
60683
|
+
'use strict';
|
|
60684
|
+
|
|
60685
|
+
var hasToStringTag = typeof Symbol === 'function' && typeof Symbol.toStringTag === 'symbol';
|
|
60686
|
+
var callBound = require('call-bind/callBound');
|
|
60687
|
+
|
|
60688
|
+
var $toString = callBound('Object.prototype.toString');
|
|
60689
|
+
|
|
60690
|
+
var isStandardArguments = function isArguments(value) {
|
|
60691
|
+
if (hasToStringTag && value && typeof value === 'object' && Symbol.toStringTag in value) {
|
|
60692
|
+
return false;
|
|
60693
|
+
}
|
|
60694
|
+
return $toString(value) === '[object Arguments]';
|
|
60695
|
+
};
|
|
60696
|
+
|
|
60697
|
+
var isLegacyArguments = function isArguments(value) {
|
|
60698
|
+
if (isStandardArguments(value)) {
|
|
60699
|
+
return true;
|
|
60700
|
+
}
|
|
60701
|
+
return value !== null &&
|
|
60702
|
+
typeof value === 'object' &&
|
|
60703
|
+
typeof value.length === 'number' &&
|
|
60704
|
+
value.length >= 0 &&
|
|
60705
|
+
$toString(value) !== '[object Array]' &&
|
|
60706
|
+
$toString(value.callee) === '[object Function]';
|
|
60707
|
+
};
|
|
60708
|
+
|
|
60709
|
+
var supportsStandardArguments = (function () {
|
|
60710
|
+
return isStandardArguments(arguments);
|
|
60711
|
+
}());
|
|
60712
|
+
|
|
60713
|
+
isStandardArguments.isLegacyArguments = isLegacyArguments; // for tests
|
|
60714
|
+
|
|
60715
|
+
module.exports = supportsStandardArguments ? isStandardArguments : isLegacyArguments;
|
|
60716
|
+
|
|
60717
|
+
},{"call-bind/callBound":57}],242:[function(require,module,exports){
|
|
59769
60718
|
/*!
|
|
59770
60719
|
* Determine if an object is a Buffer
|
|
59771
60720
|
*
|
|
@@ -59788,14 +60737,79 @@ function isSlowBuffer (obj) {
|
|
|
59788
60737
|
return typeof obj.readFloatLE === 'function' && typeof obj.slice === 'function' && isBuffer(obj.slice(0, 0))
|
|
59789
60738
|
}
|
|
59790
60739
|
|
|
59791
|
-
},{}],
|
|
60740
|
+
},{}],243:[function(require,module,exports){
|
|
60741
|
+
'use strict';
|
|
60742
|
+
|
|
60743
|
+
var getDay = Date.prototype.getDay;
|
|
60744
|
+
var tryDateObject = function tryDateGetDayCall(value) {
|
|
60745
|
+
try {
|
|
60746
|
+
getDay.call(value);
|
|
60747
|
+
return true;
|
|
60748
|
+
} catch (e) {
|
|
60749
|
+
return false;
|
|
60750
|
+
}
|
|
60751
|
+
};
|
|
60752
|
+
|
|
60753
|
+
var toStr = Object.prototype.toString;
|
|
60754
|
+
var dateClass = '[object Date]';
|
|
60755
|
+
var hasToStringTag = typeof Symbol === 'function' && !!Symbol.toStringTag;
|
|
60756
|
+
|
|
60757
|
+
module.exports = function isDateObject(value) {
|
|
60758
|
+
if (typeof value !== 'object' || value === null) {
|
|
60759
|
+
return false;
|
|
60760
|
+
}
|
|
60761
|
+
return hasToStringTag ? tryDateObject(value) : toStr.call(value) === dateClass;
|
|
60762
|
+
};
|
|
60763
|
+
|
|
60764
|
+
},{}],244:[function(require,module,exports){
|
|
60765
|
+
'use strict';
|
|
60766
|
+
|
|
60767
|
+
var has = require('has');
|
|
60768
|
+
var regexExec = RegExp.prototype.exec;
|
|
60769
|
+
var gOPD = Object.getOwnPropertyDescriptor;
|
|
60770
|
+
|
|
60771
|
+
var tryRegexExecCall = function tryRegexExec(value) {
|
|
60772
|
+
try {
|
|
60773
|
+
var lastIndex = value.lastIndex;
|
|
60774
|
+
value.lastIndex = 0;
|
|
60775
|
+
|
|
60776
|
+
regexExec.call(value);
|
|
60777
|
+
return true;
|
|
60778
|
+
} catch (e) {
|
|
60779
|
+
return false;
|
|
60780
|
+
} finally {
|
|
60781
|
+
value.lastIndex = lastIndex;
|
|
60782
|
+
}
|
|
60783
|
+
};
|
|
60784
|
+
var toStr = Object.prototype.toString;
|
|
60785
|
+
var regexClass = '[object RegExp]';
|
|
60786
|
+
var hasToStringTag = typeof Symbol === 'function' && typeof Symbol.toStringTag === 'symbol';
|
|
60787
|
+
|
|
60788
|
+
module.exports = function isRegex(value) {
|
|
60789
|
+
if (!value || typeof value !== 'object') {
|
|
60790
|
+
return false;
|
|
60791
|
+
}
|
|
60792
|
+
if (!hasToStringTag) {
|
|
60793
|
+
return toStr.call(value) === regexClass;
|
|
60794
|
+
}
|
|
60795
|
+
|
|
60796
|
+
var descriptor = gOPD(value, 'lastIndex');
|
|
60797
|
+
var hasLastIndexDataProperty = descriptor && has(descriptor, 'value');
|
|
60798
|
+
if (!hasLastIndexDataProperty) {
|
|
60799
|
+
return false;
|
|
60800
|
+
}
|
|
60801
|
+
|
|
60802
|
+
return tryRegexExecCall(value);
|
|
60803
|
+
};
|
|
60804
|
+
|
|
60805
|
+
},{"has":238}],245:[function(require,module,exports){
|
|
59792
60806
|
var toString = {}.toString;
|
|
59793
60807
|
|
|
59794
60808
|
module.exports = Array.isArray || function (arr) {
|
|
59795
60809
|
return toString.call(arr) == '[object Array]';
|
|
59796
60810
|
};
|
|
59797
60811
|
|
|
59798
|
-
},{}],
|
|
60812
|
+
},{}],246:[function(require,module,exports){
|
|
59799
60813
|
var lookup = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/';
|
|
59800
60814
|
|
|
59801
60815
|
;(function (exports) {
|
|
@@ -59921,7 +60935,7 @@ var lookup = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/';
|
|
|
59921
60935
|
exports.fromByteArray = uint8ToBase64
|
|
59922
60936
|
}(typeof exports === 'undefined' ? (this.base64js = {}) : exports))
|
|
59923
60937
|
|
|
59924
|
-
},{}],
|
|
60938
|
+
},{}],247:[function(require,module,exports){
|
|
59925
60939
|
const inflate = require('tiny-inflate');
|
|
59926
60940
|
|
|
59927
60941
|
// Shift size for getting the index-1 table offset.
|
|
@@ -60053,7 +61067,7 @@ class UnicodeTrie {
|
|
|
60053
61067
|
}
|
|
60054
61068
|
|
|
60055
61069
|
module.exports = UnicodeTrie;
|
|
60056
|
-
},{"tiny-inflate":
|
|
61070
|
+
},{"tiny-inflate":300}],248:[function(require,module,exports){
|
|
60057
61071
|
// The following break classes are handled by the pair table
|
|
60058
61072
|
|
|
60059
61073
|
exports.OP = 0; // Opening punctuation
|
|
@@ -60099,7 +61113,7 @@ exports.SG = 37; // Surrogates
|
|
|
60099
61113
|
exports.SP = 38; // Space
|
|
60100
61114
|
exports.XX = 39; // Unknown
|
|
60101
61115
|
|
|
60102
|
-
},{}],
|
|
61116
|
+
},{}],249:[function(require,module,exports){
|
|
60103
61117
|
let AI, AL, BA, BK, CB, CJ, CR, ID, LF, NL, NS, SA, SG, SP, WJ, XX;
|
|
60104
61118
|
const UnicodeTrie = require('unicode-trie');
|
|
60105
61119
|
|
|
@@ -60231,7 +61245,7 @@ class LineBreaker {
|
|
|
60231
61245
|
|
|
60232
61246
|
module.exports = LineBreaker;
|
|
60233
61247
|
|
|
60234
|
-
},{"./classes":
|
|
61248
|
+
},{"./classes":248,"./pairs":250,"base64-js":246,"unicode-trie":247}],250:[function(require,module,exports){
|
|
60235
61249
|
let CI_BRK, CP_BRK, DI_BRK, IN_BRK, PR_BRK;
|
|
60236
61250
|
exports.DI_BRK = (DI_BRK = 0); // Direct break opportunity
|
|
60237
61251
|
exports.IN_BRK = (IN_BRK = 1); // Indirect break opportunity
|
|
@@ -60271,8 +61285,343 @@ exports.pairTable = [
|
|
|
60271
61285
|
[DI_BRK, PR_BRK, PR_BRK, IN_BRK, IN_BRK, IN_BRK, PR_BRK, PR_BRK, PR_BRK, DI_BRK, IN_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, IN_BRK, IN_BRK, IN_BRK, DI_BRK, DI_BRK, PR_BRK, CI_BRK, PR_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, IN_BRK, DI_BRK],
|
|
60272
61286
|
[DI_BRK, PR_BRK, PR_BRK, IN_BRK, IN_BRK, IN_BRK, PR_BRK, PR_BRK, PR_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, IN_BRK, IN_BRK, DI_BRK, DI_BRK, PR_BRK, CI_BRK, PR_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, IN_BRK]
|
|
60273
61287
|
];
|
|
60274
|
-
},{}],
|
|
60275
|
-
|
|
61288
|
+
},{}],251:[function(require,module,exports){
|
|
61289
|
+
/*
|
|
61290
|
+
object-assign
|
|
61291
|
+
(c) Sindre Sorhus
|
|
61292
|
+
@license MIT
|
|
61293
|
+
*/
|
|
61294
|
+
|
|
61295
|
+
'use strict';
|
|
61296
|
+
/* eslint-disable no-unused-vars */
|
|
61297
|
+
var getOwnPropertySymbols = Object.getOwnPropertySymbols;
|
|
61298
|
+
var hasOwnProperty = Object.prototype.hasOwnProperty;
|
|
61299
|
+
var propIsEnumerable = Object.prototype.propertyIsEnumerable;
|
|
61300
|
+
|
|
61301
|
+
function toObject(val) {
|
|
61302
|
+
if (val === null || val === undefined) {
|
|
61303
|
+
throw new TypeError('Object.assign cannot be called with null or undefined');
|
|
61304
|
+
}
|
|
61305
|
+
|
|
61306
|
+
return Object(val);
|
|
61307
|
+
}
|
|
61308
|
+
|
|
61309
|
+
function shouldUseNative() {
|
|
61310
|
+
try {
|
|
61311
|
+
if (!Object.assign) {
|
|
61312
|
+
return false;
|
|
61313
|
+
}
|
|
61314
|
+
|
|
61315
|
+
// Detect buggy property enumeration order in older V8 versions.
|
|
61316
|
+
|
|
61317
|
+
// https://bugs.chromium.org/p/v8/issues/detail?id=4118
|
|
61318
|
+
var test1 = new String('abc'); // eslint-disable-line no-new-wrappers
|
|
61319
|
+
test1[5] = 'de';
|
|
61320
|
+
if (Object.getOwnPropertyNames(test1)[0] === '5') {
|
|
61321
|
+
return false;
|
|
61322
|
+
}
|
|
61323
|
+
|
|
61324
|
+
// https://bugs.chromium.org/p/v8/issues/detail?id=3056
|
|
61325
|
+
var test2 = {};
|
|
61326
|
+
for (var i = 0; i < 10; i++) {
|
|
61327
|
+
test2['_' + String.fromCharCode(i)] = i;
|
|
61328
|
+
}
|
|
61329
|
+
var order2 = Object.getOwnPropertyNames(test2).map(function (n) {
|
|
61330
|
+
return test2[n];
|
|
61331
|
+
});
|
|
61332
|
+
if (order2.join('') !== '0123456789') {
|
|
61333
|
+
return false;
|
|
61334
|
+
}
|
|
61335
|
+
|
|
61336
|
+
// https://bugs.chromium.org/p/v8/issues/detail?id=3056
|
|
61337
|
+
var test3 = {};
|
|
61338
|
+
'abcdefghijklmnopqrst'.split('').forEach(function (letter) {
|
|
61339
|
+
test3[letter] = letter;
|
|
61340
|
+
});
|
|
61341
|
+
if (Object.keys(Object.assign({}, test3)).join('') !==
|
|
61342
|
+
'abcdefghijklmnopqrst') {
|
|
61343
|
+
return false;
|
|
61344
|
+
}
|
|
61345
|
+
|
|
61346
|
+
return true;
|
|
61347
|
+
} catch (err) {
|
|
61348
|
+
// We don't expect any of the above to throw, but better to be safe.
|
|
61349
|
+
return false;
|
|
61350
|
+
}
|
|
61351
|
+
}
|
|
61352
|
+
|
|
61353
|
+
module.exports = shouldUseNative() ? Object.assign : function (target, source) {
|
|
61354
|
+
var from;
|
|
61355
|
+
var to = toObject(target);
|
|
61356
|
+
var symbols;
|
|
61357
|
+
|
|
61358
|
+
for (var s = 1; s < arguments.length; s++) {
|
|
61359
|
+
from = Object(arguments[s]);
|
|
61360
|
+
|
|
61361
|
+
for (var key in from) {
|
|
61362
|
+
if (hasOwnProperty.call(from, key)) {
|
|
61363
|
+
to[key] = from[key];
|
|
61364
|
+
}
|
|
61365
|
+
}
|
|
61366
|
+
|
|
61367
|
+
if (getOwnPropertySymbols) {
|
|
61368
|
+
symbols = getOwnPropertySymbols(from);
|
|
61369
|
+
for (var i = 0; i < symbols.length; i++) {
|
|
61370
|
+
if (propIsEnumerable.call(from, symbols[i])) {
|
|
61371
|
+
to[symbols[i]] = from[symbols[i]];
|
|
61372
|
+
}
|
|
61373
|
+
}
|
|
61374
|
+
}
|
|
61375
|
+
}
|
|
61376
|
+
|
|
61377
|
+
return to;
|
|
61378
|
+
};
|
|
61379
|
+
|
|
61380
|
+
},{}],252:[function(require,module,exports){
|
|
61381
|
+
'use strict';
|
|
61382
|
+
|
|
61383
|
+
var numberIsNaN = function (value) {
|
|
61384
|
+
return value !== value;
|
|
61385
|
+
};
|
|
61386
|
+
|
|
61387
|
+
module.exports = function is(a, b) {
|
|
61388
|
+
if (a === 0 && b === 0) {
|
|
61389
|
+
return 1 / a === 1 / b;
|
|
61390
|
+
}
|
|
61391
|
+
if (a === b) {
|
|
61392
|
+
return true;
|
|
61393
|
+
}
|
|
61394
|
+
if (numberIsNaN(a) && numberIsNaN(b)) {
|
|
61395
|
+
return true;
|
|
61396
|
+
}
|
|
61397
|
+
return false;
|
|
61398
|
+
};
|
|
61399
|
+
|
|
61400
|
+
|
|
61401
|
+
},{}],253:[function(require,module,exports){
|
|
61402
|
+
'use strict';
|
|
61403
|
+
|
|
61404
|
+
var define = require('define-properties');
|
|
61405
|
+
var callBind = require('call-bind');
|
|
61406
|
+
|
|
61407
|
+
var implementation = require('./implementation');
|
|
61408
|
+
var getPolyfill = require('./polyfill');
|
|
61409
|
+
var shim = require('./shim');
|
|
61410
|
+
|
|
61411
|
+
var polyfill = callBind(getPolyfill(), Object);
|
|
61412
|
+
|
|
61413
|
+
define(polyfill, {
|
|
61414
|
+
getPolyfill: getPolyfill,
|
|
61415
|
+
implementation: implementation,
|
|
61416
|
+
shim: shim
|
|
61417
|
+
});
|
|
61418
|
+
|
|
61419
|
+
module.exports = polyfill;
|
|
61420
|
+
|
|
61421
|
+
},{"./implementation":252,"./polyfill":254,"./shim":255,"call-bind":58,"define-properties":229}],254:[function(require,module,exports){
|
|
61422
|
+
'use strict';
|
|
61423
|
+
|
|
61424
|
+
var implementation = require('./implementation');
|
|
61425
|
+
|
|
61426
|
+
module.exports = function getPolyfill() {
|
|
61427
|
+
return typeof Object.is === 'function' ? Object.is : implementation;
|
|
61428
|
+
};
|
|
61429
|
+
|
|
61430
|
+
},{"./implementation":252}],255:[function(require,module,exports){
|
|
61431
|
+
'use strict';
|
|
61432
|
+
|
|
61433
|
+
var getPolyfill = require('./polyfill');
|
|
61434
|
+
var define = require('define-properties');
|
|
61435
|
+
|
|
61436
|
+
module.exports = function shimObjectIs() {
|
|
61437
|
+
var polyfill = getPolyfill();
|
|
61438
|
+
define(Object, { is: polyfill }, {
|
|
61439
|
+
is: function testObjectIs() {
|
|
61440
|
+
return Object.is !== polyfill;
|
|
61441
|
+
}
|
|
61442
|
+
});
|
|
61443
|
+
return polyfill;
|
|
61444
|
+
};
|
|
61445
|
+
|
|
61446
|
+
},{"./polyfill":254,"define-properties":229}],256:[function(require,module,exports){
|
|
61447
|
+
'use strict';
|
|
61448
|
+
|
|
61449
|
+
var keysShim;
|
|
61450
|
+
if (!Object.keys) {
|
|
61451
|
+
// modified from https://github.com/es-shims/es5-shim
|
|
61452
|
+
var has = Object.prototype.hasOwnProperty;
|
|
61453
|
+
var toStr = Object.prototype.toString;
|
|
61454
|
+
var isArgs = require('./isArguments'); // eslint-disable-line global-require
|
|
61455
|
+
var isEnumerable = Object.prototype.propertyIsEnumerable;
|
|
61456
|
+
var hasDontEnumBug = !isEnumerable.call({ toString: null }, 'toString');
|
|
61457
|
+
var hasProtoEnumBug = isEnumerable.call(function () {}, 'prototype');
|
|
61458
|
+
var dontEnums = [
|
|
61459
|
+
'toString',
|
|
61460
|
+
'toLocaleString',
|
|
61461
|
+
'valueOf',
|
|
61462
|
+
'hasOwnProperty',
|
|
61463
|
+
'isPrototypeOf',
|
|
61464
|
+
'propertyIsEnumerable',
|
|
61465
|
+
'constructor'
|
|
61466
|
+
];
|
|
61467
|
+
var equalsConstructorPrototype = function (o) {
|
|
61468
|
+
var ctor = o.constructor;
|
|
61469
|
+
return ctor && ctor.prototype === o;
|
|
61470
|
+
};
|
|
61471
|
+
var excludedKeys = {
|
|
61472
|
+
$applicationCache: true,
|
|
61473
|
+
$console: true,
|
|
61474
|
+
$external: true,
|
|
61475
|
+
$frame: true,
|
|
61476
|
+
$frameElement: true,
|
|
61477
|
+
$frames: true,
|
|
61478
|
+
$innerHeight: true,
|
|
61479
|
+
$innerWidth: true,
|
|
61480
|
+
$onmozfullscreenchange: true,
|
|
61481
|
+
$onmozfullscreenerror: true,
|
|
61482
|
+
$outerHeight: true,
|
|
61483
|
+
$outerWidth: true,
|
|
61484
|
+
$pageXOffset: true,
|
|
61485
|
+
$pageYOffset: true,
|
|
61486
|
+
$parent: true,
|
|
61487
|
+
$scrollLeft: true,
|
|
61488
|
+
$scrollTop: true,
|
|
61489
|
+
$scrollX: true,
|
|
61490
|
+
$scrollY: true,
|
|
61491
|
+
$self: true,
|
|
61492
|
+
$webkitIndexedDB: true,
|
|
61493
|
+
$webkitStorageInfo: true,
|
|
61494
|
+
$window: true
|
|
61495
|
+
};
|
|
61496
|
+
var hasAutomationEqualityBug = (function () {
|
|
61497
|
+
/* global window */
|
|
61498
|
+
if (typeof window === 'undefined') { return false; }
|
|
61499
|
+
for (var k in window) {
|
|
61500
|
+
try {
|
|
61501
|
+
if (!excludedKeys['$' + k] && has.call(window, k) && window[k] !== null && typeof window[k] === 'object') {
|
|
61502
|
+
try {
|
|
61503
|
+
equalsConstructorPrototype(window[k]);
|
|
61504
|
+
} catch (e) {
|
|
61505
|
+
return true;
|
|
61506
|
+
}
|
|
61507
|
+
}
|
|
61508
|
+
} catch (e) {
|
|
61509
|
+
return true;
|
|
61510
|
+
}
|
|
61511
|
+
}
|
|
61512
|
+
return false;
|
|
61513
|
+
}());
|
|
61514
|
+
var equalsConstructorPrototypeIfNotBuggy = function (o) {
|
|
61515
|
+
/* global window */
|
|
61516
|
+
if (typeof window === 'undefined' || !hasAutomationEqualityBug) {
|
|
61517
|
+
return equalsConstructorPrototype(o);
|
|
61518
|
+
}
|
|
61519
|
+
try {
|
|
61520
|
+
return equalsConstructorPrototype(o);
|
|
61521
|
+
} catch (e) {
|
|
61522
|
+
return false;
|
|
61523
|
+
}
|
|
61524
|
+
};
|
|
61525
|
+
|
|
61526
|
+
keysShim = function keys(object) {
|
|
61527
|
+
var isObject = object !== null && typeof object === 'object';
|
|
61528
|
+
var isFunction = toStr.call(object) === '[object Function]';
|
|
61529
|
+
var isArguments = isArgs(object);
|
|
61530
|
+
var isString = isObject && toStr.call(object) === '[object String]';
|
|
61531
|
+
var theKeys = [];
|
|
61532
|
+
|
|
61533
|
+
if (!isObject && !isFunction && !isArguments) {
|
|
61534
|
+
throw new TypeError('Object.keys called on a non-object');
|
|
61535
|
+
}
|
|
61536
|
+
|
|
61537
|
+
var skipProto = hasProtoEnumBug && isFunction;
|
|
61538
|
+
if (isString && object.length > 0 && !has.call(object, 0)) {
|
|
61539
|
+
for (var i = 0; i < object.length; ++i) {
|
|
61540
|
+
theKeys.push(String(i));
|
|
61541
|
+
}
|
|
61542
|
+
}
|
|
61543
|
+
|
|
61544
|
+
if (isArguments && object.length > 0) {
|
|
61545
|
+
for (var j = 0; j < object.length; ++j) {
|
|
61546
|
+
theKeys.push(String(j));
|
|
61547
|
+
}
|
|
61548
|
+
} else {
|
|
61549
|
+
for (var name in object) {
|
|
61550
|
+
if (!(skipProto && name === 'prototype') && has.call(object, name)) {
|
|
61551
|
+
theKeys.push(String(name));
|
|
61552
|
+
}
|
|
61553
|
+
}
|
|
61554
|
+
}
|
|
61555
|
+
|
|
61556
|
+
if (hasDontEnumBug) {
|
|
61557
|
+
var skipConstructor = equalsConstructorPrototypeIfNotBuggy(object);
|
|
61558
|
+
|
|
61559
|
+
for (var k = 0; k < dontEnums.length; ++k) {
|
|
61560
|
+
if (!(skipConstructor && dontEnums[k] === 'constructor') && has.call(object, dontEnums[k])) {
|
|
61561
|
+
theKeys.push(dontEnums[k]);
|
|
61562
|
+
}
|
|
61563
|
+
}
|
|
61564
|
+
}
|
|
61565
|
+
return theKeys;
|
|
61566
|
+
};
|
|
61567
|
+
}
|
|
61568
|
+
module.exports = keysShim;
|
|
61569
|
+
|
|
61570
|
+
},{"./isArguments":258}],257:[function(require,module,exports){
|
|
61571
|
+
'use strict';
|
|
61572
|
+
|
|
61573
|
+
var slice = Array.prototype.slice;
|
|
61574
|
+
var isArgs = require('./isArguments');
|
|
61575
|
+
|
|
61576
|
+
var origKeys = Object.keys;
|
|
61577
|
+
var keysShim = origKeys ? function keys(o) { return origKeys(o); } : require('./implementation');
|
|
61578
|
+
|
|
61579
|
+
var originalKeys = Object.keys;
|
|
61580
|
+
|
|
61581
|
+
keysShim.shim = function shimObjectKeys() {
|
|
61582
|
+
if (Object.keys) {
|
|
61583
|
+
var keysWorksWithArguments = (function () {
|
|
61584
|
+
// Safari 5.0 bug
|
|
61585
|
+
var args = Object.keys(arguments);
|
|
61586
|
+
return args && args.length === arguments.length;
|
|
61587
|
+
}(1, 2));
|
|
61588
|
+
if (!keysWorksWithArguments) {
|
|
61589
|
+
Object.keys = function keys(object) { // eslint-disable-line func-name-matching
|
|
61590
|
+
if (isArgs(object)) {
|
|
61591
|
+
return originalKeys(slice.call(object));
|
|
61592
|
+
}
|
|
61593
|
+
return originalKeys(object);
|
|
61594
|
+
};
|
|
61595
|
+
}
|
|
61596
|
+
} else {
|
|
61597
|
+
Object.keys = keysShim;
|
|
61598
|
+
}
|
|
61599
|
+
return Object.keys || keysShim;
|
|
61600
|
+
};
|
|
61601
|
+
|
|
61602
|
+
module.exports = keysShim;
|
|
61603
|
+
|
|
61604
|
+
},{"./implementation":256,"./isArguments":258}],258:[function(require,module,exports){
|
|
61605
|
+
'use strict';
|
|
61606
|
+
|
|
61607
|
+
var toStr = Object.prototype.toString;
|
|
61608
|
+
|
|
61609
|
+
module.exports = function isArguments(value) {
|
|
61610
|
+
var str = toStr.call(value);
|
|
61611
|
+
var isArgs = str === '[object Arguments]';
|
|
61612
|
+
if (!isArgs) {
|
|
61613
|
+
isArgs = str !== '[object Array]' &&
|
|
61614
|
+
value !== null &&
|
|
61615
|
+
typeof value === 'object' &&
|
|
61616
|
+
typeof value.length === 'number' &&
|
|
61617
|
+
value.length >= 0 &&
|
|
61618
|
+
toStr.call(value.callee) === '[object Function]';
|
|
61619
|
+
}
|
|
61620
|
+
return isArgs;
|
|
61621
|
+
};
|
|
61622
|
+
|
|
61623
|
+
},{}],259:[function(require,module,exports){
|
|
61624
|
+
(function (Buffer){(function (){
|
|
60276
61625
|
/*
|
|
60277
61626
|
* MIT LICENSE
|
|
60278
61627
|
* Copyright (c) 2011 Devon Govett
|
|
@@ -60676,9 +62025,9 @@ module.exports = class PNG {
|
|
|
60676
62025
|
}
|
|
60677
62026
|
};
|
|
60678
62027
|
|
|
60679
|
-
}).call(this,require("buffer").Buffer)
|
|
60680
|
-
},{"buffer":55,"fs":54,"zlib":42}],
|
|
60681
|
-
(function (process){
|
|
62028
|
+
}).call(this)}).call(this,require("buffer").Buffer)
|
|
62029
|
+
},{"buffer":55,"fs":54,"zlib":42}],260:[function(require,module,exports){
|
|
62030
|
+
(function (process){(function (){
|
|
60682
62031
|
'use strict';
|
|
60683
62032
|
|
|
60684
62033
|
if (!process.version ||
|
|
@@ -60724,8 +62073,8 @@ function nextTick(fn, arg1, arg2, arg3) {
|
|
|
60724
62073
|
}
|
|
60725
62074
|
|
|
60726
62075
|
|
|
60727
|
-
}).call(this,require('_process'))
|
|
60728
|
-
},{"_process":
|
|
62076
|
+
}).call(this)}).call(this,require('_process'))
|
|
62077
|
+
},{"_process":261}],261:[function(require,module,exports){
|
|
60729
62078
|
// shim for using process in browser
|
|
60730
62079
|
var process = module.exports = {};
|
|
60731
62080
|
|
|
@@ -60911,10 +62260,10 @@ process.chdir = function (dir) {
|
|
|
60911
62260
|
};
|
|
60912
62261
|
process.umask = function() { return 0; };
|
|
60913
62262
|
|
|
60914
|
-
},{}],
|
|
62263
|
+
},{}],262:[function(require,module,exports){
|
|
60915
62264
|
module.exports = require('./lib/_stream_duplex.js');
|
|
60916
62265
|
|
|
60917
|
-
},{"./lib/_stream_duplex.js":
|
|
62266
|
+
},{"./lib/_stream_duplex.js":263}],263:[function(require,module,exports){
|
|
60918
62267
|
// Copyright Joyent, Inc. and other Node contributors.
|
|
60919
62268
|
//
|
|
60920
62269
|
// Permission is hereby granted, free of charge, to any person obtaining a
|
|
@@ -61046,7 +62395,7 @@ Duplex.prototype._destroy = function (err, cb) {
|
|
|
61046
62395
|
|
|
61047
62396
|
pna.nextTick(cb, err);
|
|
61048
62397
|
};
|
|
61049
|
-
},{"./_stream_readable":
|
|
62398
|
+
},{"./_stream_readable":265,"./_stream_writable":267,"core-util-is":193,"inherits":240,"process-nextick-args":260}],264:[function(require,module,exports){
|
|
61050
62399
|
// Copyright Joyent, Inc. and other Node contributors.
|
|
61051
62400
|
//
|
|
61052
62401
|
// Permission is hereby granted, free of charge, to any person obtaining a
|
|
@@ -61094,8 +62443,8 @@ function PassThrough(options) {
|
|
|
61094
62443
|
PassThrough.prototype._transform = function (chunk, encoding, cb) {
|
|
61095
62444
|
cb(null, chunk);
|
|
61096
62445
|
};
|
|
61097
|
-
},{"./_stream_transform":
|
|
61098
|
-
(function (process,global){
|
|
62446
|
+
},{"./_stream_transform":266,"core-util-is":193,"inherits":240}],265:[function(require,module,exports){
|
|
62447
|
+
(function (process,global){(function (){
|
|
61099
62448
|
// Copyright Joyent, Inc. and other Node contributors.
|
|
61100
62449
|
//
|
|
61101
62450
|
// Permission is hereby granted, free of charge, to any person obtaining a
|
|
@@ -62115,8 +63464,8 @@ function indexOf(xs, x) {
|
|
|
62115
63464
|
}
|
|
62116
63465
|
return -1;
|
|
62117
63466
|
}
|
|
62118
|
-
}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
|
62119
|
-
},{"./_stream_duplex":
|
|
63467
|
+
}).call(this)}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
|
63468
|
+
},{"./_stream_duplex":263,"./internal/streams/BufferList":268,"./internal/streams/destroy":269,"./internal/streams/stream":270,"_process":261,"core-util-is":193,"events":231,"inherits":240,"isarray":245,"process-nextick-args":260,"safe-buffer":296,"string_decoder/":298,"util":40}],266:[function(require,module,exports){
|
|
62120
63469
|
// Copyright Joyent, Inc. and other Node contributors.
|
|
62121
63470
|
//
|
|
62122
63471
|
// Permission is hereby granted, free of charge, to any person obtaining a
|
|
@@ -62331,8 +63680,8 @@ function done(stream, er, data) {
|
|
|
62331
63680
|
|
|
62332
63681
|
return stream.push(null);
|
|
62333
63682
|
}
|
|
62334
|
-
},{"./_stream_duplex":
|
|
62335
|
-
(function (process,global,setImmediate){
|
|
63683
|
+
},{"./_stream_duplex":263,"core-util-is":193,"inherits":240}],267:[function(require,module,exports){
|
|
63684
|
+
(function (process,global,setImmediate){(function (){
|
|
62336
63685
|
// Copyright Joyent, Inc. and other Node contributors.
|
|
62337
63686
|
//
|
|
62338
63687
|
// Permission is hereby granted, free of charge, to any person obtaining a
|
|
@@ -63020,8 +64369,8 @@ Writable.prototype._destroy = function (err, cb) {
|
|
|
63020
64369
|
this.end();
|
|
63021
64370
|
cb(err);
|
|
63022
64371
|
};
|
|
63023
|
-
}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("timers").setImmediate)
|
|
63024
|
-
},{"./_stream_duplex":
|
|
64372
|
+
}).call(this)}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},require("timers").setImmediate)
|
|
64373
|
+
},{"./_stream_duplex":263,"./internal/streams/destroy":269,"./internal/streams/stream":270,"_process":261,"core-util-is":193,"inherits":240,"process-nextick-args":260,"safe-buffer":296,"timers":299,"util-deprecate":305}],268:[function(require,module,exports){
|
|
63025
64374
|
'use strict';
|
|
63026
64375
|
|
|
63027
64376
|
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
|
@@ -63101,7 +64450,7 @@ if (util && util.inspect && util.inspect.custom) {
|
|
|
63101
64450
|
return this.constructor.name + ' ' + obj;
|
|
63102
64451
|
};
|
|
63103
64452
|
}
|
|
63104
|
-
},{"safe-buffer":
|
|
64453
|
+
},{"safe-buffer":296,"util":40}],269:[function(require,module,exports){
|
|
63105
64454
|
'use strict';
|
|
63106
64455
|
|
|
63107
64456
|
/*<replacement>*/
|
|
@@ -63176,13 +64525,13 @@ module.exports = {
|
|
|
63176
64525
|
destroy: destroy,
|
|
63177
64526
|
undestroy: undestroy
|
|
63178
64527
|
};
|
|
63179
|
-
},{"process-nextick-args":
|
|
64528
|
+
},{"process-nextick-args":260}],270:[function(require,module,exports){
|
|
63180
64529
|
module.exports = require('events').EventEmitter;
|
|
63181
64530
|
|
|
63182
|
-
},{"events":
|
|
64531
|
+
},{"events":231}],271:[function(require,module,exports){
|
|
63183
64532
|
module.exports = require('./readable').PassThrough
|
|
63184
64533
|
|
|
63185
|
-
},{"./readable":
|
|
64534
|
+
},{"./readable":272}],272:[function(require,module,exports){
|
|
63186
64535
|
exports = module.exports = require('./lib/_stream_readable.js');
|
|
63187
64536
|
exports.Stream = exports;
|
|
63188
64537
|
exports.Readable = exports;
|
|
@@ -63191,13 +64540,115 @@ exports.Duplex = require('./lib/_stream_duplex.js');
|
|
|
63191
64540
|
exports.Transform = require('./lib/_stream_transform.js');
|
|
63192
64541
|
exports.PassThrough = require('./lib/_stream_passthrough.js');
|
|
63193
64542
|
|
|
63194
|
-
},{"./lib/_stream_duplex.js":
|
|
64543
|
+
},{"./lib/_stream_duplex.js":263,"./lib/_stream_passthrough.js":264,"./lib/_stream_readable.js":265,"./lib/_stream_transform.js":266,"./lib/_stream_writable.js":267}],273:[function(require,module,exports){
|
|
63195
64544
|
module.exports = require('./readable').Transform
|
|
63196
64545
|
|
|
63197
|
-
},{"./readable":
|
|
64546
|
+
},{"./readable":272}],274:[function(require,module,exports){
|
|
63198
64547
|
module.exports = require('./lib/_stream_writable.js');
|
|
63199
64548
|
|
|
63200
|
-
},{"./lib/_stream_writable.js":
|
|
64549
|
+
},{"./lib/_stream_writable.js":267}],275:[function(require,module,exports){
|
|
64550
|
+
'use strict';
|
|
64551
|
+
|
|
64552
|
+
var $Object = Object;
|
|
64553
|
+
var $TypeError = TypeError;
|
|
64554
|
+
|
|
64555
|
+
module.exports = function flags() {
|
|
64556
|
+
if (this != null && this !== $Object(this)) {
|
|
64557
|
+
throw new $TypeError('RegExp.prototype.flags getter called on non-object');
|
|
64558
|
+
}
|
|
64559
|
+
var result = '';
|
|
64560
|
+
if (this.global) {
|
|
64561
|
+
result += 'g';
|
|
64562
|
+
}
|
|
64563
|
+
if (this.ignoreCase) {
|
|
64564
|
+
result += 'i';
|
|
64565
|
+
}
|
|
64566
|
+
if (this.multiline) {
|
|
64567
|
+
result += 'm';
|
|
64568
|
+
}
|
|
64569
|
+
if (this.dotAll) {
|
|
64570
|
+
result += 's';
|
|
64571
|
+
}
|
|
64572
|
+
if (this.unicode) {
|
|
64573
|
+
result += 'u';
|
|
64574
|
+
}
|
|
64575
|
+
if (this.sticky) {
|
|
64576
|
+
result += 'y';
|
|
64577
|
+
}
|
|
64578
|
+
return result;
|
|
64579
|
+
};
|
|
64580
|
+
|
|
64581
|
+
},{}],276:[function(require,module,exports){
|
|
64582
|
+
'use strict';
|
|
64583
|
+
|
|
64584
|
+
var define = require('define-properties');
|
|
64585
|
+
var callBind = require('call-bind');
|
|
64586
|
+
|
|
64587
|
+
var implementation = require('./implementation');
|
|
64588
|
+
var getPolyfill = require('./polyfill');
|
|
64589
|
+
var shim = require('./shim');
|
|
64590
|
+
|
|
64591
|
+
var flagsBound = callBind(implementation);
|
|
64592
|
+
|
|
64593
|
+
define(flagsBound, {
|
|
64594
|
+
getPolyfill: getPolyfill,
|
|
64595
|
+
implementation: implementation,
|
|
64596
|
+
shim: shim
|
|
64597
|
+
});
|
|
64598
|
+
|
|
64599
|
+
module.exports = flagsBound;
|
|
64600
|
+
|
|
64601
|
+
},{"./implementation":275,"./polyfill":277,"./shim":278,"call-bind":58,"define-properties":229}],277:[function(require,module,exports){
|
|
64602
|
+
'use strict';
|
|
64603
|
+
|
|
64604
|
+
var implementation = require('./implementation');
|
|
64605
|
+
|
|
64606
|
+
var supportsDescriptors = require('define-properties').supportsDescriptors;
|
|
64607
|
+
var $gOPD = Object.getOwnPropertyDescriptor;
|
|
64608
|
+
var $TypeError = TypeError;
|
|
64609
|
+
|
|
64610
|
+
module.exports = function getPolyfill() {
|
|
64611
|
+
if (!supportsDescriptors) {
|
|
64612
|
+
throw new $TypeError('RegExp.prototype.flags requires a true ES5 environment that supports property descriptors');
|
|
64613
|
+
}
|
|
64614
|
+
if ((/a/mig).flags === 'gim') {
|
|
64615
|
+
var descriptor = $gOPD(RegExp.prototype, 'flags');
|
|
64616
|
+
if (descriptor && typeof descriptor.get === 'function' && typeof (/a/).dotAll === 'boolean') {
|
|
64617
|
+
return descriptor.get;
|
|
64618
|
+
}
|
|
64619
|
+
}
|
|
64620
|
+
return implementation;
|
|
64621
|
+
};
|
|
64622
|
+
|
|
64623
|
+
},{"./implementation":275,"define-properties":229}],278:[function(require,module,exports){
|
|
64624
|
+
'use strict';
|
|
64625
|
+
|
|
64626
|
+
var supportsDescriptors = require('define-properties').supportsDescriptors;
|
|
64627
|
+
var getPolyfill = require('./polyfill');
|
|
64628
|
+
var gOPD = Object.getOwnPropertyDescriptor;
|
|
64629
|
+
var defineProperty = Object.defineProperty;
|
|
64630
|
+
var TypeErr = TypeError;
|
|
64631
|
+
var getProto = Object.getPrototypeOf;
|
|
64632
|
+
var regex = /a/;
|
|
64633
|
+
|
|
64634
|
+
module.exports = function shimFlags() {
|
|
64635
|
+
if (!supportsDescriptors || !getProto) {
|
|
64636
|
+
throw new TypeErr('RegExp.prototype.flags requires a true ES5 environment that supports property descriptors');
|
|
64637
|
+
}
|
|
64638
|
+
var polyfill = getPolyfill();
|
|
64639
|
+
var proto = getProto(regex);
|
|
64640
|
+
var descriptor = gOPD(proto, 'flags');
|
|
64641
|
+
if (!descriptor || descriptor.get !== polyfill) {
|
|
64642
|
+
defineProperty(proto, 'flags', {
|
|
64643
|
+
configurable: true,
|
|
64644
|
+
enumerable: false,
|
|
64645
|
+
get: polyfill
|
|
64646
|
+
});
|
|
64647
|
+
}
|
|
64648
|
+
return polyfill;
|
|
64649
|
+
};
|
|
64650
|
+
|
|
64651
|
+
},{"./polyfill":277,"define-properties":229}],279:[function(require,module,exports){
|
|
63201
64652
|
(function () {
|
|
63202
64653
|
var key, val, _ref, _ref1;
|
|
63203
64654
|
exports.EncodeStream = require('./src/EncodeStream');
|
|
@@ -63224,7 +64675,7 @@ module.exports = require('./lib/_stream_writable.js');
|
|
|
63224
64675
|
exports[key] = val;
|
|
63225
64676
|
}
|
|
63226
64677
|
}.call(this));
|
|
63227
|
-
},{"./src/Array":
|
|
64678
|
+
},{"./src/Array":280,"./src/Bitfield":281,"./src/Boolean":282,"./src/Buffer":283,"./src/DecodeStream":284,"./src/EncodeStream":285,"./src/Enum":286,"./src/LazyArray":287,"./src/Number":288,"./src/Optional":289,"./src/Pointer":290,"./src/Reserved":291,"./src/String":292,"./src/Struct":293,"./src/VersionedStruct":294}],280:[function(require,module,exports){
|
|
63228
64679
|
(function () {
|
|
63229
64680
|
var ArrayT, NumberT, utils;
|
|
63230
64681
|
NumberT = require('./Number').Number;
|
|
@@ -63311,7 +64762,7 @@ module.exports = require('./lib/_stream_writable.js');
|
|
|
63311
64762
|
}();
|
|
63312
64763
|
module.exports = ArrayT;
|
|
63313
64764
|
}.call(this));
|
|
63314
|
-
},{"./Number":
|
|
64765
|
+
},{"./Number":288,"./utils":295}],281:[function(require,module,exports){
|
|
63315
64766
|
(function () {
|
|
63316
64767
|
var Bitfield;
|
|
63317
64768
|
Bitfield = function () {
|
|
@@ -63353,7 +64804,7 @@ module.exports = require('./lib/_stream_writable.js');
|
|
|
63353
64804
|
}();
|
|
63354
64805
|
module.exports = Bitfield;
|
|
63355
64806
|
}.call(this));
|
|
63356
|
-
},{}],
|
|
64807
|
+
},{}],282:[function(require,module,exports){
|
|
63357
64808
|
(function () {
|
|
63358
64809
|
var BooleanT;
|
|
63359
64810
|
BooleanT = function () {
|
|
@@ -63373,7 +64824,7 @@ module.exports = require('./lib/_stream_writable.js');
|
|
|
63373
64824
|
}();
|
|
63374
64825
|
module.exports = BooleanT;
|
|
63375
64826
|
}.call(this));
|
|
63376
|
-
},{}],
|
|
64827
|
+
},{}],283:[function(require,module,exports){
|
|
63377
64828
|
(function () {
|
|
63378
64829
|
var BufferT, NumberT, utils;
|
|
63379
64830
|
utils = require('./utils');
|
|
@@ -63403,8 +64854,8 @@ module.exports = require('./lib/_stream_writable.js');
|
|
|
63403
64854
|
}();
|
|
63404
64855
|
module.exports = BufferT;
|
|
63405
64856
|
}.call(this));
|
|
63406
|
-
},{"./Number":
|
|
63407
|
-
(function (Buffer){
|
|
64857
|
+
},{"./Number":288,"./utils":295}],284:[function(require,module,exports){
|
|
64858
|
+
(function (Buffer){(function (){
|
|
63408
64859
|
(function () {
|
|
63409
64860
|
var DecodeStream, iconv;
|
|
63410
64861
|
try {
|
|
@@ -63493,9 +64944,9 @@ module.exports = require('./lib/_stream_writable.js');
|
|
|
63493
64944
|
}();
|
|
63494
64945
|
module.exports = DecodeStream;
|
|
63495
64946
|
}.call(this));
|
|
63496
|
-
}).call(this,require("buffer").Buffer)
|
|
63497
|
-
},{"buffer":55,"iconv-lite":54}],
|
|
63498
|
-
(function (Buffer){
|
|
64947
|
+
}).call(this)}).call(this,require("buffer").Buffer)
|
|
64948
|
+
},{"buffer":55,"iconv-lite":54}],285:[function(require,module,exports){
|
|
64949
|
+
(function (Buffer){(function (){
|
|
63499
64950
|
(function () {
|
|
63500
64951
|
var DecodeStream, EncodeStream, iconv, stream, __hasProp = {}.hasOwnProperty, __extends = function (child, parent) {
|
|
63501
64952
|
for (var key in parent) {
|
|
@@ -63636,8 +65087,8 @@ module.exports = require('./lib/_stream_writable.js');
|
|
|
63636
65087
|
}(stream.Readable);
|
|
63637
65088
|
module.exports = EncodeStream;
|
|
63638
65089
|
}.call(this));
|
|
63639
|
-
}).call(this,require("buffer").Buffer)
|
|
63640
|
-
},{"./DecodeStream":
|
|
65090
|
+
}).call(this)}).call(this,require("buffer").Buffer)
|
|
65091
|
+
},{"./DecodeStream":284,"buffer":55,"iconv-lite":54,"stream":297}],286:[function(require,module,exports){
|
|
63641
65092
|
(function () {
|
|
63642
65093
|
var Enum;
|
|
63643
65094
|
Enum = function () {
|
|
@@ -63665,7 +65116,7 @@ module.exports = require('./lib/_stream_writable.js');
|
|
|
63665
65116
|
}();
|
|
63666
65117
|
module.exports = Enum;
|
|
63667
65118
|
}.call(this));
|
|
63668
|
-
},{}],
|
|
65119
|
+
},{}],287:[function(require,module,exports){
|
|
63669
65120
|
(function () {
|
|
63670
65121
|
var ArrayT, LazyArray, LazyArrayT, NumberT, inspect, utils, __hasProp = {}.hasOwnProperty, __extends = function (child, parent) {
|
|
63671
65122
|
for (var key in parent) {
|
|
@@ -63756,7 +65207,7 @@ module.exports = require('./lib/_stream_writable.js');
|
|
|
63756
65207
|
}();
|
|
63757
65208
|
module.exports = LazyArrayT;
|
|
63758
65209
|
}.call(this));
|
|
63759
|
-
},{"./Array":
|
|
65210
|
+
},{"./Array":280,"./Number":288,"./utils":295,"util":307}],288:[function(require,module,exports){
|
|
63760
65211
|
(function () {
|
|
63761
65212
|
var DecodeStream, Fixed, NumberT, __hasProp = {}.hasOwnProperty, __extends = function (child, parent) {
|
|
63762
65213
|
for (var key in parent) {
|
|
@@ -63834,7 +65285,7 @@ module.exports = require('./lib/_stream_writable.js');
|
|
|
63834
65285
|
exports.fixed32be = exports.fixed32 = new Fixed(32, 'BE');
|
|
63835
65286
|
exports.fixed32le = new Fixed(32, 'LE');
|
|
63836
65287
|
}.call(this));
|
|
63837
|
-
},{"./DecodeStream":
|
|
65288
|
+
},{"./DecodeStream":284}],289:[function(require,module,exports){
|
|
63838
65289
|
(function () {
|
|
63839
65290
|
var Optional;
|
|
63840
65291
|
Optional = function () {
|
|
@@ -63878,7 +65329,7 @@ module.exports = require('./lib/_stream_writable.js');
|
|
|
63878
65329
|
}();
|
|
63879
65330
|
module.exports = Optional;
|
|
63880
65331
|
}.call(this));
|
|
63881
|
-
},{}],
|
|
65332
|
+
},{}],290:[function(require,module,exports){
|
|
63882
65333
|
(function () {
|
|
63883
65334
|
var Pointer, VoidPointer, utils;
|
|
63884
65335
|
utils = require('./utils');
|
|
@@ -64039,7 +65490,7 @@ module.exports = require('./lib/_stream_writable.js');
|
|
|
64039
65490
|
exports.Pointer = Pointer;
|
|
64040
65491
|
exports.VoidPointer = VoidPointer;
|
|
64041
65492
|
}.call(this));
|
|
64042
|
-
},{"./utils":
|
|
65493
|
+
},{"./utils":295}],291:[function(require,module,exports){
|
|
64043
65494
|
(function () {
|
|
64044
65495
|
var Reserved, utils;
|
|
64045
65496
|
utils = require('./utils');
|
|
@@ -64064,8 +65515,8 @@ module.exports = require('./lib/_stream_writable.js');
|
|
|
64064
65515
|
}();
|
|
64065
65516
|
module.exports = Reserved;
|
|
64066
65517
|
}.call(this));
|
|
64067
|
-
},{"./utils":
|
|
64068
|
-
(function (Buffer){
|
|
65518
|
+
},{"./utils":295}],292:[function(require,module,exports){
|
|
65519
|
+
(function (Buffer){(function (){
|
|
64069
65520
|
(function () {
|
|
64070
65521
|
var NumberT, StringT, utils;
|
|
64071
65522
|
NumberT = require('./Number').Number;
|
|
@@ -64137,8 +65588,8 @@ module.exports = require('./lib/_stream_writable.js');
|
|
|
64137
65588
|
}();
|
|
64138
65589
|
module.exports = StringT;
|
|
64139
65590
|
}.call(this));
|
|
64140
|
-
}).call(this,require("buffer").Buffer)
|
|
64141
|
-
},{"./Number":
|
|
65591
|
+
}).call(this)}).call(this,require("buffer").Buffer)
|
|
65592
|
+
},{"./Number":288,"./utils":295,"buffer":55}],293:[function(require,module,exports){
|
|
64142
65593
|
(function () {
|
|
64143
65594
|
var Struct, utils;
|
|
64144
65595
|
utils = require('./utils');
|
|
@@ -64247,7 +65698,7 @@ module.exports = require('./lib/_stream_writable.js');
|
|
|
64247
65698
|
}();
|
|
64248
65699
|
module.exports = Struct;
|
|
64249
65700
|
}.call(this));
|
|
64250
|
-
},{"./utils":
|
|
65701
|
+
},{"./utils":295}],294:[function(require,module,exports){
|
|
64251
65702
|
(function () {
|
|
64252
65703
|
var Struct, VersionedStruct, __hasProp = {}.hasOwnProperty, __extends = function (child, parent) {
|
|
64253
65704
|
for (var key in parent) {
|
|
@@ -64383,7 +65834,7 @@ module.exports = require('./lib/_stream_writable.js');
|
|
|
64383
65834
|
}(Struct);
|
|
64384
65835
|
module.exports = VersionedStruct;
|
|
64385
65836
|
}.call(this));
|
|
64386
|
-
},{"./Struct":
|
|
65837
|
+
},{"./Struct":293}],295:[function(require,module,exports){
|
|
64387
65838
|
(function () {
|
|
64388
65839
|
var NumberT, PropertyDescriptor;
|
|
64389
65840
|
NumberT = require('./Number').Number;
|
|
@@ -64420,7 +65871,7 @@ module.exports = require('./lib/_stream_writable.js');
|
|
|
64420
65871
|
}();
|
|
64421
65872
|
exports.PropertyDescriptor = PropertyDescriptor;
|
|
64422
65873
|
}.call(this));
|
|
64423
|
-
},{"./Number":
|
|
65874
|
+
},{"./Number":288}],296:[function(require,module,exports){
|
|
64424
65875
|
/* eslint-disable node/no-deprecated-api */
|
|
64425
65876
|
var buffer = require('buffer')
|
|
64426
65877
|
var Buffer = buffer.Buffer
|
|
@@ -64484,7 +65935,7 @@ SafeBuffer.allocUnsafeSlow = function (size) {
|
|
|
64484
65935
|
return buffer.SlowBuffer(size)
|
|
64485
65936
|
}
|
|
64486
65937
|
|
|
64487
|
-
},{"buffer":55}],
|
|
65938
|
+
},{"buffer":55}],297:[function(require,module,exports){
|
|
64488
65939
|
// Copyright Joyent, Inc. and other Node contributors.
|
|
64489
65940
|
//
|
|
64490
65941
|
// Permission is hereby granted, free of charge, to any person obtaining a
|
|
@@ -64613,7 +66064,7 @@ Stream.prototype.pipe = function(dest, options) {
|
|
|
64613
66064
|
return dest;
|
|
64614
66065
|
};
|
|
64615
66066
|
|
|
64616
|
-
},{"events":
|
|
66067
|
+
},{"events":231,"inherits":240,"readable-stream/duplex.js":262,"readable-stream/passthrough.js":271,"readable-stream/readable.js":272,"readable-stream/transform.js":273,"readable-stream/writable.js":274}],298:[function(require,module,exports){
|
|
64617
66068
|
// Copyright Joyent, Inc. and other Node contributors.
|
|
64618
66069
|
//
|
|
64619
66070
|
// Permission is hereby granted, free of charge, to any person obtaining a
|
|
@@ -64910,8 +66361,8 @@ function simpleWrite(buf) {
|
|
|
64910
66361
|
function simpleEnd(buf) {
|
|
64911
66362
|
return buf && buf.length ? this.write(buf) : '';
|
|
64912
66363
|
}
|
|
64913
|
-
},{"safe-buffer":
|
|
64914
|
-
(function (setImmediate,clearImmediate){
|
|
66364
|
+
},{"safe-buffer":296}],299:[function(require,module,exports){
|
|
66365
|
+
(function (setImmediate,clearImmediate){(function (){
|
|
64915
66366
|
var nextTick = require('process/browser.js').nextTick;
|
|
64916
66367
|
var apply = Function.prototype.apply;
|
|
64917
66368
|
var slice = Array.prototype.slice;
|
|
@@ -64988,8 +66439,8 @@ exports.setImmediate = typeof setImmediate === "function" ? setImmediate : funct
|
|
|
64988
66439
|
exports.clearImmediate = typeof clearImmediate === "function" ? clearImmediate : function(id) {
|
|
64989
66440
|
delete immediateIds[id];
|
|
64990
66441
|
};
|
|
64991
|
-
}).call(this,require("timers").setImmediate,require("timers").clearImmediate)
|
|
64992
|
-
},{"process/browser.js":
|
|
66442
|
+
}).call(this)}).call(this,require("timers").setImmediate,require("timers").clearImmediate)
|
|
66443
|
+
},{"process/browser.js":261,"timers":299}],300:[function(require,module,exports){
|
|
64993
66444
|
var TINF_OK = 0;
|
|
64994
66445
|
var TINF_DATA_ERROR = -3;
|
|
64995
66446
|
|
|
@@ -65366,159 +66817,7 @@ length_base[28] = 258;
|
|
|
65366
66817
|
|
|
65367
66818
|
module.exports = tinf_uncompress;
|
|
65368
66819
|
|
|
65369
|
-
},{}],
|
|
65370
|
-
'use strict'
|
|
65371
|
-
|
|
65372
|
-
exports.byteLength = byteLength
|
|
65373
|
-
exports.toByteArray = toByteArray
|
|
65374
|
-
exports.fromByteArray = fromByteArray
|
|
65375
|
-
|
|
65376
|
-
var lookup = []
|
|
65377
|
-
var revLookup = []
|
|
65378
|
-
var Arr = typeof Uint8Array !== 'undefined' ? Uint8Array : Array
|
|
65379
|
-
|
|
65380
|
-
var code = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/'
|
|
65381
|
-
for (var i = 0, len = code.length; i < len; ++i) {
|
|
65382
|
-
lookup[i] = code[i]
|
|
65383
|
-
revLookup[code.charCodeAt(i)] = i
|
|
65384
|
-
}
|
|
65385
|
-
|
|
65386
|
-
// Support decoding URL-safe base64 strings, as Node.js does.
|
|
65387
|
-
// See: https://en.wikipedia.org/wiki/Base64#URL_applications
|
|
65388
|
-
revLookup['-'.charCodeAt(0)] = 62
|
|
65389
|
-
revLookup['_'.charCodeAt(0)] = 63
|
|
65390
|
-
|
|
65391
|
-
function getLens (b64) {
|
|
65392
|
-
var len = b64.length
|
|
65393
|
-
|
|
65394
|
-
if (len % 4 > 0) {
|
|
65395
|
-
throw new Error('Invalid string. Length must be a multiple of 4')
|
|
65396
|
-
}
|
|
65397
|
-
|
|
65398
|
-
// Trim off extra bytes after placeholder bytes are found
|
|
65399
|
-
// See: https://github.com/beatgammit/base64-js/issues/42
|
|
65400
|
-
var validLen = b64.indexOf('=')
|
|
65401
|
-
if (validLen === -1) validLen = len
|
|
65402
|
-
|
|
65403
|
-
var placeHoldersLen = validLen === len
|
|
65404
|
-
? 0
|
|
65405
|
-
: 4 - (validLen % 4)
|
|
65406
|
-
|
|
65407
|
-
return [validLen, placeHoldersLen]
|
|
65408
|
-
}
|
|
65409
|
-
|
|
65410
|
-
// base64 is 4/3 + up to two characters of the original data
|
|
65411
|
-
function byteLength (b64) {
|
|
65412
|
-
var lens = getLens(b64)
|
|
65413
|
-
var validLen = lens[0]
|
|
65414
|
-
var placeHoldersLen = lens[1]
|
|
65415
|
-
return ((validLen + placeHoldersLen) * 3 / 4) - placeHoldersLen
|
|
65416
|
-
}
|
|
65417
|
-
|
|
65418
|
-
function _byteLength (b64, validLen, placeHoldersLen) {
|
|
65419
|
-
return ((validLen + placeHoldersLen) * 3 / 4) - placeHoldersLen
|
|
65420
|
-
}
|
|
65421
|
-
|
|
65422
|
-
function toByteArray (b64) {
|
|
65423
|
-
var tmp
|
|
65424
|
-
var lens = getLens(b64)
|
|
65425
|
-
var validLen = lens[0]
|
|
65426
|
-
var placeHoldersLen = lens[1]
|
|
65427
|
-
|
|
65428
|
-
var arr = new Arr(_byteLength(b64, validLen, placeHoldersLen))
|
|
65429
|
-
|
|
65430
|
-
var curByte = 0
|
|
65431
|
-
|
|
65432
|
-
// if there are placeholders, only get up to the last complete 4 chars
|
|
65433
|
-
var len = placeHoldersLen > 0
|
|
65434
|
-
? validLen - 4
|
|
65435
|
-
: validLen
|
|
65436
|
-
|
|
65437
|
-
var i
|
|
65438
|
-
for (i = 0; i < len; i += 4) {
|
|
65439
|
-
tmp =
|
|
65440
|
-
(revLookup[b64.charCodeAt(i)] << 18) |
|
|
65441
|
-
(revLookup[b64.charCodeAt(i + 1)] << 12) |
|
|
65442
|
-
(revLookup[b64.charCodeAt(i + 2)] << 6) |
|
|
65443
|
-
revLookup[b64.charCodeAt(i + 3)]
|
|
65444
|
-
arr[curByte++] = (tmp >> 16) & 0xFF
|
|
65445
|
-
arr[curByte++] = (tmp >> 8) & 0xFF
|
|
65446
|
-
arr[curByte++] = tmp & 0xFF
|
|
65447
|
-
}
|
|
65448
|
-
|
|
65449
|
-
if (placeHoldersLen === 2) {
|
|
65450
|
-
tmp =
|
|
65451
|
-
(revLookup[b64.charCodeAt(i)] << 2) |
|
|
65452
|
-
(revLookup[b64.charCodeAt(i + 1)] >> 4)
|
|
65453
|
-
arr[curByte++] = tmp & 0xFF
|
|
65454
|
-
}
|
|
65455
|
-
|
|
65456
|
-
if (placeHoldersLen === 1) {
|
|
65457
|
-
tmp =
|
|
65458
|
-
(revLookup[b64.charCodeAt(i)] << 10) |
|
|
65459
|
-
(revLookup[b64.charCodeAt(i + 1)] << 4) |
|
|
65460
|
-
(revLookup[b64.charCodeAt(i + 2)] >> 2)
|
|
65461
|
-
arr[curByte++] = (tmp >> 8) & 0xFF
|
|
65462
|
-
arr[curByte++] = tmp & 0xFF
|
|
65463
|
-
}
|
|
65464
|
-
|
|
65465
|
-
return arr
|
|
65466
|
-
}
|
|
65467
|
-
|
|
65468
|
-
function tripletToBase64 (num) {
|
|
65469
|
-
return lookup[num >> 18 & 0x3F] +
|
|
65470
|
-
lookup[num >> 12 & 0x3F] +
|
|
65471
|
-
lookup[num >> 6 & 0x3F] +
|
|
65472
|
-
lookup[num & 0x3F]
|
|
65473
|
-
}
|
|
65474
|
-
|
|
65475
|
-
function encodeChunk (uint8, start, end) {
|
|
65476
|
-
var tmp
|
|
65477
|
-
var output = []
|
|
65478
|
-
for (var i = start; i < end; i += 3) {
|
|
65479
|
-
tmp =
|
|
65480
|
-
((uint8[i] << 16) & 0xFF0000) +
|
|
65481
|
-
((uint8[i + 1] << 8) & 0xFF00) +
|
|
65482
|
-
(uint8[i + 2] & 0xFF)
|
|
65483
|
-
output.push(tripletToBase64(tmp))
|
|
65484
|
-
}
|
|
65485
|
-
return output.join('')
|
|
65486
|
-
}
|
|
65487
|
-
|
|
65488
|
-
function fromByteArray (uint8) {
|
|
65489
|
-
var tmp
|
|
65490
|
-
var len = uint8.length
|
|
65491
|
-
var extraBytes = len % 3 // if we have 1 byte left, pad 2 bytes
|
|
65492
|
-
var parts = []
|
|
65493
|
-
var maxChunkLength = 16383 // must be multiple of 3
|
|
65494
|
-
|
|
65495
|
-
// go through the array every three bytes, we'll deal with trailing stuff later
|
|
65496
|
-
for (var i = 0, len2 = len - extraBytes; i < len2; i += maxChunkLength) {
|
|
65497
|
-
parts.push(encodeChunk(uint8, i, (i + maxChunkLength) > len2 ? len2 : (i + maxChunkLength)))
|
|
65498
|
-
}
|
|
65499
|
-
|
|
65500
|
-
// pad the end with zeros, but make sure to not forget the extra bytes
|
|
65501
|
-
if (extraBytes === 1) {
|
|
65502
|
-
tmp = uint8[len - 1]
|
|
65503
|
-
parts.push(
|
|
65504
|
-
lookup[tmp >> 2] +
|
|
65505
|
-
lookup[(tmp << 4) & 0x3F] +
|
|
65506
|
-
'=='
|
|
65507
|
-
)
|
|
65508
|
-
} else if (extraBytes === 2) {
|
|
65509
|
-
tmp = (uint8[len - 2] << 8) + uint8[len - 1]
|
|
65510
|
-
parts.push(
|
|
65511
|
-
lookup[tmp >> 10] +
|
|
65512
|
-
lookup[(tmp >> 4) & 0x3F] +
|
|
65513
|
-
lookup[(tmp << 2) & 0x3F] +
|
|
65514
|
-
'='
|
|
65515
|
-
)
|
|
65516
|
-
}
|
|
65517
|
-
|
|
65518
|
-
return parts.join('')
|
|
65519
|
-
}
|
|
65520
|
-
|
|
65521
|
-
},{}],279:[function(require,module,exports){
|
|
66820
|
+
},{}],301:[function(require,module,exports){
|
|
65522
66821
|
const inflate = require('tiny-inflate');
|
|
65523
66822
|
const { swap32LE } = require('./swap');
|
|
65524
66823
|
|
|
@@ -65655,7 +66954,7 @@ class UnicodeTrie {
|
|
|
65655
66954
|
}
|
|
65656
66955
|
|
|
65657
66956
|
module.exports = UnicodeTrie;
|
|
65658
|
-
},{"./swap":
|
|
66957
|
+
},{"./swap":302,"tiny-inflate":300}],302:[function(require,module,exports){
|
|
65659
66958
|
const isBigEndian = (new Uint8Array(new Uint32Array([0x12345678]).buffer)[0] === 0x12);
|
|
65660
66959
|
|
|
65661
66960
|
const swap = (b, n, m) => {
|
|
@@ -65682,7 +66981,7 @@ module.exports = {
|
|
|
65682
66981
|
swap32LE: swap32LE
|
|
65683
66982
|
};
|
|
65684
66983
|
|
|
65685
|
-
},{}],
|
|
66984
|
+
},{}],303:[function(require,module,exports){
|
|
65686
66985
|
'use strict';
|
|
65687
66986
|
|
|
65688
66987
|
var UnicodeTrie = require('unicode-trie');
|
|
@@ -65829,7 +67128,7 @@ var unicodeProperties = buildUnicodeProperties(data, trie);
|
|
|
65829
67128
|
module.exports = unicodeProperties;
|
|
65830
67129
|
|
|
65831
67130
|
|
|
65832
|
-
},{"base64-js":
|
|
67131
|
+
},{"base64-js":28,"unicode-trie":301}],304:[function(require,module,exports){
|
|
65833
67132
|
// Generated by CoffeeScript 1.7.1
|
|
65834
67133
|
var UnicodeTrie, inflate;
|
|
65835
67134
|
|
|
@@ -65922,8 +67221,8 @@ UnicodeTrie = (function() {
|
|
|
65922
67221
|
|
|
65923
67222
|
module.exports = UnicodeTrie;
|
|
65924
67223
|
|
|
65925
|
-
},{"tiny-inflate":
|
|
65926
|
-
(function (global){
|
|
67224
|
+
},{"tiny-inflate":300}],305:[function(require,module,exports){
|
|
67225
|
+
(function (global){(function (){
|
|
65927
67226
|
|
|
65928
67227
|
/**
|
|
65929
67228
|
* Module exports.
|
|
@@ -65992,10 +67291,10 @@ function config (name) {
|
|
|
65992
67291
|
return String(val).toLowerCase() === 'true';
|
|
65993
67292
|
}
|
|
65994
67293
|
|
|
65995
|
-
}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
|
65996
|
-
},{}],
|
|
67294
|
+
}).call(this)}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
|
67295
|
+
},{}],306:[function(require,module,exports){
|
|
65997
67296
|
arguments[4][4][0].apply(exports,arguments)
|
|
65998
|
-
},{"dup":4}],
|
|
67297
|
+
},{"dup":4}],307:[function(require,module,exports){
|
|
65999
67298
|
arguments[4][5][0].apply(exports,arguments)
|
|
66000
|
-
},{"./support/isBuffer":
|
|
67299
|
+
},{"./support/isBuffer":306,"_process":261,"dup":5,"inherits":240}]},{},[1])(1)
|
|
66001
67300
|
});
|