easy-layout 5.1.8 → 5.1.11
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/example.js +1821 -1743
- package/lib/div/column.js +7 -7
- package/lib/div/columns.js +7 -7
- package/lib/div/row.js +7 -7
- package/lib/div/rows.js +7 -7
- package/lib/div/sizeable.js +7 -7
- package/lib/div/splitter/horizontal.js +4 -4
- package/lib/div/splitter/vertical.js +4 -4
- package/lib/div/splitter.js +7 -7
- package/lib/example/div/row/blue.js +4 -4
- package/lib/example/div/row/yellow.js +4 -4
- package/lib/example/div/sizeable/bottom.js +4 -4
- package/lib/example/div/sizeable/left.js +4 -4
- package/lib/example/div/sizeable/right.js +4 -4
- package/lib/example/div/splitter/horizontal/main.js +4 -4
- package/lib/example/div/splitter/vertical/left.js +4 -4
- package/lib/example/div/splitter/vertical/right.js +4 -4
- package/lib/section/sizeable.js +7 -7
- package/package.json +3 -3
package/lib/div/column.js
CHANGED
|
@@ -27,7 +27,7 @@ function isNativeReflectConstruct() {
|
|
|
27
27
|
return false;
|
|
28
28
|
}
|
|
29
29
|
}
|
|
30
|
-
function _construct(
|
|
30
|
+
function _construct(Parent, args, Class) {
|
|
31
31
|
if (isNativeReflectConstruct()) {
|
|
32
32
|
_construct = Reflect.construct;
|
|
33
33
|
} else {
|
|
@@ -57,11 +57,11 @@ function _defineProperty(obj, key, value) {
|
|
|
57
57
|
}
|
|
58
58
|
return obj;
|
|
59
59
|
}
|
|
60
|
-
function _getPrototypeOf(
|
|
60
|
+
function _getPrototypeOf(o) {
|
|
61
61
|
_getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) {
|
|
62
62
|
return o.__proto__ || Object.getPrototypeOf(o);
|
|
63
63
|
};
|
|
64
|
-
return _getPrototypeOf(
|
|
64
|
+
return _getPrototypeOf(o);
|
|
65
65
|
}
|
|
66
66
|
function _inherits(subClass, superClass) {
|
|
67
67
|
if (typeof superClass !== "function" && superClass !== null) {
|
|
@@ -90,12 +90,12 @@ function _possibleConstructorReturn(self, call) {
|
|
|
90
90
|
}
|
|
91
91
|
return _assertThisInitialized(self);
|
|
92
92
|
}
|
|
93
|
-
function _setPrototypeOf(
|
|
93
|
+
function _setPrototypeOf(o, p) {
|
|
94
94
|
_setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) {
|
|
95
95
|
o.__proto__ = p;
|
|
96
96
|
return o;
|
|
97
97
|
};
|
|
98
|
-
return _setPrototypeOf(
|
|
98
|
+
return _setPrototypeOf(o, p);
|
|
99
99
|
}
|
|
100
100
|
function _taggedTemplateLiteral(strings, raw) {
|
|
101
101
|
if (!raw) {
|
|
@@ -111,7 +111,7 @@ var _typeof = function(obj) {
|
|
|
111
111
|
"@swc/helpers - typeof";
|
|
112
112
|
return obj && typeof Symbol !== "undefined" && obj.constructor === Symbol ? "symbol" : typeof obj;
|
|
113
113
|
};
|
|
114
|
-
function _wrapNativeSuper(
|
|
114
|
+
function _wrapNativeSuper(Class) {
|
|
115
115
|
var _cache = typeof Map === "function" ? new Map() : undefined;
|
|
116
116
|
_wrapNativeSuper = function _wrapNativeSuper(Class) {
|
|
117
117
|
if (Class === null || !_isNativeFunction(Class)) return Class;
|
|
@@ -135,7 +135,7 @@ function _wrapNativeSuper(Class2) {
|
|
|
135
135
|
});
|
|
136
136
|
return _setPrototypeOf(Wrapper, Class);
|
|
137
137
|
};
|
|
138
|
-
return _wrapNativeSuper(
|
|
138
|
+
return _wrapNativeSuper(Class);
|
|
139
139
|
}
|
|
140
140
|
function _isNativeReflectConstruct() {
|
|
141
141
|
if (typeof Reflect === "undefined" || !Reflect.construct) return false;
|
package/lib/div/columns.js
CHANGED
|
@@ -27,7 +27,7 @@ function isNativeReflectConstruct() {
|
|
|
27
27
|
return false;
|
|
28
28
|
}
|
|
29
29
|
}
|
|
30
|
-
function _construct(
|
|
30
|
+
function _construct(Parent, args, Class) {
|
|
31
31
|
if (isNativeReflectConstruct()) {
|
|
32
32
|
_construct = Reflect.construct;
|
|
33
33
|
} else {
|
|
@@ -57,11 +57,11 @@ function _defineProperty(obj, key, value) {
|
|
|
57
57
|
}
|
|
58
58
|
return obj;
|
|
59
59
|
}
|
|
60
|
-
function _getPrototypeOf(
|
|
60
|
+
function _getPrototypeOf(o) {
|
|
61
61
|
_getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) {
|
|
62
62
|
return o.__proto__ || Object.getPrototypeOf(o);
|
|
63
63
|
};
|
|
64
|
-
return _getPrototypeOf(
|
|
64
|
+
return _getPrototypeOf(o);
|
|
65
65
|
}
|
|
66
66
|
function _inherits(subClass, superClass) {
|
|
67
67
|
if (typeof superClass !== "function" && superClass !== null) {
|
|
@@ -90,12 +90,12 @@ function _possibleConstructorReturn(self, call) {
|
|
|
90
90
|
}
|
|
91
91
|
return _assertThisInitialized(self);
|
|
92
92
|
}
|
|
93
|
-
function _setPrototypeOf(
|
|
93
|
+
function _setPrototypeOf(o, p) {
|
|
94
94
|
_setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) {
|
|
95
95
|
o.__proto__ = p;
|
|
96
96
|
return o;
|
|
97
97
|
};
|
|
98
|
-
return _setPrototypeOf(
|
|
98
|
+
return _setPrototypeOf(o, p);
|
|
99
99
|
}
|
|
100
100
|
function _taggedTemplateLiteral(strings, raw) {
|
|
101
101
|
if (!raw) {
|
|
@@ -111,7 +111,7 @@ var _typeof = function(obj) {
|
|
|
111
111
|
"@swc/helpers - typeof";
|
|
112
112
|
return obj && typeof Symbol !== "undefined" && obj.constructor === Symbol ? "symbol" : typeof obj;
|
|
113
113
|
};
|
|
114
|
-
function _wrapNativeSuper(
|
|
114
|
+
function _wrapNativeSuper(Class) {
|
|
115
115
|
var _cache = typeof Map === "function" ? new Map() : undefined;
|
|
116
116
|
_wrapNativeSuper = function _wrapNativeSuper(Class) {
|
|
117
117
|
if (Class === null || !_isNativeFunction(Class)) return Class;
|
|
@@ -135,7 +135,7 @@ function _wrapNativeSuper(Class2) {
|
|
|
135
135
|
});
|
|
136
136
|
return _setPrototypeOf(Wrapper, Class);
|
|
137
137
|
};
|
|
138
|
-
return _wrapNativeSuper(
|
|
138
|
+
return _wrapNativeSuper(Class);
|
|
139
139
|
}
|
|
140
140
|
function _isNativeReflectConstruct() {
|
|
141
141
|
if (typeof Reflect === "undefined" || !Reflect.construct) return false;
|
package/lib/div/row.js
CHANGED
|
@@ -27,7 +27,7 @@ function isNativeReflectConstruct() {
|
|
|
27
27
|
return false;
|
|
28
28
|
}
|
|
29
29
|
}
|
|
30
|
-
function _construct(
|
|
30
|
+
function _construct(Parent, args, Class) {
|
|
31
31
|
if (isNativeReflectConstruct()) {
|
|
32
32
|
_construct = Reflect.construct;
|
|
33
33
|
} else {
|
|
@@ -57,11 +57,11 @@ function _defineProperty(obj, key, value) {
|
|
|
57
57
|
}
|
|
58
58
|
return obj;
|
|
59
59
|
}
|
|
60
|
-
function _getPrototypeOf(
|
|
60
|
+
function _getPrototypeOf(o) {
|
|
61
61
|
_getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) {
|
|
62
62
|
return o.__proto__ || Object.getPrototypeOf(o);
|
|
63
63
|
};
|
|
64
|
-
return _getPrototypeOf(
|
|
64
|
+
return _getPrototypeOf(o);
|
|
65
65
|
}
|
|
66
66
|
function _inherits(subClass, superClass) {
|
|
67
67
|
if (typeof superClass !== "function" && superClass !== null) {
|
|
@@ -90,12 +90,12 @@ function _possibleConstructorReturn(self, call) {
|
|
|
90
90
|
}
|
|
91
91
|
return _assertThisInitialized(self);
|
|
92
92
|
}
|
|
93
|
-
function _setPrototypeOf(
|
|
93
|
+
function _setPrototypeOf(o, p) {
|
|
94
94
|
_setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) {
|
|
95
95
|
o.__proto__ = p;
|
|
96
96
|
return o;
|
|
97
97
|
};
|
|
98
|
-
return _setPrototypeOf(
|
|
98
|
+
return _setPrototypeOf(o, p);
|
|
99
99
|
}
|
|
100
100
|
function _taggedTemplateLiteral(strings, raw) {
|
|
101
101
|
if (!raw) {
|
|
@@ -111,7 +111,7 @@ var _typeof = function(obj) {
|
|
|
111
111
|
"@swc/helpers - typeof";
|
|
112
112
|
return obj && typeof Symbol !== "undefined" && obj.constructor === Symbol ? "symbol" : typeof obj;
|
|
113
113
|
};
|
|
114
|
-
function _wrapNativeSuper(
|
|
114
|
+
function _wrapNativeSuper(Class) {
|
|
115
115
|
var _cache = typeof Map === "function" ? new Map() : undefined;
|
|
116
116
|
_wrapNativeSuper = function _wrapNativeSuper(Class) {
|
|
117
117
|
if (Class === null || !_isNativeFunction(Class)) return Class;
|
|
@@ -135,7 +135,7 @@ function _wrapNativeSuper(Class2) {
|
|
|
135
135
|
});
|
|
136
136
|
return _setPrototypeOf(Wrapper, Class);
|
|
137
137
|
};
|
|
138
|
-
return _wrapNativeSuper(
|
|
138
|
+
return _wrapNativeSuper(Class);
|
|
139
139
|
}
|
|
140
140
|
function _isNativeReflectConstruct() {
|
|
141
141
|
if (typeof Reflect === "undefined" || !Reflect.construct) return false;
|
package/lib/div/rows.js
CHANGED
|
@@ -27,7 +27,7 @@ function isNativeReflectConstruct() {
|
|
|
27
27
|
return false;
|
|
28
28
|
}
|
|
29
29
|
}
|
|
30
|
-
function _construct(
|
|
30
|
+
function _construct(Parent, args, Class) {
|
|
31
31
|
if (isNativeReflectConstruct()) {
|
|
32
32
|
_construct = Reflect.construct;
|
|
33
33
|
} else {
|
|
@@ -57,11 +57,11 @@ function _defineProperty(obj, key, value) {
|
|
|
57
57
|
}
|
|
58
58
|
return obj;
|
|
59
59
|
}
|
|
60
|
-
function _getPrototypeOf(
|
|
60
|
+
function _getPrototypeOf(o) {
|
|
61
61
|
_getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) {
|
|
62
62
|
return o.__proto__ || Object.getPrototypeOf(o);
|
|
63
63
|
};
|
|
64
|
-
return _getPrototypeOf(
|
|
64
|
+
return _getPrototypeOf(o);
|
|
65
65
|
}
|
|
66
66
|
function _inherits(subClass, superClass) {
|
|
67
67
|
if (typeof superClass !== "function" && superClass !== null) {
|
|
@@ -90,12 +90,12 @@ function _possibleConstructorReturn(self, call) {
|
|
|
90
90
|
}
|
|
91
91
|
return _assertThisInitialized(self);
|
|
92
92
|
}
|
|
93
|
-
function _setPrototypeOf(
|
|
93
|
+
function _setPrototypeOf(o, p) {
|
|
94
94
|
_setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) {
|
|
95
95
|
o.__proto__ = p;
|
|
96
96
|
return o;
|
|
97
97
|
};
|
|
98
|
-
return _setPrototypeOf(
|
|
98
|
+
return _setPrototypeOf(o, p);
|
|
99
99
|
}
|
|
100
100
|
function _taggedTemplateLiteral(strings, raw) {
|
|
101
101
|
if (!raw) {
|
|
@@ -111,7 +111,7 @@ var _typeof = function(obj) {
|
|
|
111
111
|
"@swc/helpers - typeof";
|
|
112
112
|
return obj && typeof Symbol !== "undefined" && obj.constructor === Symbol ? "symbol" : typeof obj;
|
|
113
113
|
};
|
|
114
|
-
function _wrapNativeSuper(
|
|
114
|
+
function _wrapNativeSuper(Class) {
|
|
115
115
|
var _cache = typeof Map === "function" ? new Map() : undefined;
|
|
116
116
|
_wrapNativeSuper = function _wrapNativeSuper(Class) {
|
|
117
117
|
if (Class === null || !_isNativeFunction(Class)) return Class;
|
|
@@ -135,7 +135,7 @@ function _wrapNativeSuper(Class2) {
|
|
|
135
135
|
});
|
|
136
136
|
return _setPrototypeOf(Wrapper, Class);
|
|
137
137
|
};
|
|
138
|
-
return _wrapNativeSuper(
|
|
138
|
+
return _wrapNativeSuper(Class);
|
|
139
139
|
}
|
|
140
140
|
function _isNativeReflectConstruct() {
|
|
141
141
|
if (typeof Reflect === "undefined" || !Reflect.construct) return false;
|
package/lib/div/sizeable.js
CHANGED
|
@@ -27,7 +27,7 @@ function isNativeReflectConstruct() {
|
|
|
27
27
|
return false;
|
|
28
28
|
}
|
|
29
29
|
}
|
|
30
|
-
function _construct(
|
|
30
|
+
function _construct(Parent, args, Class) {
|
|
31
31
|
if (isNativeReflectConstruct()) {
|
|
32
32
|
_construct = Reflect.construct;
|
|
33
33
|
} else {
|
|
@@ -57,11 +57,11 @@ function _defineProperty(obj, key, value) {
|
|
|
57
57
|
}
|
|
58
58
|
return obj;
|
|
59
59
|
}
|
|
60
|
-
function _getPrototypeOf(
|
|
60
|
+
function _getPrototypeOf(o) {
|
|
61
61
|
_getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) {
|
|
62
62
|
return o.__proto__ || Object.getPrototypeOf(o);
|
|
63
63
|
};
|
|
64
|
-
return _getPrototypeOf(
|
|
64
|
+
return _getPrototypeOf(o);
|
|
65
65
|
}
|
|
66
66
|
function _inherits(subClass, superClass) {
|
|
67
67
|
if (typeof superClass !== "function" && superClass !== null) {
|
|
@@ -90,12 +90,12 @@ function _possibleConstructorReturn(self, call) {
|
|
|
90
90
|
}
|
|
91
91
|
return _assertThisInitialized(self);
|
|
92
92
|
}
|
|
93
|
-
function _setPrototypeOf(
|
|
93
|
+
function _setPrototypeOf(o, p) {
|
|
94
94
|
_setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) {
|
|
95
95
|
o.__proto__ = p;
|
|
96
96
|
return o;
|
|
97
97
|
};
|
|
98
|
-
return _setPrototypeOf(
|
|
98
|
+
return _setPrototypeOf(o, p);
|
|
99
99
|
}
|
|
100
100
|
function _taggedTemplateLiteral(strings, raw) {
|
|
101
101
|
if (!raw) {
|
|
@@ -111,7 +111,7 @@ var _typeof = function(obj) {
|
|
|
111
111
|
"@swc/helpers - typeof";
|
|
112
112
|
return obj && typeof Symbol !== "undefined" && obj.constructor === Symbol ? "symbol" : typeof obj;
|
|
113
113
|
};
|
|
114
|
-
function _wrapNativeSuper(
|
|
114
|
+
function _wrapNativeSuper(Class) {
|
|
115
115
|
var _cache = typeof Map === "function" ? new Map() : undefined;
|
|
116
116
|
_wrapNativeSuper = function _wrapNativeSuper(Class) {
|
|
117
117
|
if (Class === null || !_isNativeFunction(Class)) return Class;
|
|
@@ -135,7 +135,7 @@ function _wrapNativeSuper(Class2) {
|
|
|
135
135
|
});
|
|
136
136
|
return _setPrototypeOf(Wrapper, Class);
|
|
137
137
|
};
|
|
138
|
-
return _wrapNativeSuper(
|
|
138
|
+
return _wrapNativeSuper(Class);
|
|
139
139
|
}
|
|
140
140
|
function _isNativeReflectConstruct() {
|
|
141
141
|
if (typeof Reflect === "undefined" || !Reflect.construct) return false;
|
|
@@ -44,11 +44,11 @@ function _defineProperty(obj, key, value) {
|
|
|
44
44
|
}
|
|
45
45
|
return obj;
|
|
46
46
|
}
|
|
47
|
-
function _getPrototypeOf(
|
|
47
|
+
function _getPrototypeOf(o) {
|
|
48
48
|
_getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) {
|
|
49
49
|
return o.__proto__ || Object.getPrototypeOf(o);
|
|
50
50
|
};
|
|
51
|
-
return _getPrototypeOf(
|
|
51
|
+
return _getPrototypeOf(o);
|
|
52
52
|
}
|
|
53
53
|
function _inherits(subClass, superClass) {
|
|
54
54
|
if (typeof superClass !== "function" && superClass !== null) {
|
|
@@ -74,12 +74,12 @@ function _possibleConstructorReturn(self, call) {
|
|
|
74
74
|
}
|
|
75
75
|
return _assertThisInitialized(self);
|
|
76
76
|
}
|
|
77
|
-
function _setPrototypeOf(
|
|
77
|
+
function _setPrototypeOf(o, p) {
|
|
78
78
|
_setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) {
|
|
79
79
|
o.__proto__ = p;
|
|
80
80
|
return o;
|
|
81
81
|
};
|
|
82
|
-
return _setPrototypeOf(
|
|
82
|
+
return _setPrototypeOf(o, p);
|
|
83
83
|
}
|
|
84
84
|
function _taggedTemplateLiteral(strings, raw) {
|
|
85
85
|
if (!raw) {
|
|
@@ -44,11 +44,11 @@ function _defineProperty(obj, key, value) {
|
|
|
44
44
|
}
|
|
45
45
|
return obj;
|
|
46
46
|
}
|
|
47
|
-
function _getPrototypeOf(
|
|
47
|
+
function _getPrototypeOf(o) {
|
|
48
48
|
_getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) {
|
|
49
49
|
return o.__proto__ || Object.getPrototypeOf(o);
|
|
50
50
|
};
|
|
51
|
-
return _getPrototypeOf(
|
|
51
|
+
return _getPrototypeOf(o);
|
|
52
52
|
}
|
|
53
53
|
function _inherits(subClass, superClass) {
|
|
54
54
|
if (typeof superClass !== "function" && superClass !== null) {
|
|
@@ -74,12 +74,12 @@ function _possibleConstructorReturn(self, call) {
|
|
|
74
74
|
}
|
|
75
75
|
return _assertThisInitialized(self);
|
|
76
76
|
}
|
|
77
|
-
function _setPrototypeOf(
|
|
77
|
+
function _setPrototypeOf(o, p) {
|
|
78
78
|
_setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) {
|
|
79
79
|
o.__proto__ = p;
|
|
80
80
|
return o;
|
|
81
81
|
};
|
|
82
|
-
return _setPrototypeOf(
|
|
82
|
+
return _setPrototypeOf(o, p);
|
|
83
83
|
}
|
|
84
84
|
function _taggedTemplateLiteral(strings, raw) {
|
|
85
85
|
if (!raw) {
|
package/lib/div/splitter.js
CHANGED
|
@@ -31,7 +31,7 @@ function isNativeReflectConstruct() {
|
|
|
31
31
|
return false;
|
|
32
32
|
}
|
|
33
33
|
}
|
|
34
|
-
function _construct(
|
|
34
|
+
function _construct(Parent, args, Class) {
|
|
35
35
|
if (isNativeReflectConstruct()) {
|
|
36
36
|
_construct = Reflect.construct;
|
|
37
37
|
} else {
|
|
@@ -75,11 +75,11 @@ function _defineProperty(obj, key, value) {
|
|
|
75
75
|
}
|
|
76
76
|
return obj;
|
|
77
77
|
}
|
|
78
|
-
function _getPrototypeOf(
|
|
78
|
+
function _getPrototypeOf(o) {
|
|
79
79
|
_getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) {
|
|
80
80
|
return o.__proto__ || Object.getPrototypeOf(o);
|
|
81
81
|
};
|
|
82
|
-
return _getPrototypeOf(
|
|
82
|
+
return _getPrototypeOf(o);
|
|
83
83
|
}
|
|
84
84
|
function _inherits(subClass, superClass) {
|
|
85
85
|
if (typeof superClass !== "function" && superClass !== null) {
|
|
@@ -115,12 +115,12 @@ function _possibleConstructorReturn(self, call) {
|
|
|
115
115
|
}
|
|
116
116
|
return _assertThisInitialized(self);
|
|
117
117
|
}
|
|
118
|
-
function _setPrototypeOf(
|
|
118
|
+
function _setPrototypeOf(o, p) {
|
|
119
119
|
_setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) {
|
|
120
120
|
o.__proto__ = p;
|
|
121
121
|
return o;
|
|
122
122
|
};
|
|
123
|
-
return _setPrototypeOf(
|
|
123
|
+
return _setPrototypeOf(o, p);
|
|
124
124
|
}
|
|
125
125
|
function _taggedTemplateLiteral(strings, raw) {
|
|
126
126
|
if (!raw) {
|
|
@@ -136,7 +136,7 @@ var _typeof = function(obj) {
|
|
|
136
136
|
"@swc/helpers - typeof";
|
|
137
137
|
return obj && typeof Symbol !== "undefined" && obj.constructor === Symbol ? "symbol" : typeof obj;
|
|
138
138
|
};
|
|
139
|
-
function _wrapNativeSuper(
|
|
139
|
+
function _wrapNativeSuper(Class) {
|
|
140
140
|
var _cache = typeof Map === "function" ? new Map() : undefined;
|
|
141
141
|
_wrapNativeSuper = function _wrapNativeSuper(Class) {
|
|
142
142
|
if (Class === null || !_isNativeFunction(Class)) return Class;
|
|
@@ -160,7 +160,7 @@ function _wrapNativeSuper(Class2) {
|
|
|
160
160
|
});
|
|
161
161
|
return _setPrototypeOf(Wrapper, Class);
|
|
162
162
|
};
|
|
163
|
-
return _wrapNativeSuper(
|
|
163
|
+
return _wrapNativeSuper(Class);
|
|
164
164
|
}
|
|
165
165
|
function _isNativeReflectConstruct() {
|
|
166
166
|
if (typeof Reflect === "undefined" || !Reflect.construct) return false;
|
|
@@ -29,11 +29,11 @@ function _defineProperty(obj, key, value) {
|
|
|
29
29
|
}
|
|
30
30
|
return obj;
|
|
31
31
|
}
|
|
32
|
-
function _getPrototypeOf(
|
|
32
|
+
function _getPrototypeOf(o) {
|
|
33
33
|
_getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) {
|
|
34
34
|
return o.__proto__ || Object.getPrototypeOf(o);
|
|
35
35
|
};
|
|
36
|
-
return _getPrototypeOf(
|
|
36
|
+
return _getPrototypeOf(o);
|
|
37
37
|
}
|
|
38
38
|
function _inherits(subClass, superClass) {
|
|
39
39
|
if (typeof superClass !== "function" && superClass !== null) {
|
|
@@ -59,12 +59,12 @@ function _possibleConstructorReturn(self, call) {
|
|
|
59
59
|
}
|
|
60
60
|
return _assertThisInitialized(self);
|
|
61
61
|
}
|
|
62
|
-
function _setPrototypeOf(
|
|
62
|
+
function _setPrototypeOf(o, p) {
|
|
63
63
|
_setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) {
|
|
64
64
|
o.__proto__ = p;
|
|
65
65
|
return o;
|
|
66
66
|
};
|
|
67
|
-
return _setPrototypeOf(
|
|
67
|
+
return _setPrototypeOf(o, p);
|
|
68
68
|
}
|
|
69
69
|
function _taggedTemplateLiteral(strings, raw) {
|
|
70
70
|
if (!raw) {
|
|
@@ -29,11 +29,11 @@ function _defineProperty(obj, key, value) {
|
|
|
29
29
|
}
|
|
30
30
|
return obj;
|
|
31
31
|
}
|
|
32
|
-
function _getPrototypeOf(
|
|
32
|
+
function _getPrototypeOf(o) {
|
|
33
33
|
_getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) {
|
|
34
34
|
return o.__proto__ || Object.getPrototypeOf(o);
|
|
35
35
|
};
|
|
36
|
-
return _getPrototypeOf(
|
|
36
|
+
return _getPrototypeOf(o);
|
|
37
37
|
}
|
|
38
38
|
function _inherits(subClass, superClass) {
|
|
39
39
|
if (typeof superClass !== "function" && superClass !== null) {
|
|
@@ -59,12 +59,12 @@ function _possibleConstructorReturn(self, call) {
|
|
|
59
59
|
}
|
|
60
60
|
return _assertThisInitialized(self);
|
|
61
61
|
}
|
|
62
|
-
function _setPrototypeOf(
|
|
62
|
+
function _setPrototypeOf(o, p) {
|
|
63
63
|
_setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) {
|
|
64
64
|
o.__proto__ = p;
|
|
65
65
|
return o;
|
|
66
66
|
};
|
|
67
|
-
return _setPrototypeOf(
|
|
67
|
+
return _setPrototypeOf(o, p);
|
|
68
68
|
}
|
|
69
69
|
function _taggedTemplateLiteral(strings, raw) {
|
|
70
70
|
if (!raw) {
|
|
@@ -29,11 +29,11 @@ function _defineProperty(obj, key, value) {
|
|
|
29
29
|
}
|
|
30
30
|
return obj;
|
|
31
31
|
}
|
|
32
|
-
function _getPrototypeOf(
|
|
32
|
+
function _getPrototypeOf(o) {
|
|
33
33
|
_getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) {
|
|
34
34
|
return o.__proto__ || Object.getPrototypeOf(o);
|
|
35
35
|
};
|
|
36
|
-
return _getPrototypeOf(
|
|
36
|
+
return _getPrototypeOf(o);
|
|
37
37
|
}
|
|
38
38
|
function _inherits(subClass, superClass) {
|
|
39
39
|
if (typeof superClass !== "function" && superClass !== null) {
|
|
@@ -59,12 +59,12 @@ function _possibleConstructorReturn(self, call) {
|
|
|
59
59
|
}
|
|
60
60
|
return _assertThisInitialized(self);
|
|
61
61
|
}
|
|
62
|
-
function _setPrototypeOf(
|
|
62
|
+
function _setPrototypeOf(o, p) {
|
|
63
63
|
_setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) {
|
|
64
64
|
o.__proto__ = p;
|
|
65
65
|
return o;
|
|
66
66
|
};
|
|
67
|
-
return _setPrototypeOf(
|
|
67
|
+
return _setPrototypeOf(o, p);
|
|
68
68
|
}
|
|
69
69
|
function _taggedTemplateLiteral(strings, raw) {
|
|
70
70
|
if (!raw) {
|
|
@@ -29,11 +29,11 @@ function _defineProperty(obj, key, value) {
|
|
|
29
29
|
}
|
|
30
30
|
return obj;
|
|
31
31
|
}
|
|
32
|
-
function _getPrototypeOf(
|
|
32
|
+
function _getPrototypeOf(o) {
|
|
33
33
|
_getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) {
|
|
34
34
|
return o.__proto__ || Object.getPrototypeOf(o);
|
|
35
35
|
};
|
|
36
|
-
return _getPrototypeOf(
|
|
36
|
+
return _getPrototypeOf(o);
|
|
37
37
|
}
|
|
38
38
|
function _inherits(subClass, superClass) {
|
|
39
39
|
if (typeof superClass !== "function" && superClass !== null) {
|
|
@@ -59,12 +59,12 @@ function _possibleConstructorReturn(self, call) {
|
|
|
59
59
|
}
|
|
60
60
|
return _assertThisInitialized(self);
|
|
61
61
|
}
|
|
62
|
-
function _setPrototypeOf(
|
|
62
|
+
function _setPrototypeOf(o, p) {
|
|
63
63
|
_setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) {
|
|
64
64
|
o.__proto__ = p;
|
|
65
65
|
return o;
|
|
66
66
|
};
|
|
67
|
-
return _setPrototypeOf(
|
|
67
|
+
return _setPrototypeOf(o, p);
|
|
68
68
|
}
|
|
69
69
|
function _taggedTemplateLiteral(strings, raw) {
|
|
70
70
|
if (!raw) {
|
|
@@ -29,11 +29,11 @@ function _defineProperty(obj, key, value) {
|
|
|
29
29
|
}
|
|
30
30
|
return obj;
|
|
31
31
|
}
|
|
32
|
-
function _getPrototypeOf(
|
|
32
|
+
function _getPrototypeOf(o) {
|
|
33
33
|
_getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) {
|
|
34
34
|
return o.__proto__ || Object.getPrototypeOf(o);
|
|
35
35
|
};
|
|
36
|
-
return _getPrototypeOf(
|
|
36
|
+
return _getPrototypeOf(o);
|
|
37
37
|
}
|
|
38
38
|
function _inherits(subClass, superClass) {
|
|
39
39
|
if (typeof superClass !== "function" && superClass !== null) {
|
|
@@ -59,12 +59,12 @@ function _possibleConstructorReturn(self, call) {
|
|
|
59
59
|
}
|
|
60
60
|
return _assertThisInitialized(self);
|
|
61
61
|
}
|
|
62
|
-
function _setPrototypeOf(
|
|
62
|
+
function _setPrototypeOf(o, p) {
|
|
63
63
|
_setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) {
|
|
64
64
|
o.__proto__ = p;
|
|
65
65
|
return o;
|
|
66
66
|
};
|
|
67
|
-
return _setPrototypeOf(
|
|
67
|
+
return _setPrototypeOf(o, p);
|
|
68
68
|
}
|
|
69
69
|
function _taggedTemplateLiteral(strings, raw) {
|
|
70
70
|
if (!raw) {
|
|
@@ -29,11 +29,11 @@ function _defineProperty(obj, key, value) {
|
|
|
29
29
|
}
|
|
30
30
|
return obj;
|
|
31
31
|
}
|
|
32
|
-
function _getPrototypeOf(
|
|
32
|
+
function _getPrototypeOf(o) {
|
|
33
33
|
_getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) {
|
|
34
34
|
return o.__proto__ || Object.getPrototypeOf(o);
|
|
35
35
|
};
|
|
36
|
-
return _getPrototypeOf(
|
|
36
|
+
return _getPrototypeOf(o);
|
|
37
37
|
}
|
|
38
38
|
function _inherits(subClass, superClass) {
|
|
39
39
|
if (typeof superClass !== "function" && superClass !== null) {
|
|
@@ -59,12 +59,12 @@ function _possibleConstructorReturn(self, call) {
|
|
|
59
59
|
}
|
|
60
60
|
return _assertThisInitialized(self);
|
|
61
61
|
}
|
|
62
|
-
function _setPrototypeOf(
|
|
62
|
+
function _setPrototypeOf(o, p) {
|
|
63
63
|
_setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) {
|
|
64
64
|
o.__proto__ = p;
|
|
65
65
|
return o;
|
|
66
66
|
};
|
|
67
|
-
return _setPrototypeOf(
|
|
67
|
+
return _setPrototypeOf(o, p);
|
|
68
68
|
}
|
|
69
69
|
function _taggedTemplateLiteral(strings, raw) {
|
|
70
70
|
if (!raw) {
|
|
@@ -29,11 +29,11 @@ function _defineProperty(obj, key, value) {
|
|
|
29
29
|
}
|
|
30
30
|
return obj;
|
|
31
31
|
}
|
|
32
|
-
function _getPrototypeOf(
|
|
32
|
+
function _getPrototypeOf(o) {
|
|
33
33
|
_getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) {
|
|
34
34
|
return o.__proto__ || Object.getPrototypeOf(o);
|
|
35
35
|
};
|
|
36
|
-
return _getPrototypeOf(
|
|
36
|
+
return _getPrototypeOf(o);
|
|
37
37
|
}
|
|
38
38
|
function _inherits(subClass, superClass) {
|
|
39
39
|
if (typeof superClass !== "function" && superClass !== null) {
|
|
@@ -59,12 +59,12 @@ function _possibleConstructorReturn(self, call) {
|
|
|
59
59
|
}
|
|
60
60
|
return _assertThisInitialized(self);
|
|
61
61
|
}
|
|
62
|
-
function _setPrototypeOf(
|
|
62
|
+
function _setPrototypeOf(o, p) {
|
|
63
63
|
_setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) {
|
|
64
64
|
o.__proto__ = p;
|
|
65
65
|
return o;
|
|
66
66
|
};
|
|
67
|
-
return _setPrototypeOf(
|
|
67
|
+
return _setPrototypeOf(o, p);
|
|
68
68
|
}
|
|
69
69
|
function _taggedTemplateLiteral(strings, raw) {
|
|
70
70
|
if (!raw) {
|
|
@@ -29,11 +29,11 @@ function _defineProperty(obj, key, value) {
|
|
|
29
29
|
}
|
|
30
30
|
return obj;
|
|
31
31
|
}
|
|
32
|
-
function _getPrototypeOf(
|
|
32
|
+
function _getPrototypeOf(o) {
|
|
33
33
|
_getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) {
|
|
34
34
|
return o.__proto__ || Object.getPrototypeOf(o);
|
|
35
35
|
};
|
|
36
|
-
return _getPrototypeOf(
|
|
36
|
+
return _getPrototypeOf(o);
|
|
37
37
|
}
|
|
38
38
|
function _inherits(subClass, superClass) {
|
|
39
39
|
if (typeof superClass !== "function" && superClass !== null) {
|
|
@@ -59,12 +59,12 @@ function _possibleConstructorReturn(self, call) {
|
|
|
59
59
|
}
|
|
60
60
|
return _assertThisInitialized(self);
|
|
61
61
|
}
|
|
62
|
-
function _setPrototypeOf(
|
|
62
|
+
function _setPrototypeOf(o, p) {
|
|
63
63
|
_setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) {
|
|
64
64
|
o.__proto__ = p;
|
|
65
65
|
return o;
|
|
66
66
|
};
|
|
67
|
-
return _setPrototypeOf(
|
|
67
|
+
return _setPrototypeOf(o, p);
|
|
68
68
|
}
|
|
69
69
|
function _taggedTemplateLiteral(strings, raw) {
|
|
70
70
|
if (!raw) {
|