@@ -116,15 +116,15 @@ __webpack_require__.r(__webpack_exports__);
116
116
/* harmony import */ var _lib_ReactFC__WEBPACK_IMPORTED_MODULE_2___default = /*#__PURE__*/ __webpack_require__ . n ( _lib_ReactFC__WEBPACK_IMPORTED_MODULE_2__ ) ;
117
117
function _extends ( ) { _extends = Object . assign || function ( target ) { for ( var i = 1 ; i < arguments . length ; i ++ ) { var source = arguments [ i ] ; for ( var key in source ) { if ( Object . prototype . hasOwnProperty . call ( source , key ) ) { target [ key ] = source [ key ] ; } } } return target ; } ; return _extends . apply ( this , arguments ) ; }
118
118
119
- function _typeof ( obj ) { if ( typeof Symbol === "function" && typeof Symbol . iterator === "symbol" ) { _typeof = function _typeof ( obj ) { return typeof obj ; } ; } else { _typeof = function _typeof ( obj ) { return obj && typeof Symbol === "function" && obj . constructor === Symbol && obj !== Symbol . prototype ? "symbol" : typeof obj ; } ; } return _typeof ( obj ) ; }
119
+ function _typeof ( obj ) { "@babel/helpers - typeof" ; if ( typeof Symbol === "function" && typeof Symbol . iterator === "symbol" ) { _typeof = function _typeof ( obj ) { return typeof obj ; } ; } else { _typeof = function _typeof ( obj ) { return obj && typeof Symbol === "function" && obj . constructor === Symbol && obj !== Symbol . prototype ? "symbol" : typeof obj ; } ; } return _typeof ( obj ) ; }
120
120
121
121
function _defineProperty ( obj , key , value ) { if ( key in obj ) { Object . defineProperty ( obj , key , { value : value , enumerable : true , configurable : true , writable : true } ) ; } else { obj [ key ] = value ; } return obj ; }
122
122
123
123
function _slicedToArray ( arr , i ) { return _arrayWithHoles ( arr ) || _iterableToArrayLimit ( arr , i ) || _nonIterableRest ( ) ; }
124
124
125
125
function _nonIterableRest ( ) { throw new TypeError ( "Invalid attempt to destructure non-iterable instance" ) ; }
126
126
127
- function _iterableToArrayLimit ( arr , i ) { var _arr = [ ] ; var _n = true ; var _d = false ; var _e = undefined ; try { for ( var _i = arr [ Symbol . iterator ] ( ) , _s ; ! ( _n = ( _s = _i . next ( ) ) . done ) ; _n = true ) { _arr . push ( _s . value ) ; if ( i && _arr . length === i ) break ; } } catch ( err ) { _d = true ; _e = err ; } finally { try { if ( ! _n && _i [ "return" ] != null ) _i [ "return" ] ( ) ; } finally { if ( _d ) throw _e ; } } return _arr ; }
127
+ function _iterableToArrayLimit ( arr , i ) { if ( ! ( Symbol . iterator in Object ( arr ) || Object . prototype . toString . call ( arr ) === "[object Arguments]" ) ) { return ; } var _arr = [ ] ; var _n = true ; var _d = false ; var _e = undefined ; try { for ( var _i = arr [ Symbol . iterator ] ( ) , _s ; ! ( _n = ( _s = _i . next ( ) ) . done ) ; _n = true ) { _arr . push ( _s . value ) ; if ( i && _arr . length === i ) break ; } } catch ( err ) { _d = true ; _e = err ; } finally { try { if ( ! _n && _i [ "return" ] != null ) _i [ "return" ] ( ) ; } finally { if ( _d ) throw _e ; } } return _arr ; }
128
128
129
129
function _arrayWithHoles ( arr ) { if ( Array . isArray ( arr ) ) return arr ; }
130
130
@@ -1495,8 +1495,6 @@ module.exports = checkPropTypes;
1495
1495
"use strict" ;
1496
1496
1497
1497
1498
- function _typeof2 ( obj ) { if ( typeof Symbol === "function" && typeof Symbol . iterator === "symbol" ) { _typeof2 = function _typeof2 ( obj ) { return typeof obj ; } ; } else { _typeof2 = function _typeof2 ( obj ) { return obj && typeof Symbol === "function" && obj . constructor === Symbol && obj !== Symbol . prototype ? "symbol" : typeof obj ; } ; } return _typeof2 ( obj ) ; }
1499
-
1500
1498
Object . defineProperty ( exports , "__esModule" , {
1501
1499
value : true
1502
1500
} ) ;
@@ -1510,29 +1508,56 @@ var utils = _interopRequireWildcard(__webpack_require__(14));
1510
1508
1511
1509
var _options = _interopRequireDefault ( __webpack_require__ ( 15 ) ) ;
1512
1510
1511
+ function _getRequireWildcardCache ( ) {
1512
+ if ( typeof WeakMap !== "function" ) return null ;
1513
+ var cache = new WeakMap ( ) ;
1514
+
1515
+ _getRequireWildcardCache = function _getRequireWildcardCache ( ) {
1516
+ return cache ;
1517
+ } ;
1518
+
1519
+ return cache ;
1520
+ }
1521
+
1513
1522
function _interopRequireWildcard ( obj ) {
1514
1523
if ( obj && obj . __esModule ) {
1515
1524
return obj ;
1516
- } else {
1517
- var newObj = { } ;
1525
+ }
1518
1526
1519
- if ( obj != null ) {
1520
- for ( var key in obj ) {
1521
- if ( Object . prototype . hasOwnProperty . call ( obj , key ) ) {
1522
- var desc = Object . defineProperty && Object . getOwnPropertyDescriptor ? Object . getOwnPropertyDescriptor ( obj , key ) : { } ;
1527
+ if ( obj === null || _typeof ( obj ) !== "object" && typeof obj !== "function" ) {
1528
+ return {
1529
+ "default" : obj
1530
+ } ;
1531
+ }
1523
1532
1524
- if ( desc . get || desc . set ) {
1525
- Object . defineProperty ( newObj , key , desc ) ;
1526
- } else {
1527
- newObj [ key ] = obj [ key ] ;
1528
- }
1529
- }
1533
+ var cache = _getRequireWildcardCache ( ) ;
1534
+
1535
+ if ( cache && cache . has ( obj ) ) {
1536
+ return cache . get ( obj ) ;
1537
+ }
1538
+
1539
+ var newObj = { } ;
1540
+ var hasPropertyDescriptor = Object . defineProperty && Object . getOwnPropertyDescriptor ;
1541
+
1542
+ for ( var key in obj ) {
1543
+ if ( Object . prototype . hasOwnProperty . call ( obj , key ) ) {
1544
+ var desc = hasPropertyDescriptor ? Object . getOwnPropertyDescriptor ( obj , key ) : null ;
1545
+
1546
+ if ( desc && ( desc . get || desc . set ) ) {
1547
+ Object . defineProperty ( newObj , key , desc ) ;
1548
+ } else {
1549
+ newObj [ key ] = obj [ key ] ;
1530
1550
}
1531
1551
}
1552
+ }
1553
+
1554
+ newObj [ "default" ] = obj ;
1532
1555
1533
- newObj [ "default" ] = obj ;
1534
- return newObj ;
1556
+ if ( cache ) {
1557
+ cache . set ( obj , newObj ) ;
1535
1558
}
1559
+
1560
+ return newObj ;
1536
1561
}
1537
1562
1538
1563
function _interopRequireDefault ( obj ) {
@@ -1542,13 +1567,15 @@ function _interopRequireDefault(obj) {
1542
1567
}
1543
1568
1544
1569
function _typeof ( obj ) {
1545
- if ( typeof Symbol === "function" && _typeof2 ( Symbol . iterator ) === "symbol" ) {
1570
+ "@babel/helpers - typeof" ;
1571
+
1572
+ if ( typeof Symbol === "function" && typeof Symbol . iterator === "symbol" ) {
1546
1573
_typeof = function _typeof ( obj ) {
1547
- return _typeof2 ( obj ) ;
1574
+ return typeof obj ;
1548
1575
} ;
1549
1576
} else {
1550
1577
_typeof = function _typeof ( obj ) {
1551
- return obj && typeof Symbol === "function" && obj . constructor === Symbol && obj !== Symbol . prototype ? "symbol" : _typeof2 ( obj ) ;
1578
+ return obj && typeof Symbol === "function" && obj . constructor === Symbol && obj !== Symbol . prototype ? "symbol" : typeof obj ;
1552
1579
} ;
1553
1580
}
1554
1581
@@ -2047,14 +2074,16 @@ function bytesToUuid(buf, offset) {
2047
2074
var i = offset || 0 ;
2048
2075
var bth = byteToHex ;
2049
2076
// join used to fix memory issue caused by concatenation: https://bugs.chromium.org/p/v8/issues/detail?id=3175#c4
2050
- return ( [ bth [ buf [ i ++ ] ] , bth [ buf [ i ++ ] ] ,
2051
- bth [ buf [ i ++ ] ] , bth [ buf [ i ++ ] ] , '-' ,
2052
- bth [ buf [ i ++ ] ] , bth [ buf [ i ++ ] ] , '-' ,
2053
- bth [ buf [ i ++ ] ] , bth [ buf [ i ++ ] ] , '-' ,
2054
- bth [ buf [ i ++ ] ] , bth [ buf [ i ++ ] ] , '-' ,
2055
- bth [ buf [ i ++ ] ] , bth [ buf [ i ++ ] ] ,
2056
- bth [ buf [ i ++ ] ] , bth [ buf [ i ++ ] ] ,
2057
- bth [ buf [ i ++ ] ] , bth [ buf [ i ++ ] ] ] ) . join ( '' ) ;
2077
+ return ( [
2078
+ bth [ buf [ i ++ ] ] , bth [ buf [ i ++ ] ] ,
2079
+ bth [ buf [ i ++ ] ] , bth [ buf [ i ++ ] ] , '-' ,
2080
+ bth [ buf [ i ++ ] ] , bth [ buf [ i ++ ] ] , '-' ,
2081
+ bth [ buf [ i ++ ] ] , bth [ buf [ i ++ ] ] , '-' ,
2082
+ bth [ buf [ i ++ ] ] , bth [ buf [ i ++ ] ] , '-' ,
2083
+ bth [ buf [ i ++ ] ] , bth [ buf [ i ++ ] ] ,
2084
+ bth [ buf [ i ++ ] ] , bth [ buf [ i ++ ] ] ,
2085
+ bth [ buf [ i ++ ] ] , bth [ buf [ i ++ ] ]
2086
+ ] ) . join ( '' ) ;
2058
2087
}
2059
2088
2060
2089
module . exports = bytesToUuid ;
@@ -2067,8 +2096,6 @@ module.exports = bytesToUuid;
2067
2096
"use strict" ;
2068
2097
2069
2098
2070
- function _typeof2 ( obj ) { if ( typeof Symbol === "function" && typeof Symbol . iterator === "symbol" ) { _typeof2 = function _typeof2 ( obj ) { return typeof obj ; } ; } else { _typeof2 = function _typeof2 ( obj ) { return obj && typeof Symbol === "function" && obj . constructor === Symbol && obj !== Symbol . prototype ? "symbol" : typeof obj ; } ; } return _typeof2 ( obj ) ; }
2071
-
2072
2099
Object . defineProperty ( exports , "__esModule" , {
2073
2100
value : true
2074
2101
} ) ;
@@ -2081,13 +2108,15 @@ exports.checkIfDataTableExists = checkIfDataTableExists;
2081
2108
exports . cloneDataSource = cloneDataSource ;
2082
2109
2083
2110
function _typeof ( obj ) {
2084
- if ( typeof Symbol === "function" && _typeof2 ( Symbol . iterator ) === "symbol" ) {
2111
+ "@babel/helpers - typeof" ;
2112
+
2113
+ if ( typeof Symbol === "function" && typeof Symbol . iterator === "symbol" ) {
2085
2114
_typeof = function _typeof ( obj ) {
2086
- return _typeof2 ( obj ) ;
2115
+ return typeof obj ;
2087
2116
} ;
2088
2117
} else {
2089
2118
_typeof = function _typeof ( obj ) {
2090
- return obj && typeof Symbol === "function" && obj . constructor === Symbol && obj !== Symbol . prototype ? "symbol" : _typeof2 ( obj ) ;
2119
+ return obj && typeof Symbol === "function" && obj . constructor === Symbol && obj !== Symbol . prototype ? "symbol" : typeof obj ;
2091
2120
} ;
2092
2121
}
2093
2122
0 commit comments