epfl-elements 5.0.1 → 5.0.2
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/dist/components/atoms/select/select-multiple.twig +2 -2
- package/dist/components/atoms/select/select.twig +1 -1
- package/dist/components/content-types/press-review/press-review.twig +1 -1
- package/dist/components/molecules/card/card-inside-links.twig +3 -3
- package/dist/components/molecules/card-deck/card-deck.yml +1 -1
- package/dist/components/molecules/filters/filters-blog.twig +5 -25
- package/dist/components/molecules/form-group/form-group-checkboxes.twig +1 -1
- package/dist/components/molecules/form-group/form-group-error.twig +1 -1
- package/dist/components/molecules/form-group/form-group-radio.twig +1 -1
- package/dist/components/molecules/form-group/form-group-search.twig +2 -2
- package/dist/components/molecules/form-group/form-group-textarea.twig +1 -1
- package/dist/components/molecules/form-group/form-group-upload.twig +1 -1
- package/dist/components/molecules/form-group/form-group.twig +1 -1
- package/dist/components/molecules/social/social-follow.twig +8 -10
- package/dist/components/pages/press-review/press-review.twig +73 -0
- package/dist/components/pages/press-review/press-review.yml +2 -0
- package/dist/css/elements.css +12 -8
- package/dist/css/elements.min.css +1 -1
- package/dist/css/elements.min.css.map +1 -1
- package/dist/css/reader.min.css +1 -1
- package/dist/css/reader.min.css.map +1 -1
- package/dist/css/vendors.min.css +2 -2
- package/dist/docs/design/typography.html +1 -1
- package/dist/js/elements.js +252 -3340
- package/dist/js/elements.min.js +1 -1
- package/dist/js/elements.min.js.map +1 -1
- package/dist/js/reader.js +2885 -7513
- package/dist/js/reader.min.js +54 -1
- package/dist/js/reader.min.js.map +1 -1
- package/dist/js/spritemap.js +3 -3
- package/dist/js/vendors.js +2901 -2434
- package/dist/js/vendors.min.js +1 -1
- package/dist/package.json +3 -3
- package/package.json +3 -3
package/dist/js/elements.js
CHANGED
|
@@ -1,3031 +1,7 @@
|
|
|
1
1
|
/******/ (function() { // webpackBootstrap
|
|
2
2
|
/******/ var __webpack_modules__ = ({
|
|
3
3
|
|
|
4
|
-
/***/
|
|
5
|
-
/***/ (function(module) {
|
|
6
|
-
|
|
7
|
-
module.exports = function (it) {
|
|
8
|
-
if (typeof it != 'function') {
|
|
9
|
-
throw TypeError(String(it) + ' is not a function');
|
|
10
|
-
} return it;
|
|
11
|
-
};
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
/***/ }),
|
|
15
|
-
|
|
16
|
-
/***/ 96077:
|
|
17
|
-
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
18
|
-
|
|
19
|
-
var isObject = __webpack_require__(70111);
|
|
20
|
-
|
|
21
|
-
module.exports = function (it) {
|
|
22
|
-
if (!isObject(it) && it !== null) {
|
|
23
|
-
throw TypeError("Can't set " + String(it) + ' as a prototype');
|
|
24
|
-
} return it;
|
|
25
|
-
};
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
/***/ }),
|
|
29
|
-
|
|
30
|
-
/***/ 51223:
|
|
31
|
-
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
32
|
-
|
|
33
|
-
var wellKnownSymbol = __webpack_require__(5112);
|
|
34
|
-
var create = __webpack_require__(70030);
|
|
35
|
-
var definePropertyModule = __webpack_require__(3070);
|
|
36
|
-
|
|
37
|
-
var UNSCOPABLES = wellKnownSymbol('unscopables');
|
|
38
|
-
var ArrayPrototype = Array.prototype;
|
|
39
|
-
|
|
40
|
-
// Array.prototype[@@unscopables]
|
|
41
|
-
// https://tc39.es/ecma262/#sec-array.prototype-@@unscopables
|
|
42
|
-
if (ArrayPrototype[UNSCOPABLES] == undefined) {
|
|
43
|
-
definePropertyModule.f(ArrayPrototype, UNSCOPABLES, {
|
|
44
|
-
configurable: true,
|
|
45
|
-
value: create(null)
|
|
46
|
-
});
|
|
47
|
-
}
|
|
48
|
-
|
|
49
|
-
// add a key to Array.prototype[@@unscopables]
|
|
50
|
-
module.exports = function (key) {
|
|
51
|
-
ArrayPrototype[UNSCOPABLES][key] = true;
|
|
52
|
-
};
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
/***/ }),
|
|
56
|
-
|
|
57
|
-
/***/ 31530:
|
|
58
|
-
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
59
|
-
|
|
60
|
-
"use strict";
|
|
61
|
-
|
|
62
|
-
var charAt = (__webpack_require__(28710).charAt);
|
|
63
|
-
|
|
64
|
-
// `AdvanceStringIndex` abstract operation
|
|
65
|
-
// https://tc39.es/ecma262/#sec-advancestringindex
|
|
66
|
-
module.exports = function (S, index, unicode) {
|
|
67
|
-
return index + (unicode ? charAt(S, index).length : 1);
|
|
68
|
-
};
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
/***/ }),
|
|
72
|
-
|
|
73
|
-
/***/ 19670:
|
|
74
|
-
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
75
|
-
|
|
76
|
-
var isObject = __webpack_require__(70111);
|
|
77
|
-
|
|
78
|
-
module.exports = function (it) {
|
|
79
|
-
if (!isObject(it)) {
|
|
80
|
-
throw TypeError(String(it) + ' is not an object');
|
|
81
|
-
} return it;
|
|
82
|
-
};
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
/***/ }),
|
|
86
|
-
|
|
87
|
-
/***/ 48457:
|
|
88
|
-
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
89
|
-
|
|
90
|
-
"use strict";
|
|
91
|
-
|
|
92
|
-
var bind = __webpack_require__(49974);
|
|
93
|
-
var toObject = __webpack_require__(47908);
|
|
94
|
-
var callWithSafeIterationClosing = __webpack_require__(53411);
|
|
95
|
-
var isArrayIteratorMethod = __webpack_require__(97659);
|
|
96
|
-
var toLength = __webpack_require__(17466);
|
|
97
|
-
var createProperty = __webpack_require__(86135);
|
|
98
|
-
var getIteratorMethod = __webpack_require__(71246);
|
|
99
|
-
|
|
100
|
-
// `Array.from` method implementation
|
|
101
|
-
// https://tc39.es/ecma262/#sec-array.from
|
|
102
|
-
module.exports = function from(arrayLike /* , mapfn = undefined, thisArg = undefined */) {
|
|
103
|
-
var O = toObject(arrayLike);
|
|
104
|
-
var C = typeof this == 'function' ? this : Array;
|
|
105
|
-
var argumentsLength = arguments.length;
|
|
106
|
-
var mapfn = argumentsLength > 1 ? arguments[1] : undefined;
|
|
107
|
-
var mapping = mapfn !== undefined;
|
|
108
|
-
var iteratorMethod = getIteratorMethod(O);
|
|
109
|
-
var index = 0;
|
|
110
|
-
var length, result, step, iterator, next, value;
|
|
111
|
-
if (mapping) mapfn = bind(mapfn, argumentsLength > 2 ? arguments[2] : undefined, 2);
|
|
112
|
-
// if the target is not iterable or it's an array with the default iterator - use a simple case
|
|
113
|
-
if (iteratorMethod != undefined && !(C == Array && isArrayIteratorMethod(iteratorMethod))) {
|
|
114
|
-
iterator = iteratorMethod.call(O);
|
|
115
|
-
next = iterator.next;
|
|
116
|
-
result = new C();
|
|
117
|
-
for (;!(step = next.call(iterator)).done; index++) {
|
|
118
|
-
value = mapping ? callWithSafeIterationClosing(iterator, mapfn, [step.value, index], true) : step.value;
|
|
119
|
-
createProperty(result, index, value);
|
|
120
|
-
}
|
|
121
|
-
} else {
|
|
122
|
-
length = toLength(O.length);
|
|
123
|
-
result = new C(length);
|
|
124
|
-
for (;length > index; index++) {
|
|
125
|
-
value = mapping ? mapfn(O[index], index) : O[index];
|
|
126
|
-
createProperty(result, index, value);
|
|
127
|
-
}
|
|
128
|
-
}
|
|
129
|
-
result.length = index;
|
|
130
|
-
return result;
|
|
131
|
-
};
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
/***/ }),
|
|
135
|
-
|
|
136
|
-
/***/ 41318:
|
|
137
|
-
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
138
|
-
|
|
139
|
-
var toIndexedObject = __webpack_require__(45656);
|
|
140
|
-
var toLength = __webpack_require__(17466);
|
|
141
|
-
var toAbsoluteIndex = __webpack_require__(51400);
|
|
142
|
-
|
|
143
|
-
// `Array.prototype.{ indexOf, includes }` methods implementation
|
|
144
|
-
var createMethod = function (IS_INCLUDES) {
|
|
145
|
-
return function ($this, el, fromIndex) {
|
|
146
|
-
var O = toIndexedObject($this);
|
|
147
|
-
var length = toLength(O.length);
|
|
148
|
-
var index = toAbsoluteIndex(fromIndex, length);
|
|
149
|
-
var value;
|
|
150
|
-
// Array#includes uses SameValueZero equality algorithm
|
|
151
|
-
// eslint-disable-next-line no-self-compare -- NaN check
|
|
152
|
-
if (IS_INCLUDES && el != el) while (length > index) {
|
|
153
|
-
value = O[index++];
|
|
154
|
-
// eslint-disable-next-line no-self-compare -- NaN check
|
|
155
|
-
if (value != value) return true;
|
|
156
|
-
// Array#indexOf ignores holes, Array#includes - not
|
|
157
|
-
} else for (;length > index; index++) {
|
|
158
|
-
if ((IS_INCLUDES || index in O) && O[index] === el) return IS_INCLUDES || index || 0;
|
|
159
|
-
} return !IS_INCLUDES && -1;
|
|
160
|
-
};
|
|
161
|
-
};
|
|
162
|
-
|
|
163
|
-
module.exports = {
|
|
164
|
-
// `Array.prototype.includes` method
|
|
165
|
-
// https://tc39.es/ecma262/#sec-array.prototype.includes
|
|
166
|
-
includes: createMethod(true),
|
|
167
|
-
// `Array.prototype.indexOf` method
|
|
168
|
-
// https://tc39.es/ecma262/#sec-array.prototype.indexof
|
|
169
|
-
indexOf: createMethod(false)
|
|
170
|
-
};
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
/***/ }),
|
|
174
|
-
|
|
175
|
-
/***/ 42092:
|
|
176
|
-
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
177
|
-
|
|
178
|
-
var bind = __webpack_require__(49974);
|
|
179
|
-
var IndexedObject = __webpack_require__(68361);
|
|
180
|
-
var toObject = __webpack_require__(47908);
|
|
181
|
-
var toLength = __webpack_require__(17466);
|
|
182
|
-
var arraySpeciesCreate = __webpack_require__(65417);
|
|
183
|
-
|
|
184
|
-
var push = [].push;
|
|
185
|
-
|
|
186
|
-
// `Array.prototype.{ forEach, map, filter, some, every, find, findIndex, filterOut }` methods implementation
|
|
187
|
-
var createMethod = function (TYPE) {
|
|
188
|
-
var IS_MAP = TYPE == 1;
|
|
189
|
-
var IS_FILTER = TYPE == 2;
|
|
190
|
-
var IS_SOME = TYPE == 3;
|
|
191
|
-
var IS_EVERY = TYPE == 4;
|
|
192
|
-
var IS_FIND_INDEX = TYPE == 6;
|
|
193
|
-
var IS_FILTER_OUT = TYPE == 7;
|
|
194
|
-
var NO_HOLES = TYPE == 5 || IS_FIND_INDEX;
|
|
195
|
-
return function ($this, callbackfn, that, specificCreate) {
|
|
196
|
-
var O = toObject($this);
|
|
197
|
-
var self = IndexedObject(O);
|
|
198
|
-
var boundFunction = bind(callbackfn, that, 3);
|
|
199
|
-
var length = toLength(self.length);
|
|
200
|
-
var index = 0;
|
|
201
|
-
var create = specificCreate || arraySpeciesCreate;
|
|
202
|
-
var target = IS_MAP ? create($this, length) : IS_FILTER || IS_FILTER_OUT ? create($this, 0) : undefined;
|
|
203
|
-
var value, result;
|
|
204
|
-
for (;length > index; index++) if (NO_HOLES || index in self) {
|
|
205
|
-
value = self[index];
|
|
206
|
-
result = boundFunction(value, index, O);
|
|
207
|
-
if (TYPE) {
|
|
208
|
-
if (IS_MAP) target[index] = result; // map
|
|
209
|
-
else if (result) switch (TYPE) {
|
|
210
|
-
case 3: return true; // some
|
|
211
|
-
case 5: return value; // find
|
|
212
|
-
case 6: return index; // findIndex
|
|
213
|
-
case 2: push.call(target, value); // filter
|
|
214
|
-
} else switch (TYPE) {
|
|
215
|
-
case 4: return false; // every
|
|
216
|
-
case 7: push.call(target, value); // filterOut
|
|
217
|
-
}
|
|
218
|
-
}
|
|
219
|
-
}
|
|
220
|
-
return IS_FIND_INDEX ? -1 : IS_SOME || IS_EVERY ? IS_EVERY : target;
|
|
221
|
-
};
|
|
222
|
-
};
|
|
223
|
-
|
|
224
|
-
module.exports = {
|
|
225
|
-
// `Array.prototype.forEach` method
|
|
226
|
-
// https://tc39.es/ecma262/#sec-array.prototype.foreach
|
|
227
|
-
forEach: createMethod(0),
|
|
228
|
-
// `Array.prototype.map` method
|
|
229
|
-
// https://tc39.es/ecma262/#sec-array.prototype.map
|
|
230
|
-
map: createMethod(1),
|
|
231
|
-
// `Array.prototype.filter` method
|
|
232
|
-
// https://tc39.es/ecma262/#sec-array.prototype.filter
|
|
233
|
-
filter: createMethod(2),
|
|
234
|
-
// `Array.prototype.some` method
|
|
235
|
-
// https://tc39.es/ecma262/#sec-array.prototype.some
|
|
236
|
-
some: createMethod(3),
|
|
237
|
-
// `Array.prototype.every` method
|
|
238
|
-
// https://tc39.es/ecma262/#sec-array.prototype.every
|
|
239
|
-
every: createMethod(4),
|
|
240
|
-
// `Array.prototype.find` method
|
|
241
|
-
// https://tc39.es/ecma262/#sec-array.prototype.find
|
|
242
|
-
find: createMethod(5),
|
|
243
|
-
// `Array.prototype.findIndex` method
|
|
244
|
-
// https://tc39.es/ecma262/#sec-array.prototype.findIndex
|
|
245
|
-
findIndex: createMethod(6),
|
|
246
|
-
// `Array.prototype.filterOut` method
|
|
247
|
-
// https://github.com/tc39/proposal-array-filtering
|
|
248
|
-
filterOut: createMethod(7)
|
|
249
|
-
};
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
/***/ }),
|
|
253
|
-
|
|
254
|
-
/***/ 81194:
|
|
255
|
-
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
256
|
-
|
|
257
|
-
var fails = __webpack_require__(47293);
|
|
258
|
-
var wellKnownSymbol = __webpack_require__(5112);
|
|
259
|
-
var V8_VERSION = __webpack_require__(7392);
|
|
260
|
-
|
|
261
|
-
var SPECIES = wellKnownSymbol('species');
|
|
262
|
-
|
|
263
|
-
module.exports = function (METHOD_NAME) {
|
|
264
|
-
// We can't use this feature detection in V8 since it causes
|
|
265
|
-
// deoptimization and serious performance degradation
|
|
266
|
-
// https://github.com/zloirock/core-js/issues/677
|
|
267
|
-
return V8_VERSION >= 51 || !fails(function () {
|
|
268
|
-
var array = [];
|
|
269
|
-
var constructor = array.constructor = {};
|
|
270
|
-
constructor[SPECIES] = function () {
|
|
271
|
-
return { foo: 1 };
|
|
272
|
-
};
|
|
273
|
-
return array[METHOD_NAME](Boolean).foo !== 1;
|
|
274
|
-
});
|
|
275
|
-
};
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
/***/ }),
|
|
279
|
-
|
|
280
|
-
/***/ 9341:
|
|
281
|
-
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
282
|
-
|
|
283
|
-
"use strict";
|
|
284
|
-
|
|
285
|
-
var fails = __webpack_require__(47293);
|
|
286
|
-
|
|
287
|
-
module.exports = function (METHOD_NAME, argument) {
|
|
288
|
-
var method = [][METHOD_NAME];
|
|
289
|
-
return !!method && fails(function () {
|
|
290
|
-
// eslint-disable-next-line no-useless-call,no-throw-literal -- required for testing
|
|
291
|
-
method.call(null, argument || function () { throw 1; }, 1);
|
|
292
|
-
});
|
|
293
|
-
};
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
/***/ }),
|
|
297
|
-
|
|
298
|
-
/***/ 65417:
|
|
299
|
-
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
300
|
-
|
|
301
|
-
var isObject = __webpack_require__(70111);
|
|
302
|
-
var isArray = __webpack_require__(43157);
|
|
303
|
-
var wellKnownSymbol = __webpack_require__(5112);
|
|
304
|
-
|
|
305
|
-
var SPECIES = wellKnownSymbol('species');
|
|
306
|
-
|
|
307
|
-
// `ArraySpeciesCreate` abstract operation
|
|
308
|
-
// https://tc39.es/ecma262/#sec-arrayspeciescreate
|
|
309
|
-
module.exports = function (originalArray, length) {
|
|
310
|
-
var C;
|
|
311
|
-
if (isArray(originalArray)) {
|
|
312
|
-
C = originalArray.constructor;
|
|
313
|
-
// cross-realm fallback
|
|
314
|
-
if (typeof C == 'function' && (C === Array || isArray(C.prototype))) C = undefined;
|
|
315
|
-
else if (isObject(C)) {
|
|
316
|
-
C = C[SPECIES];
|
|
317
|
-
if (C === null) C = undefined;
|
|
318
|
-
}
|
|
319
|
-
} return new (C === undefined ? Array : C)(length === 0 ? 0 : length);
|
|
320
|
-
};
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
/***/ }),
|
|
324
|
-
|
|
325
|
-
/***/ 53411:
|
|
326
|
-
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
327
|
-
|
|
328
|
-
var anObject = __webpack_require__(19670);
|
|
329
|
-
var iteratorClose = __webpack_require__(99212);
|
|
330
|
-
|
|
331
|
-
// call something on iterator step with safe closing on error
|
|
332
|
-
module.exports = function (iterator, fn, value, ENTRIES) {
|
|
333
|
-
try {
|
|
334
|
-
return ENTRIES ? fn(anObject(value)[0], value[1]) : fn(value);
|
|
335
|
-
} catch (error) {
|
|
336
|
-
iteratorClose(iterator);
|
|
337
|
-
throw error;
|
|
338
|
-
}
|
|
339
|
-
};
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
/***/ }),
|
|
343
|
-
|
|
344
|
-
/***/ 17072:
|
|
345
|
-
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
346
|
-
|
|
347
|
-
var wellKnownSymbol = __webpack_require__(5112);
|
|
348
|
-
|
|
349
|
-
var ITERATOR = wellKnownSymbol('iterator');
|
|
350
|
-
var SAFE_CLOSING = false;
|
|
351
|
-
|
|
352
|
-
try {
|
|
353
|
-
var called = 0;
|
|
354
|
-
var iteratorWithReturn = {
|
|
355
|
-
next: function () {
|
|
356
|
-
return { done: !!called++ };
|
|
357
|
-
},
|
|
358
|
-
'return': function () {
|
|
359
|
-
SAFE_CLOSING = true;
|
|
360
|
-
}
|
|
361
|
-
};
|
|
362
|
-
iteratorWithReturn[ITERATOR] = function () {
|
|
363
|
-
return this;
|
|
364
|
-
};
|
|
365
|
-
// eslint-disable-next-line es/no-array-from, no-throw-literal -- required for testing
|
|
366
|
-
Array.from(iteratorWithReturn, function () { throw 2; });
|
|
367
|
-
} catch (error) { /* empty */ }
|
|
368
|
-
|
|
369
|
-
module.exports = function (exec, SKIP_CLOSING) {
|
|
370
|
-
if (!SKIP_CLOSING && !SAFE_CLOSING) return false;
|
|
371
|
-
var ITERATION_SUPPORT = false;
|
|
372
|
-
try {
|
|
373
|
-
var object = {};
|
|
374
|
-
object[ITERATOR] = function () {
|
|
375
|
-
return {
|
|
376
|
-
next: function () {
|
|
377
|
-
return { done: ITERATION_SUPPORT = true };
|
|
378
|
-
}
|
|
379
|
-
};
|
|
380
|
-
};
|
|
381
|
-
exec(object);
|
|
382
|
-
} catch (error) { /* empty */ }
|
|
383
|
-
return ITERATION_SUPPORT;
|
|
384
|
-
};
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
/***/ }),
|
|
388
|
-
|
|
389
|
-
/***/ 84326:
|
|
390
|
-
/***/ (function(module) {
|
|
391
|
-
|
|
392
|
-
var toString = {}.toString;
|
|
393
|
-
|
|
394
|
-
module.exports = function (it) {
|
|
395
|
-
return toString.call(it).slice(8, -1);
|
|
396
|
-
};
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
/***/ }),
|
|
400
|
-
|
|
401
|
-
/***/ 70648:
|
|
402
|
-
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
403
|
-
|
|
404
|
-
var TO_STRING_TAG_SUPPORT = __webpack_require__(51694);
|
|
405
|
-
var classofRaw = __webpack_require__(84326);
|
|
406
|
-
var wellKnownSymbol = __webpack_require__(5112);
|
|
407
|
-
|
|
408
|
-
var TO_STRING_TAG = wellKnownSymbol('toStringTag');
|
|
409
|
-
// ES3 wrong here
|
|
410
|
-
var CORRECT_ARGUMENTS = classofRaw(function () { return arguments; }()) == 'Arguments';
|
|
411
|
-
|
|
412
|
-
// fallback for IE11 Script Access Denied error
|
|
413
|
-
var tryGet = function (it, key) {
|
|
414
|
-
try {
|
|
415
|
-
return it[key];
|
|
416
|
-
} catch (error) { /* empty */ }
|
|
417
|
-
};
|
|
418
|
-
|
|
419
|
-
// getting tag from ES6+ `Object.prototype.toString`
|
|
420
|
-
module.exports = TO_STRING_TAG_SUPPORT ? classofRaw : function (it) {
|
|
421
|
-
var O, tag, result;
|
|
422
|
-
return it === undefined ? 'Undefined' : it === null ? 'Null'
|
|
423
|
-
// @@toStringTag case
|
|
424
|
-
: typeof (tag = tryGet(O = Object(it), TO_STRING_TAG)) == 'string' ? tag
|
|
425
|
-
// builtinTag case
|
|
426
|
-
: CORRECT_ARGUMENTS ? classofRaw(O)
|
|
427
|
-
// ES3 arguments fallback
|
|
428
|
-
: (result = classofRaw(O)) == 'Object' && typeof O.callee == 'function' ? 'Arguments' : result;
|
|
429
|
-
};
|
|
430
|
-
|
|
431
|
-
|
|
432
|
-
/***/ }),
|
|
433
|
-
|
|
434
|
-
/***/ 99920:
|
|
435
|
-
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
436
|
-
|
|
437
|
-
var has = __webpack_require__(86656);
|
|
438
|
-
var ownKeys = __webpack_require__(53887);
|
|
439
|
-
var getOwnPropertyDescriptorModule = __webpack_require__(31236);
|
|
440
|
-
var definePropertyModule = __webpack_require__(3070);
|
|
441
|
-
|
|
442
|
-
module.exports = function (target, source) {
|
|
443
|
-
var keys = ownKeys(source);
|
|
444
|
-
var defineProperty = definePropertyModule.f;
|
|
445
|
-
var getOwnPropertyDescriptor = getOwnPropertyDescriptorModule.f;
|
|
446
|
-
for (var i = 0; i < keys.length; i++) {
|
|
447
|
-
var key = keys[i];
|
|
448
|
-
if (!has(target, key)) defineProperty(target, key, getOwnPropertyDescriptor(source, key));
|
|
449
|
-
}
|
|
450
|
-
};
|
|
451
|
-
|
|
452
|
-
|
|
453
|
-
/***/ }),
|
|
454
|
-
|
|
455
|
-
/***/ 49920:
|
|
456
|
-
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
457
|
-
|
|
458
|
-
var fails = __webpack_require__(47293);
|
|
459
|
-
|
|
460
|
-
module.exports = !fails(function () {
|
|
461
|
-
function F() { /* empty */ }
|
|
462
|
-
F.prototype.constructor = null;
|
|
463
|
-
// eslint-disable-next-line es/no-object-getprototypeof -- required for testing
|
|
464
|
-
return Object.getPrototypeOf(new F()) !== F.prototype;
|
|
465
|
-
});
|
|
466
|
-
|
|
467
|
-
|
|
468
|
-
/***/ }),
|
|
469
|
-
|
|
470
|
-
/***/ 24994:
|
|
471
|
-
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
472
|
-
|
|
473
|
-
"use strict";
|
|
474
|
-
|
|
475
|
-
var IteratorPrototype = (__webpack_require__(13383).IteratorPrototype);
|
|
476
|
-
var create = __webpack_require__(70030);
|
|
477
|
-
var createPropertyDescriptor = __webpack_require__(79114);
|
|
478
|
-
var setToStringTag = __webpack_require__(58003);
|
|
479
|
-
var Iterators = __webpack_require__(97497);
|
|
480
|
-
|
|
481
|
-
var returnThis = function () { return this; };
|
|
482
|
-
|
|
483
|
-
module.exports = function (IteratorConstructor, NAME, next) {
|
|
484
|
-
var TO_STRING_TAG = NAME + ' Iterator';
|
|
485
|
-
IteratorConstructor.prototype = create(IteratorPrototype, { next: createPropertyDescriptor(1, next) });
|
|
486
|
-
setToStringTag(IteratorConstructor, TO_STRING_TAG, false, true);
|
|
487
|
-
Iterators[TO_STRING_TAG] = returnThis;
|
|
488
|
-
return IteratorConstructor;
|
|
489
|
-
};
|
|
490
|
-
|
|
491
|
-
|
|
492
|
-
/***/ }),
|
|
493
|
-
|
|
494
|
-
/***/ 68880:
|
|
495
|
-
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
496
|
-
|
|
497
|
-
var DESCRIPTORS = __webpack_require__(19781);
|
|
498
|
-
var definePropertyModule = __webpack_require__(3070);
|
|
499
|
-
var createPropertyDescriptor = __webpack_require__(79114);
|
|
500
|
-
|
|
501
|
-
module.exports = DESCRIPTORS ? function (object, key, value) {
|
|
502
|
-
return definePropertyModule.f(object, key, createPropertyDescriptor(1, value));
|
|
503
|
-
} : function (object, key, value) {
|
|
504
|
-
object[key] = value;
|
|
505
|
-
return object;
|
|
506
|
-
};
|
|
507
|
-
|
|
508
|
-
|
|
509
|
-
/***/ }),
|
|
510
|
-
|
|
511
|
-
/***/ 79114:
|
|
512
|
-
/***/ (function(module) {
|
|
513
|
-
|
|
514
|
-
module.exports = function (bitmap, value) {
|
|
515
|
-
return {
|
|
516
|
-
enumerable: !(bitmap & 1),
|
|
517
|
-
configurable: !(bitmap & 2),
|
|
518
|
-
writable: !(bitmap & 4),
|
|
519
|
-
value: value
|
|
520
|
-
};
|
|
521
|
-
};
|
|
522
|
-
|
|
523
|
-
|
|
524
|
-
/***/ }),
|
|
525
|
-
|
|
526
|
-
/***/ 86135:
|
|
527
|
-
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
528
|
-
|
|
529
|
-
"use strict";
|
|
530
|
-
|
|
531
|
-
var toPrimitive = __webpack_require__(57593);
|
|
532
|
-
var definePropertyModule = __webpack_require__(3070);
|
|
533
|
-
var createPropertyDescriptor = __webpack_require__(79114);
|
|
534
|
-
|
|
535
|
-
module.exports = function (object, key, value) {
|
|
536
|
-
var propertyKey = toPrimitive(key);
|
|
537
|
-
if (propertyKey in object) definePropertyModule.f(object, propertyKey, createPropertyDescriptor(0, value));
|
|
538
|
-
else object[propertyKey] = value;
|
|
539
|
-
};
|
|
540
|
-
|
|
541
|
-
|
|
542
|
-
/***/ }),
|
|
543
|
-
|
|
544
|
-
/***/ 70654:
|
|
545
|
-
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
546
|
-
|
|
547
|
-
"use strict";
|
|
548
|
-
|
|
549
|
-
var $ = __webpack_require__(82109);
|
|
550
|
-
var createIteratorConstructor = __webpack_require__(24994);
|
|
551
|
-
var getPrototypeOf = __webpack_require__(79518);
|
|
552
|
-
var setPrototypeOf = __webpack_require__(27674);
|
|
553
|
-
var setToStringTag = __webpack_require__(58003);
|
|
554
|
-
var createNonEnumerableProperty = __webpack_require__(68880);
|
|
555
|
-
var redefine = __webpack_require__(31320);
|
|
556
|
-
var wellKnownSymbol = __webpack_require__(5112);
|
|
557
|
-
var IS_PURE = __webpack_require__(31913);
|
|
558
|
-
var Iterators = __webpack_require__(97497);
|
|
559
|
-
var IteratorsCore = __webpack_require__(13383);
|
|
560
|
-
|
|
561
|
-
var IteratorPrototype = IteratorsCore.IteratorPrototype;
|
|
562
|
-
var BUGGY_SAFARI_ITERATORS = IteratorsCore.BUGGY_SAFARI_ITERATORS;
|
|
563
|
-
var ITERATOR = wellKnownSymbol('iterator');
|
|
564
|
-
var KEYS = 'keys';
|
|
565
|
-
var VALUES = 'values';
|
|
566
|
-
var ENTRIES = 'entries';
|
|
567
|
-
|
|
568
|
-
var returnThis = function () { return this; };
|
|
569
|
-
|
|
570
|
-
module.exports = function (Iterable, NAME, IteratorConstructor, next, DEFAULT, IS_SET, FORCED) {
|
|
571
|
-
createIteratorConstructor(IteratorConstructor, NAME, next);
|
|
572
|
-
|
|
573
|
-
var getIterationMethod = function (KIND) {
|
|
574
|
-
if (KIND === DEFAULT && defaultIterator) return defaultIterator;
|
|
575
|
-
if (!BUGGY_SAFARI_ITERATORS && KIND in IterablePrototype) return IterablePrototype[KIND];
|
|
576
|
-
switch (KIND) {
|
|
577
|
-
case KEYS: return function keys() { return new IteratorConstructor(this, KIND); };
|
|
578
|
-
case VALUES: return function values() { return new IteratorConstructor(this, KIND); };
|
|
579
|
-
case ENTRIES: return function entries() { return new IteratorConstructor(this, KIND); };
|
|
580
|
-
} return function () { return new IteratorConstructor(this); };
|
|
581
|
-
};
|
|
582
|
-
|
|
583
|
-
var TO_STRING_TAG = NAME + ' Iterator';
|
|
584
|
-
var INCORRECT_VALUES_NAME = false;
|
|
585
|
-
var IterablePrototype = Iterable.prototype;
|
|
586
|
-
var nativeIterator = IterablePrototype[ITERATOR]
|
|
587
|
-
|| IterablePrototype['@@iterator']
|
|
588
|
-
|| DEFAULT && IterablePrototype[DEFAULT];
|
|
589
|
-
var defaultIterator = !BUGGY_SAFARI_ITERATORS && nativeIterator || getIterationMethod(DEFAULT);
|
|
590
|
-
var anyNativeIterator = NAME == 'Array' ? IterablePrototype.entries || nativeIterator : nativeIterator;
|
|
591
|
-
var CurrentIteratorPrototype, methods, KEY;
|
|
592
|
-
|
|
593
|
-
// fix native
|
|
594
|
-
if (anyNativeIterator) {
|
|
595
|
-
CurrentIteratorPrototype = getPrototypeOf(anyNativeIterator.call(new Iterable()));
|
|
596
|
-
if (IteratorPrototype !== Object.prototype && CurrentIteratorPrototype.next) {
|
|
597
|
-
if (!IS_PURE && getPrototypeOf(CurrentIteratorPrototype) !== IteratorPrototype) {
|
|
598
|
-
if (setPrototypeOf) {
|
|
599
|
-
setPrototypeOf(CurrentIteratorPrototype, IteratorPrototype);
|
|
600
|
-
} else if (typeof CurrentIteratorPrototype[ITERATOR] != 'function') {
|
|
601
|
-
createNonEnumerableProperty(CurrentIteratorPrototype, ITERATOR, returnThis);
|
|
602
|
-
}
|
|
603
|
-
}
|
|
604
|
-
// Set @@toStringTag to native iterators
|
|
605
|
-
setToStringTag(CurrentIteratorPrototype, TO_STRING_TAG, true, true);
|
|
606
|
-
if (IS_PURE) Iterators[TO_STRING_TAG] = returnThis;
|
|
607
|
-
}
|
|
608
|
-
}
|
|
609
|
-
|
|
610
|
-
// fix Array.prototype.{ values, @@iterator }.name in V8 / FF
|
|
611
|
-
if (DEFAULT == VALUES && nativeIterator && nativeIterator.name !== VALUES) {
|
|
612
|
-
INCORRECT_VALUES_NAME = true;
|
|
613
|
-
defaultIterator = function values() { return nativeIterator.call(this); };
|
|
614
|
-
}
|
|
615
|
-
|
|
616
|
-
// define iterator
|
|
617
|
-
if ((!IS_PURE || FORCED) && IterablePrototype[ITERATOR] !== defaultIterator) {
|
|
618
|
-
createNonEnumerableProperty(IterablePrototype, ITERATOR, defaultIterator);
|
|
619
|
-
}
|
|
620
|
-
Iterators[NAME] = defaultIterator;
|
|
621
|
-
|
|
622
|
-
// export additional methods
|
|
623
|
-
if (DEFAULT) {
|
|
624
|
-
methods = {
|
|
625
|
-
values: getIterationMethod(VALUES),
|
|
626
|
-
keys: IS_SET ? defaultIterator : getIterationMethod(KEYS),
|
|
627
|
-
entries: getIterationMethod(ENTRIES)
|
|
628
|
-
};
|
|
629
|
-
if (FORCED) for (KEY in methods) {
|
|
630
|
-
if (BUGGY_SAFARI_ITERATORS || INCORRECT_VALUES_NAME || !(KEY in IterablePrototype)) {
|
|
631
|
-
redefine(IterablePrototype, KEY, methods[KEY]);
|
|
632
|
-
}
|
|
633
|
-
} else $({ target: NAME, proto: true, forced: BUGGY_SAFARI_ITERATORS || INCORRECT_VALUES_NAME }, methods);
|
|
634
|
-
}
|
|
635
|
-
|
|
636
|
-
return methods;
|
|
637
|
-
};
|
|
638
|
-
|
|
639
|
-
|
|
640
|
-
/***/ }),
|
|
641
|
-
|
|
642
|
-
/***/ 19781:
|
|
643
|
-
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
644
|
-
|
|
645
|
-
var fails = __webpack_require__(47293);
|
|
646
|
-
|
|
647
|
-
// Detect IE8's incomplete defineProperty implementation
|
|
648
|
-
module.exports = !fails(function () {
|
|
649
|
-
// eslint-disable-next-line es/no-object-defineproperty -- required for testing
|
|
650
|
-
return Object.defineProperty({}, 1, { get: function () { return 7; } })[1] != 7;
|
|
651
|
-
});
|
|
652
|
-
|
|
653
|
-
|
|
654
|
-
/***/ }),
|
|
655
|
-
|
|
656
|
-
/***/ 80317:
|
|
657
|
-
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
658
|
-
|
|
659
|
-
var global = __webpack_require__(17854);
|
|
660
|
-
var isObject = __webpack_require__(70111);
|
|
661
|
-
|
|
662
|
-
var document = global.document;
|
|
663
|
-
// typeof document.createElement is 'object' in old IE
|
|
664
|
-
var EXISTS = isObject(document) && isObject(document.createElement);
|
|
665
|
-
|
|
666
|
-
module.exports = function (it) {
|
|
667
|
-
return EXISTS ? document.createElement(it) : {};
|
|
668
|
-
};
|
|
669
|
-
|
|
670
|
-
|
|
671
|
-
/***/ }),
|
|
672
|
-
|
|
673
|
-
/***/ 88113:
|
|
674
|
-
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
675
|
-
|
|
676
|
-
var getBuiltIn = __webpack_require__(35005);
|
|
677
|
-
|
|
678
|
-
module.exports = getBuiltIn('navigator', 'userAgent') || '';
|
|
679
|
-
|
|
680
|
-
|
|
681
|
-
/***/ }),
|
|
682
|
-
|
|
683
|
-
/***/ 7392:
|
|
684
|
-
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
685
|
-
|
|
686
|
-
var global = __webpack_require__(17854);
|
|
687
|
-
var userAgent = __webpack_require__(88113);
|
|
688
|
-
|
|
689
|
-
var process = global.process;
|
|
690
|
-
var versions = process && process.versions;
|
|
691
|
-
var v8 = versions && versions.v8;
|
|
692
|
-
var match, version;
|
|
693
|
-
|
|
694
|
-
if (v8) {
|
|
695
|
-
match = v8.split('.');
|
|
696
|
-
version = match[0] < 4 ? 1 : match[0] + match[1];
|
|
697
|
-
} else if (userAgent) {
|
|
698
|
-
match = userAgent.match(/Edge\/(\d+)/);
|
|
699
|
-
if (!match || match[1] >= 74) {
|
|
700
|
-
match = userAgent.match(/Chrome\/(\d+)/);
|
|
701
|
-
if (match) version = match[1];
|
|
702
|
-
}
|
|
703
|
-
}
|
|
704
|
-
|
|
705
|
-
module.exports = version && +version;
|
|
706
|
-
|
|
707
|
-
|
|
708
|
-
/***/ }),
|
|
709
|
-
|
|
710
|
-
/***/ 80748:
|
|
711
|
-
/***/ (function(module) {
|
|
712
|
-
|
|
713
|
-
// IE8- don't enum bug keys
|
|
714
|
-
module.exports = [
|
|
715
|
-
'constructor',
|
|
716
|
-
'hasOwnProperty',
|
|
717
|
-
'isPrototypeOf',
|
|
718
|
-
'propertyIsEnumerable',
|
|
719
|
-
'toLocaleString',
|
|
720
|
-
'toString',
|
|
721
|
-
'valueOf'
|
|
722
|
-
];
|
|
723
|
-
|
|
724
|
-
|
|
725
|
-
/***/ }),
|
|
726
|
-
|
|
727
|
-
/***/ 82109:
|
|
728
|
-
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
729
|
-
|
|
730
|
-
var global = __webpack_require__(17854);
|
|
731
|
-
var getOwnPropertyDescriptor = (__webpack_require__(31236).f);
|
|
732
|
-
var createNonEnumerableProperty = __webpack_require__(68880);
|
|
733
|
-
var redefine = __webpack_require__(31320);
|
|
734
|
-
var setGlobal = __webpack_require__(83505);
|
|
735
|
-
var copyConstructorProperties = __webpack_require__(99920);
|
|
736
|
-
var isForced = __webpack_require__(54705);
|
|
737
|
-
|
|
738
|
-
/*
|
|
739
|
-
options.target - name of the target object
|
|
740
|
-
options.global - target is the global object
|
|
741
|
-
options.stat - export as static methods of target
|
|
742
|
-
options.proto - export as prototype methods of target
|
|
743
|
-
options.real - real prototype method for the `pure` version
|
|
744
|
-
options.forced - export even if the native feature is available
|
|
745
|
-
options.bind - bind methods to the target, required for the `pure` version
|
|
746
|
-
options.wrap - wrap constructors to preventing global pollution, required for the `pure` version
|
|
747
|
-
options.unsafe - use the simple assignment of property instead of delete + defineProperty
|
|
748
|
-
options.sham - add a flag to not completely full polyfills
|
|
749
|
-
options.enumerable - export as enumerable property
|
|
750
|
-
options.noTargetGet - prevent calling a getter on target
|
|
751
|
-
*/
|
|
752
|
-
module.exports = function (options, source) {
|
|
753
|
-
var TARGET = options.target;
|
|
754
|
-
var GLOBAL = options.global;
|
|
755
|
-
var STATIC = options.stat;
|
|
756
|
-
var FORCED, target, key, targetProperty, sourceProperty, descriptor;
|
|
757
|
-
if (GLOBAL) {
|
|
758
|
-
target = global;
|
|
759
|
-
} else if (STATIC) {
|
|
760
|
-
target = global[TARGET] || setGlobal(TARGET, {});
|
|
761
|
-
} else {
|
|
762
|
-
target = (global[TARGET] || {}).prototype;
|
|
763
|
-
}
|
|
764
|
-
if (target) for (key in source) {
|
|
765
|
-
sourceProperty = source[key];
|
|
766
|
-
if (options.noTargetGet) {
|
|
767
|
-
descriptor = getOwnPropertyDescriptor(target, key);
|
|
768
|
-
targetProperty = descriptor && descriptor.value;
|
|
769
|
-
} else targetProperty = target[key];
|
|
770
|
-
FORCED = isForced(GLOBAL ? key : TARGET + (STATIC ? '.' : '#') + key, options.forced);
|
|
771
|
-
// contained in target
|
|
772
|
-
if (!FORCED && targetProperty !== undefined) {
|
|
773
|
-
if (typeof sourceProperty === typeof targetProperty) continue;
|
|
774
|
-
copyConstructorProperties(sourceProperty, targetProperty);
|
|
775
|
-
}
|
|
776
|
-
// add a flag to not completely full polyfills
|
|
777
|
-
if (options.sham || (targetProperty && targetProperty.sham)) {
|
|
778
|
-
createNonEnumerableProperty(sourceProperty, 'sham', true);
|
|
779
|
-
}
|
|
780
|
-
// extend global
|
|
781
|
-
redefine(target, key, sourceProperty, options);
|
|
782
|
-
}
|
|
783
|
-
};
|
|
784
|
-
|
|
785
|
-
|
|
786
|
-
/***/ }),
|
|
787
|
-
|
|
788
|
-
/***/ 47293:
|
|
789
|
-
/***/ (function(module) {
|
|
790
|
-
|
|
791
|
-
module.exports = function (exec) {
|
|
792
|
-
try {
|
|
793
|
-
return !!exec();
|
|
794
|
-
} catch (error) {
|
|
795
|
-
return true;
|
|
796
|
-
}
|
|
797
|
-
};
|
|
798
|
-
|
|
799
|
-
|
|
800
|
-
/***/ }),
|
|
801
|
-
|
|
802
|
-
/***/ 27007:
|
|
803
|
-
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
804
|
-
|
|
805
|
-
"use strict";
|
|
806
|
-
|
|
807
|
-
// TODO: Remove from `core-js@4` since it's moved to entry points
|
|
808
|
-
__webpack_require__(74916);
|
|
809
|
-
var redefine = __webpack_require__(31320);
|
|
810
|
-
var regexpExec = __webpack_require__(22261);
|
|
811
|
-
var fails = __webpack_require__(47293);
|
|
812
|
-
var wellKnownSymbol = __webpack_require__(5112);
|
|
813
|
-
var createNonEnumerableProperty = __webpack_require__(68880);
|
|
814
|
-
|
|
815
|
-
var SPECIES = wellKnownSymbol('species');
|
|
816
|
-
var RegExpPrototype = RegExp.prototype;
|
|
817
|
-
|
|
818
|
-
module.exports = function (KEY, exec, FORCED, SHAM) {
|
|
819
|
-
var SYMBOL = wellKnownSymbol(KEY);
|
|
820
|
-
|
|
821
|
-
var DELEGATES_TO_SYMBOL = !fails(function () {
|
|
822
|
-
// String methods call symbol-named RegEp methods
|
|
823
|
-
var O = {};
|
|
824
|
-
O[SYMBOL] = function () { return 7; };
|
|
825
|
-
return ''[KEY](O) != 7;
|
|
826
|
-
});
|
|
827
|
-
|
|
828
|
-
var DELEGATES_TO_EXEC = DELEGATES_TO_SYMBOL && !fails(function () {
|
|
829
|
-
// Symbol-named RegExp methods call .exec
|
|
830
|
-
var execCalled = false;
|
|
831
|
-
var re = /a/;
|
|
832
|
-
|
|
833
|
-
if (KEY === 'split') {
|
|
834
|
-
// We can't use real regex here since it causes deoptimization
|
|
835
|
-
// and serious performance degradation in V8
|
|
836
|
-
// https://github.com/zloirock/core-js/issues/306
|
|
837
|
-
re = {};
|
|
838
|
-
// RegExp[@@split] doesn't call the regex's exec method, but first creates
|
|
839
|
-
// a new one. We need to return the patched regex when creating the new one.
|
|
840
|
-
re.constructor = {};
|
|
841
|
-
re.constructor[SPECIES] = function () { return re; };
|
|
842
|
-
re.flags = '';
|
|
843
|
-
re[SYMBOL] = /./[SYMBOL];
|
|
844
|
-
}
|
|
845
|
-
|
|
846
|
-
re.exec = function () { execCalled = true; return null; };
|
|
847
|
-
|
|
848
|
-
re[SYMBOL]('');
|
|
849
|
-
return !execCalled;
|
|
850
|
-
});
|
|
851
|
-
|
|
852
|
-
if (
|
|
853
|
-
!DELEGATES_TO_SYMBOL ||
|
|
854
|
-
!DELEGATES_TO_EXEC ||
|
|
855
|
-
FORCED
|
|
856
|
-
) {
|
|
857
|
-
var nativeRegExpMethod = /./[SYMBOL];
|
|
858
|
-
var methods = exec(SYMBOL, ''[KEY], function (nativeMethod, regexp, str, arg2, forceStringMethod) {
|
|
859
|
-
var $exec = regexp.exec;
|
|
860
|
-
if ($exec === regexpExec || $exec === RegExpPrototype.exec) {
|
|
861
|
-
if (DELEGATES_TO_SYMBOL && !forceStringMethod) {
|
|
862
|
-
// The native String method already delegates to @@method (this
|
|
863
|
-
// polyfilled function), leasing to infinite recursion.
|
|
864
|
-
// We avoid it by directly calling the native @@method method.
|
|
865
|
-
return { done: true, value: nativeRegExpMethod.call(regexp, str, arg2) };
|
|
866
|
-
}
|
|
867
|
-
return { done: true, value: nativeMethod.call(str, regexp, arg2) };
|
|
868
|
-
}
|
|
869
|
-
return { done: false };
|
|
870
|
-
});
|
|
871
|
-
|
|
872
|
-
redefine(String.prototype, KEY, methods[0]);
|
|
873
|
-
redefine(RegExpPrototype, SYMBOL, methods[1]);
|
|
874
|
-
}
|
|
875
|
-
|
|
876
|
-
if (SHAM) createNonEnumerableProperty(RegExpPrototype[SYMBOL], 'sham', true);
|
|
877
|
-
};
|
|
878
|
-
|
|
879
|
-
|
|
880
|
-
/***/ }),
|
|
881
|
-
|
|
882
|
-
/***/ 49974:
|
|
883
|
-
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
884
|
-
|
|
885
|
-
var aFunction = __webpack_require__(13099);
|
|
886
|
-
|
|
887
|
-
// optional / simple context binding
|
|
888
|
-
module.exports = function (fn, that, length) {
|
|
889
|
-
aFunction(fn);
|
|
890
|
-
if (that === undefined) return fn;
|
|
891
|
-
switch (length) {
|
|
892
|
-
case 0: return function () {
|
|
893
|
-
return fn.call(that);
|
|
894
|
-
};
|
|
895
|
-
case 1: return function (a) {
|
|
896
|
-
return fn.call(that, a);
|
|
897
|
-
};
|
|
898
|
-
case 2: return function (a, b) {
|
|
899
|
-
return fn.call(that, a, b);
|
|
900
|
-
};
|
|
901
|
-
case 3: return function (a, b, c) {
|
|
902
|
-
return fn.call(that, a, b, c);
|
|
903
|
-
};
|
|
904
|
-
}
|
|
905
|
-
return function (/* ...args */) {
|
|
906
|
-
return fn.apply(that, arguments);
|
|
907
|
-
};
|
|
908
|
-
};
|
|
909
|
-
|
|
910
|
-
|
|
911
|
-
/***/ }),
|
|
912
|
-
|
|
913
|
-
/***/ 35005:
|
|
914
|
-
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
915
|
-
|
|
916
|
-
var path = __webpack_require__(40857);
|
|
917
|
-
var global = __webpack_require__(17854);
|
|
918
|
-
|
|
919
|
-
var aFunction = function (variable) {
|
|
920
|
-
return typeof variable == 'function' ? variable : undefined;
|
|
921
|
-
};
|
|
922
|
-
|
|
923
|
-
module.exports = function (namespace, method) {
|
|
924
|
-
return arguments.length < 2 ? aFunction(path[namespace]) || aFunction(global[namespace])
|
|
925
|
-
: path[namespace] && path[namespace][method] || global[namespace] && global[namespace][method];
|
|
926
|
-
};
|
|
927
|
-
|
|
928
|
-
|
|
929
|
-
/***/ }),
|
|
930
|
-
|
|
931
|
-
/***/ 71246:
|
|
932
|
-
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
933
|
-
|
|
934
|
-
var classof = __webpack_require__(70648);
|
|
935
|
-
var Iterators = __webpack_require__(97497);
|
|
936
|
-
var wellKnownSymbol = __webpack_require__(5112);
|
|
937
|
-
|
|
938
|
-
var ITERATOR = wellKnownSymbol('iterator');
|
|
939
|
-
|
|
940
|
-
module.exports = function (it) {
|
|
941
|
-
if (it != undefined) return it[ITERATOR]
|
|
942
|
-
|| it['@@iterator']
|
|
943
|
-
|| Iterators[classof(it)];
|
|
944
|
-
};
|
|
945
|
-
|
|
946
|
-
|
|
947
|
-
/***/ }),
|
|
948
|
-
|
|
949
|
-
/***/ 10647:
|
|
950
|
-
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
951
|
-
|
|
952
|
-
var toObject = __webpack_require__(47908);
|
|
953
|
-
|
|
954
|
-
var floor = Math.floor;
|
|
955
|
-
var replace = ''.replace;
|
|
956
|
-
var SUBSTITUTION_SYMBOLS = /\$([$&'`]|\d{1,2}|<[^>]*>)/g;
|
|
957
|
-
var SUBSTITUTION_SYMBOLS_NO_NAMED = /\$([$&'`]|\d{1,2})/g;
|
|
958
|
-
|
|
959
|
-
// `GetSubstitution` abstract operation
|
|
960
|
-
// https://tc39.es/ecma262/#sec-getsubstitution
|
|
961
|
-
module.exports = function (matched, str, position, captures, namedCaptures, replacement) {
|
|
962
|
-
var tailPos = position + matched.length;
|
|
963
|
-
var m = captures.length;
|
|
964
|
-
var symbols = SUBSTITUTION_SYMBOLS_NO_NAMED;
|
|
965
|
-
if (namedCaptures !== undefined) {
|
|
966
|
-
namedCaptures = toObject(namedCaptures);
|
|
967
|
-
symbols = SUBSTITUTION_SYMBOLS;
|
|
968
|
-
}
|
|
969
|
-
return replace.call(replacement, symbols, function (match, ch) {
|
|
970
|
-
var capture;
|
|
971
|
-
switch (ch.charAt(0)) {
|
|
972
|
-
case '$': return '$';
|
|
973
|
-
case '&': return matched;
|
|
974
|
-
case '`': return str.slice(0, position);
|
|
975
|
-
case "'": return str.slice(tailPos);
|
|
976
|
-
case '<':
|
|
977
|
-
capture = namedCaptures[ch.slice(1, -1)];
|
|
978
|
-
break;
|
|
979
|
-
default: // \d\d?
|
|
980
|
-
var n = +ch;
|
|
981
|
-
if (n === 0) return match;
|
|
982
|
-
if (n > m) {
|
|
983
|
-
var f = floor(n / 10);
|
|
984
|
-
if (f === 0) return match;
|
|
985
|
-
if (f <= m) return captures[f - 1] === undefined ? ch.charAt(1) : captures[f - 1] + ch.charAt(1);
|
|
986
|
-
return match;
|
|
987
|
-
}
|
|
988
|
-
capture = captures[n - 1];
|
|
989
|
-
}
|
|
990
|
-
return capture === undefined ? '' : capture;
|
|
991
|
-
});
|
|
992
|
-
};
|
|
993
|
-
|
|
994
|
-
|
|
995
|
-
/***/ }),
|
|
996
|
-
|
|
997
|
-
/***/ 17854:
|
|
998
|
-
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
999
|
-
|
|
1000
|
-
var check = function (it) {
|
|
1001
|
-
return it && it.Math == Math && it;
|
|
1002
|
-
};
|
|
1003
|
-
|
|
1004
|
-
// https://github.com/zloirock/core-js/issues/86#issuecomment-115759028
|
|
1005
|
-
module.exports =
|
|
1006
|
-
// eslint-disable-next-line es/no-global-this -- safe
|
|
1007
|
-
check(typeof globalThis == 'object' && globalThis) ||
|
|
1008
|
-
check(typeof window == 'object' && window) ||
|
|
1009
|
-
// eslint-disable-next-line no-restricted-globals -- safe
|
|
1010
|
-
check(typeof self == 'object' && self) ||
|
|
1011
|
-
check(typeof __webpack_require__.g == 'object' && __webpack_require__.g) ||
|
|
1012
|
-
// eslint-disable-next-line no-new-func -- fallback
|
|
1013
|
-
(function () { return this; })() || Function('return this')();
|
|
1014
|
-
|
|
1015
|
-
|
|
1016
|
-
/***/ }),
|
|
1017
|
-
|
|
1018
|
-
/***/ 86656:
|
|
1019
|
-
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
1020
|
-
|
|
1021
|
-
var toObject = __webpack_require__(47908);
|
|
1022
|
-
|
|
1023
|
-
var hasOwnProperty = {}.hasOwnProperty;
|
|
1024
|
-
|
|
1025
|
-
module.exports = Object.hasOwn || function hasOwn(it, key) {
|
|
1026
|
-
return hasOwnProperty.call(toObject(it), key);
|
|
1027
|
-
};
|
|
1028
|
-
|
|
1029
|
-
|
|
1030
|
-
/***/ }),
|
|
1031
|
-
|
|
1032
|
-
/***/ 3501:
|
|
1033
|
-
/***/ (function(module) {
|
|
1034
|
-
|
|
1035
|
-
module.exports = {};
|
|
1036
|
-
|
|
1037
|
-
|
|
1038
|
-
/***/ }),
|
|
1039
|
-
|
|
1040
|
-
/***/ 60490:
|
|
1041
|
-
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
1042
|
-
|
|
1043
|
-
var getBuiltIn = __webpack_require__(35005);
|
|
1044
|
-
|
|
1045
|
-
module.exports = getBuiltIn('document', 'documentElement');
|
|
1046
|
-
|
|
1047
|
-
|
|
1048
|
-
/***/ }),
|
|
1049
|
-
|
|
1050
|
-
/***/ 64664:
|
|
1051
|
-
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
1052
|
-
|
|
1053
|
-
var DESCRIPTORS = __webpack_require__(19781);
|
|
1054
|
-
var fails = __webpack_require__(47293);
|
|
1055
|
-
var createElement = __webpack_require__(80317);
|
|
1056
|
-
|
|
1057
|
-
// Thank's IE8 for his funny defineProperty
|
|
1058
|
-
module.exports = !DESCRIPTORS && !fails(function () {
|
|
1059
|
-
// eslint-disable-next-line es/no-object-defineproperty -- requied for testing
|
|
1060
|
-
return Object.defineProperty(createElement('div'), 'a', {
|
|
1061
|
-
get: function () { return 7; }
|
|
1062
|
-
}).a != 7;
|
|
1063
|
-
});
|
|
1064
|
-
|
|
1065
|
-
|
|
1066
|
-
/***/ }),
|
|
1067
|
-
|
|
1068
|
-
/***/ 68361:
|
|
1069
|
-
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
1070
|
-
|
|
1071
|
-
var fails = __webpack_require__(47293);
|
|
1072
|
-
var classof = __webpack_require__(84326);
|
|
1073
|
-
|
|
1074
|
-
var split = ''.split;
|
|
1075
|
-
|
|
1076
|
-
// fallback for non-array-like ES3 and non-enumerable old V8 strings
|
|
1077
|
-
module.exports = fails(function () {
|
|
1078
|
-
// throws an error in rhino, see https://github.com/mozilla/rhino/issues/346
|
|
1079
|
-
// eslint-disable-next-line no-prototype-builtins -- safe
|
|
1080
|
-
return !Object('z').propertyIsEnumerable(0);
|
|
1081
|
-
}) ? function (it) {
|
|
1082
|
-
return classof(it) == 'String' ? split.call(it, '') : Object(it);
|
|
1083
|
-
} : Object;
|
|
1084
|
-
|
|
1085
|
-
|
|
1086
|
-
/***/ }),
|
|
1087
|
-
|
|
1088
|
-
/***/ 42788:
|
|
1089
|
-
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
1090
|
-
|
|
1091
|
-
var store = __webpack_require__(5465);
|
|
1092
|
-
|
|
1093
|
-
var functionToString = Function.toString;
|
|
1094
|
-
|
|
1095
|
-
// this helper broken in `core-js@3.4.1-3.4.4`, so we can't use `shared` helper
|
|
1096
|
-
if (typeof store.inspectSource != 'function') {
|
|
1097
|
-
store.inspectSource = function (it) {
|
|
1098
|
-
return functionToString.call(it);
|
|
1099
|
-
};
|
|
1100
|
-
}
|
|
1101
|
-
|
|
1102
|
-
module.exports = store.inspectSource;
|
|
1103
|
-
|
|
1104
|
-
|
|
1105
|
-
/***/ }),
|
|
1106
|
-
|
|
1107
|
-
/***/ 29909:
|
|
1108
|
-
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
1109
|
-
|
|
1110
|
-
var NATIVE_WEAK_MAP = __webpack_require__(68536);
|
|
1111
|
-
var global = __webpack_require__(17854);
|
|
1112
|
-
var isObject = __webpack_require__(70111);
|
|
1113
|
-
var createNonEnumerableProperty = __webpack_require__(68880);
|
|
1114
|
-
var objectHas = __webpack_require__(86656);
|
|
1115
|
-
var shared = __webpack_require__(5465);
|
|
1116
|
-
var sharedKey = __webpack_require__(6200);
|
|
1117
|
-
var hiddenKeys = __webpack_require__(3501);
|
|
1118
|
-
|
|
1119
|
-
var OBJECT_ALREADY_INITIALIZED = 'Object already initialized';
|
|
1120
|
-
var WeakMap = global.WeakMap;
|
|
1121
|
-
var set, get, has;
|
|
1122
|
-
|
|
1123
|
-
var enforce = function (it) {
|
|
1124
|
-
return has(it) ? get(it) : set(it, {});
|
|
1125
|
-
};
|
|
1126
|
-
|
|
1127
|
-
var getterFor = function (TYPE) {
|
|
1128
|
-
return function (it) {
|
|
1129
|
-
var state;
|
|
1130
|
-
if (!isObject(it) || (state = get(it)).type !== TYPE) {
|
|
1131
|
-
throw TypeError('Incompatible receiver, ' + TYPE + ' required');
|
|
1132
|
-
} return state;
|
|
1133
|
-
};
|
|
1134
|
-
};
|
|
1135
|
-
|
|
1136
|
-
if (NATIVE_WEAK_MAP || shared.state) {
|
|
1137
|
-
var store = shared.state || (shared.state = new WeakMap());
|
|
1138
|
-
var wmget = store.get;
|
|
1139
|
-
var wmhas = store.has;
|
|
1140
|
-
var wmset = store.set;
|
|
1141
|
-
set = function (it, metadata) {
|
|
1142
|
-
if (wmhas.call(store, it)) throw new TypeError(OBJECT_ALREADY_INITIALIZED);
|
|
1143
|
-
metadata.facade = it;
|
|
1144
|
-
wmset.call(store, it, metadata);
|
|
1145
|
-
return metadata;
|
|
1146
|
-
};
|
|
1147
|
-
get = function (it) {
|
|
1148
|
-
return wmget.call(store, it) || {};
|
|
1149
|
-
};
|
|
1150
|
-
has = function (it) {
|
|
1151
|
-
return wmhas.call(store, it);
|
|
1152
|
-
};
|
|
1153
|
-
} else {
|
|
1154
|
-
var STATE = sharedKey('state');
|
|
1155
|
-
hiddenKeys[STATE] = true;
|
|
1156
|
-
set = function (it, metadata) {
|
|
1157
|
-
if (objectHas(it, STATE)) throw new TypeError(OBJECT_ALREADY_INITIALIZED);
|
|
1158
|
-
metadata.facade = it;
|
|
1159
|
-
createNonEnumerableProperty(it, STATE, metadata);
|
|
1160
|
-
return metadata;
|
|
1161
|
-
};
|
|
1162
|
-
get = function (it) {
|
|
1163
|
-
return objectHas(it, STATE) ? it[STATE] : {};
|
|
1164
|
-
};
|
|
1165
|
-
has = function (it) {
|
|
1166
|
-
return objectHas(it, STATE);
|
|
1167
|
-
};
|
|
1168
|
-
}
|
|
1169
|
-
|
|
1170
|
-
module.exports = {
|
|
1171
|
-
set: set,
|
|
1172
|
-
get: get,
|
|
1173
|
-
has: has,
|
|
1174
|
-
enforce: enforce,
|
|
1175
|
-
getterFor: getterFor
|
|
1176
|
-
};
|
|
1177
|
-
|
|
1178
|
-
|
|
1179
|
-
/***/ }),
|
|
1180
|
-
|
|
1181
|
-
/***/ 97659:
|
|
1182
|
-
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
1183
|
-
|
|
1184
|
-
var wellKnownSymbol = __webpack_require__(5112);
|
|
1185
|
-
var Iterators = __webpack_require__(97497);
|
|
1186
|
-
|
|
1187
|
-
var ITERATOR = wellKnownSymbol('iterator');
|
|
1188
|
-
var ArrayPrototype = Array.prototype;
|
|
1189
|
-
|
|
1190
|
-
// check on default Array iterator
|
|
1191
|
-
module.exports = function (it) {
|
|
1192
|
-
return it !== undefined && (Iterators.Array === it || ArrayPrototype[ITERATOR] === it);
|
|
1193
|
-
};
|
|
1194
|
-
|
|
1195
|
-
|
|
1196
|
-
/***/ }),
|
|
1197
|
-
|
|
1198
|
-
/***/ 43157:
|
|
1199
|
-
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
1200
|
-
|
|
1201
|
-
var classof = __webpack_require__(84326);
|
|
1202
|
-
|
|
1203
|
-
// `IsArray` abstract operation
|
|
1204
|
-
// https://tc39.es/ecma262/#sec-isarray
|
|
1205
|
-
// eslint-disable-next-line es/no-array-isarray -- safe
|
|
1206
|
-
module.exports = Array.isArray || function isArray(arg) {
|
|
1207
|
-
return classof(arg) == 'Array';
|
|
1208
|
-
};
|
|
1209
|
-
|
|
1210
|
-
|
|
1211
|
-
/***/ }),
|
|
1212
|
-
|
|
1213
|
-
/***/ 54705:
|
|
1214
|
-
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
1215
|
-
|
|
1216
|
-
var fails = __webpack_require__(47293);
|
|
1217
|
-
|
|
1218
|
-
var replacement = /#|\.prototype\./;
|
|
1219
|
-
|
|
1220
|
-
var isForced = function (feature, detection) {
|
|
1221
|
-
var value = data[normalize(feature)];
|
|
1222
|
-
return value == POLYFILL ? true
|
|
1223
|
-
: value == NATIVE ? false
|
|
1224
|
-
: typeof detection == 'function' ? fails(detection)
|
|
1225
|
-
: !!detection;
|
|
1226
|
-
};
|
|
1227
|
-
|
|
1228
|
-
var normalize = isForced.normalize = function (string) {
|
|
1229
|
-
return String(string).replace(replacement, '.').toLowerCase();
|
|
1230
|
-
};
|
|
1231
|
-
|
|
1232
|
-
var data = isForced.data = {};
|
|
1233
|
-
var NATIVE = isForced.NATIVE = 'N';
|
|
1234
|
-
var POLYFILL = isForced.POLYFILL = 'P';
|
|
1235
|
-
|
|
1236
|
-
module.exports = isForced;
|
|
1237
|
-
|
|
1238
|
-
|
|
1239
|
-
/***/ }),
|
|
1240
|
-
|
|
1241
|
-
/***/ 70111:
|
|
1242
|
-
/***/ (function(module) {
|
|
1243
|
-
|
|
1244
|
-
module.exports = function (it) {
|
|
1245
|
-
return typeof it === 'object' ? it !== null : typeof it === 'function';
|
|
1246
|
-
};
|
|
1247
|
-
|
|
1248
|
-
|
|
1249
|
-
/***/ }),
|
|
1250
|
-
|
|
1251
|
-
/***/ 31913:
|
|
1252
|
-
/***/ (function(module) {
|
|
1253
|
-
|
|
1254
|
-
module.exports = false;
|
|
1255
|
-
|
|
1256
|
-
|
|
1257
|
-
/***/ }),
|
|
1258
|
-
|
|
1259
|
-
/***/ 47850:
|
|
1260
|
-
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
1261
|
-
|
|
1262
|
-
var isObject = __webpack_require__(70111);
|
|
1263
|
-
var classof = __webpack_require__(84326);
|
|
1264
|
-
var wellKnownSymbol = __webpack_require__(5112);
|
|
1265
|
-
|
|
1266
|
-
var MATCH = wellKnownSymbol('match');
|
|
1267
|
-
|
|
1268
|
-
// `IsRegExp` abstract operation
|
|
1269
|
-
// https://tc39.es/ecma262/#sec-isregexp
|
|
1270
|
-
module.exports = function (it) {
|
|
1271
|
-
var isRegExp;
|
|
1272
|
-
return isObject(it) && ((isRegExp = it[MATCH]) !== undefined ? !!isRegExp : classof(it) == 'RegExp');
|
|
1273
|
-
};
|
|
1274
|
-
|
|
1275
|
-
|
|
1276
|
-
/***/ }),
|
|
1277
|
-
|
|
1278
|
-
/***/ 99212:
|
|
1279
|
-
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
1280
|
-
|
|
1281
|
-
var anObject = __webpack_require__(19670);
|
|
1282
|
-
|
|
1283
|
-
module.exports = function (iterator) {
|
|
1284
|
-
var returnMethod = iterator['return'];
|
|
1285
|
-
if (returnMethod !== undefined) {
|
|
1286
|
-
return anObject(returnMethod.call(iterator)).value;
|
|
1287
|
-
}
|
|
1288
|
-
};
|
|
1289
|
-
|
|
1290
|
-
|
|
1291
|
-
/***/ }),
|
|
1292
|
-
|
|
1293
|
-
/***/ 13383:
|
|
1294
|
-
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
1295
|
-
|
|
1296
|
-
"use strict";
|
|
1297
|
-
|
|
1298
|
-
var fails = __webpack_require__(47293);
|
|
1299
|
-
var getPrototypeOf = __webpack_require__(79518);
|
|
1300
|
-
var createNonEnumerableProperty = __webpack_require__(68880);
|
|
1301
|
-
var has = __webpack_require__(86656);
|
|
1302
|
-
var wellKnownSymbol = __webpack_require__(5112);
|
|
1303
|
-
var IS_PURE = __webpack_require__(31913);
|
|
1304
|
-
|
|
1305
|
-
var ITERATOR = wellKnownSymbol('iterator');
|
|
1306
|
-
var BUGGY_SAFARI_ITERATORS = false;
|
|
1307
|
-
|
|
1308
|
-
var returnThis = function () { return this; };
|
|
1309
|
-
|
|
1310
|
-
// `%IteratorPrototype%` object
|
|
1311
|
-
// https://tc39.es/ecma262/#sec-%iteratorprototype%-object
|
|
1312
|
-
var IteratorPrototype, PrototypeOfArrayIteratorPrototype, arrayIterator;
|
|
1313
|
-
|
|
1314
|
-
/* eslint-disable es/no-array-prototype-keys -- safe */
|
|
1315
|
-
if ([].keys) {
|
|
1316
|
-
arrayIterator = [].keys();
|
|
1317
|
-
// Safari 8 has buggy iterators w/o `next`
|
|
1318
|
-
if (!('next' in arrayIterator)) BUGGY_SAFARI_ITERATORS = true;
|
|
1319
|
-
else {
|
|
1320
|
-
PrototypeOfArrayIteratorPrototype = getPrototypeOf(getPrototypeOf(arrayIterator));
|
|
1321
|
-
if (PrototypeOfArrayIteratorPrototype !== Object.prototype) IteratorPrototype = PrototypeOfArrayIteratorPrototype;
|
|
1322
|
-
}
|
|
1323
|
-
}
|
|
1324
|
-
|
|
1325
|
-
var NEW_ITERATOR_PROTOTYPE = IteratorPrototype == undefined || fails(function () {
|
|
1326
|
-
var test = {};
|
|
1327
|
-
// FF44- legacy iterators case
|
|
1328
|
-
return IteratorPrototype[ITERATOR].call(test) !== test;
|
|
1329
|
-
});
|
|
1330
|
-
|
|
1331
|
-
if (NEW_ITERATOR_PROTOTYPE) IteratorPrototype = {};
|
|
1332
|
-
|
|
1333
|
-
// `%IteratorPrototype%[@@iterator]()` method
|
|
1334
|
-
// https://tc39.es/ecma262/#sec-%iteratorprototype%-@@iterator
|
|
1335
|
-
if ((!IS_PURE || NEW_ITERATOR_PROTOTYPE) && !has(IteratorPrototype, ITERATOR)) {
|
|
1336
|
-
createNonEnumerableProperty(IteratorPrototype, ITERATOR, returnThis);
|
|
1337
|
-
}
|
|
1338
|
-
|
|
1339
|
-
module.exports = {
|
|
1340
|
-
IteratorPrototype: IteratorPrototype,
|
|
1341
|
-
BUGGY_SAFARI_ITERATORS: BUGGY_SAFARI_ITERATORS
|
|
1342
|
-
};
|
|
1343
|
-
|
|
1344
|
-
|
|
1345
|
-
/***/ }),
|
|
1346
|
-
|
|
1347
|
-
/***/ 97497:
|
|
1348
|
-
/***/ (function(module) {
|
|
1349
|
-
|
|
1350
|
-
module.exports = {};
|
|
1351
|
-
|
|
1352
|
-
|
|
1353
|
-
/***/ }),
|
|
1354
|
-
|
|
1355
|
-
/***/ 30133:
|
|
1356
|
-
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
1357
|
-
|
|
1358
|
-
/* eslint-disable es/no-symbol -- required for testing */
|
|
1359
|
-
var V8_VERSION = __webpack_require__(7392);
|
|
1360
|
-
var fails = __webpack_require__(47293);
|
|
1361
|
-
|
|
1362
|
-
// eslint-disable-next-line es/no-object-getownpropertysymbols -- required for testing
|
|
1363
|
-
module.exports = !!Object.getOwnPropertySymbols && !fails(function () {
|
|
1364
|
-
var symbol = Symbol();
|
|
1365
|
-
// Chrome 38 Symbol has incorrect toString conversion
|
|
1366
|
-
// `get-own-property-symbols` polyfill symbols converted to object are not Symbol instances
|
|
1367
|
-
return !String(symbol) || !(Object(symbol) instanceof Symbol) ||
|
|
1368
|
-
// Chrome 38-40 symbols are not inherited from DOM collections prototypes to instances
|
|
1369
|
-
!Symbol.sham && V8_VERSION && V8_VERSION < 41;
|
|
1370
|
-
});
|
|
1371
|
-
|
|
1372
|
-
|
|
1373
|
-
/***/ }),
|
|
1374
|
-
|
|
1375
|
-
/***/ 68536:
|
|
1376
|
-
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
1377
|
-
|
|
1378
|
-
var global = __webpack_require__(17854);
|
|
1379
|
-
var inspectSource = __webpack_require__(42788);
|
|
1380
|
-
|
|
1381
|
-
var WeakMap = global.WeakMap;
|
|
1382
|
-
|
|
1383
|
-
module.exports = typeof WeakMap === 'function' && /native code/.test(inspectSource(WeakMap));
|
|
1384
|
-
|
|
1385
|
-
|
|
1386
|
-
/***/ }),
|
|
1387
|
-
|
|
1388
|
-
/***/ 70030:
|
|
1389
|
-
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
1390
|
-
|
|
1391
|
-
var anObject = __webpack_require__(19670);
|
|
1392
|
-
var defineProperties = __webpack_require__(36048);
|
|
1393
|
-
var enumBugKeys = __webpack_require__(80748);
|
|
1394
|
-
var hiddenKeys = __webpack_require__(3501);
|
|
1395
|
-
var html = __webpack_require__(60490);
|
|
1396
|
-
var documentCreateElement = __webpack_require__(80317);
|
|
1397
|
-
var sharedKey = __webpack_require__(6200);
|
|
1398
|
-
|
|
1399
|
-
var GT = '>';
|
|
1400
|
-
var LT = '<';
|
|
1401
|
-
var PROTOTYPE = 'prototype';
|
|
1402
|
-
var SCRIPT = 'script';
|
|
1403
|
-
var IE_PROTO = sharedKey('IE_PROTO');
|
|
1404
|
-
|
|
1405
|
-
var EmptyConstructor = function () { /* empty */ };
|
|
1406
|
-
|
|
1407
|
-
var scriptTag = function (content) {
|
|
1408
|
-
return LT + SCRIPT + GT + content + LT + '/' + SCRIPT + GT;
|
|
1409
|
-
};
|
|
1410
|
-
|
|
1411
|
-
// Create object with fake `null` prototype: use ActiveX Object with cleared prototype
|
|
1412
|
-
var NullProtoObjectViaActiveX = function (activeXDocument) {
|
|
1413
|
-
activeXDocument.write(scriptTag(''));
|
|
1414
|
-
activeXDocument.close();
|
|
1415
|
-
var temp = activeXDocument.parentWindow.Object;
|
|
1416
|
-
activeXDocument = null; // avoid memory leak
|
|
1417
|
-
return temp;
|
|
1418
|
-
};
|
|
1419
|
-
|
|
1420
|
-
// Create object with fake `null` prototype: use iframe Object with cleared prototype
|
|
1421
|
-
var NullProtoObjectViaIFrame = function () {
|
|
1422
|
-
// Thrash, waste and sodomy: IE GC bug
|
|
1423
|
-
var iframe = documentCreateElement('iframe');
|
|
1424
|
-
var JS = 'java' + SCRIPT + ':';
|
|
1425
|
-
var iframeDocument;
|
|
1426
|
-
iframe.style.display = 'none';
|
|
1427
|
-
html.appendChild(iframe);
|
|
1428
|
-
// https://github.com/zloirock/core-js/issues/475
|
|
1429
|
-
iframe.src = String(JS);
|
|
1430
|
-
iframeDocument = iframe.contentWindow.document;
|
|
1431
|
-
iframeDocument.open();
|
|
1432
|
-
iframeDocument.write(scriptTag('document.F=Object'));
|
|
1433
|
-
iframeDocument.close();
|
|
1434
|
-
return iframeDocument.F;
|
|
1435
|
-
};
|
|
1436
|
-
|
|
1437
|
-
// Check for document.domain and active x support
|
|
1438
|
-
// No need to use active x approach when document.domain is not set
|
|
1439
|
-
// see https://github.com/es-shims/es5-shim/issues/150
|
|
1440
|
-
// variation of https://github.com/kitcambridge/es5-shim/commit/4f738ac066346
|
|
1441
|
-
// avoid IE GC bug
|
|
1442
|
-
var activeXDocument;
|
|
1443
|
-
var NullProtoObject = function () {
|
|
1444
|
-
try {
|
|
1445
|
-
/* global ActiveXObject -- old IE */
|
|
1446
|
-
activeXDocument = document.domain && new ActiveXObject('htmlfile');
|
|
1447
|
-
} catch (error) { /* ignore */ }
|
|
1448
|
-
NullProtoObject = activeXDocument ? NullProtoObjectViaActiveX(activeXDocument) : NullProtoObjectViaIFrame();
|
|
1449
|
-
var length = enumBugKeys.length;
|
|
1450
|
-
while (length--) delete NullProtoObject[PROTOTYPE][enumBugKeys[length]];
|
|
1451
|
-
return NullProtoObject();
|
|
1452
|
-
};
|
|
1453
|
-
|
|
1454
|
-
hiddenKeys[IE_PROTO] = true;
|
|
1455
|
-
|
|
1456
|
-
// `Object.create` method
|
|
1457
|
-
// https://tc39.es/ecma262/#sec-object.create
|
|
1458
|
-
module.exports = Object.create || function create(O, Properties) {
|
|
1459
|
-
var result;
|
|
1460
|
-
if (O !== null) {
|
|
1461
|
-
EmptyConstructor[PROTOTYPE] = anObject(O);
|
|
1462
|
-
result = new EmptyConstructor();
|
|
1463
|
-
EmptyConstructor[PROTOTYPE] = null;
|
|
1464
|
-
// add "__proto__" for Object.getPrototypeOf polyfill
|
|
1465
|
-
result[IE_PROTO] = O;
|
|
1466
|
-
} else result = NullProtoObject();
|
|
1467
|
-
return Properties === undefined ? result : defineProperties(result, Properties);
|
|
1468
|
-
};
|
|
1469
|
-
|
|
1470
|
-
|
|
1471
|
-
/***/ }),
|
|
1472
|
-
|
|
1473
|
-
/***/ 36048:
|
|
1474
|
-
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
1475
|
-
|
|
1476
|
-
var DESCRIPTORS = __webpack_require__(19781);
|
|
1477
|
-
var definePropertyModule = __webpack_require__(3070);
|
|
1478
|
-
var anObject = __webpack_require__(19670);
|
|
1479
|
-
var objectKeys = __webpack_require__(81956);
|
|
1480
|
-
|
|
1481
|
-
// `Object.defineProperties` method
|
|
1482
|
-
// https://tc39.es/ecma262/#sec-object.defineproperties
|
|
1483
|
-
// eslint-disable-next-line es/no-object-defineproperties -- safe
|
|
1484
|
-
module.exports = DESCRIPTORS ? Object.defineProperties : function defineProperties(O, Properties) {
|
|
1485
|
-
anObject(O);
|
|
1486
|
-
var keys = objectKeys(Properties);
|
|
1487
|
-
var length = keys.length;
|
|
1488
|
-
var index = 0;
|
|
1489
|
-
var key;
|
|
1490
|
-
while (length > index) definePropertyModule.f(O, key = keys[index++], Properties[key]);
|
|
1491
|
-
return O;
|
|
1492
|
-
};
|
|
1493
|
-
|
|
1494
|
-
|
|
1495
|
-
/***/ }),
|
|
1496
|
-
|
|
1497
|
-
/***/ 3070:
|
|
1498
|
-
/***/ (function(__unused_webpack_module, exports, __webpack_require__) {
|
|
1499
|
-
|
|
1500
|
-
var DESCRIPTORS = __webpack_require__(19781);
|
|
1501
|
-
var IE8_DOM_DEFINE = __webpack_require__(64664);
|
|
1502
|
-
var anObject = __webpack_require__(19670);
|
|
1503
|
-
var toPrimitive = __webpack_require__(57593);
|
|
1504
|
-
|
|
1505
|
-
// eslint-disable-next-line es/no-object-defineproperty -- safe
|
|
1506
|
-
var $defineProperty = Object.defineProperty;
|
|
1507
|
-
|
|
1508
|
-
// `Object.defineProperty` method
|
|
1509
|
-
// https://tc39.es/ecma262/#sec-object.defineproperty
|
|
1510
|
-
exports.f = DESCRIPTORS ? $defineProperty : function defineProperty(O, P, Attributes) {
|
|
1511
|
-
anObject(O);
|
|
1512
|
-
P = toPrimitive(P, true);
|
|
1513
|
-
anObject(Attributes);
|
|
1514
|
-
if (IE8_DOM_DEFINE) try {
|
|
1515
|
-
return $defineProperty(O, P, Attributes);
|
|
1516
|
-
} catch (error) { /* empty */ }
|
|
1517
|
-
if ('get' in Attributes || 'set' in Attributes) throw TypeError('Accessors not supported');
|
|
1518
|
-
if ('value' in Attributes) O[P] = Attributes.value;
|
|
1519
|
-
return O;
|
|
1520
|
-
};
|
|
1521
|
-
|
|
1522
|
-
|
|
1523
|
-
/***/ }),
|
|
1524
|
-
|
|
1525
|
-
/***/ 31236:
|
|
1526
|
-
/***/ (function(__unused_webpack_module, exports, __webpack_require__) {
|
|
1527
|
-
|
|
1528
|
-
var DESCRIPTORS = __webpack_require__(19781);
|
|
1529
|
-
var propertyIsEnumerableModule = __webpack_require__(55296);
|
|
1530
|
-
var createPropertyDescriptor = __webpack_require__(79114);
|
|
1531
|
-
var toIndexedObject = __webpack_require__(45656);
|
|
1532
|
-
var toPrimitive = __webpack_require__(57593);
|
|
1533
|
-
var has = __webpack_require__(86656);
|
|
1534
|
-
var IE8_DOM_DEFINE = __webpack_require__(64664);
|
|
1535
|
-
|
|
1536
|
-
// eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
|
|
1537
|
-
var $getOwnPropertyDescriptor = Object.getOwnPropertyDescriptor;
|
|
1538
|
-
|
|
1539
|
-
// `Object.getOwnPropertyDescriptor` method
|
|
1540
|
-
// https://tc39.es/ecma262/#sec-object.getownpropertydescriptor
|
|
1541
|
-
exports.f = DESCRIPTORS ? $getOwnPropertyDescriptor : function getOwnPropertyDescriptor(O, P) {
|
|
1542
|
-
O = toIndexedObject(O);
|
|
1543
|
-
P = toPrimitive(P, true);
|
|
1544
|
-
if (IE8_DOM_DEFINE) try {
|
|
1545
|
-
return $getOwnPropertyDescriptor(O, P);
|
|
1546
|
-
} catch (error) { /* empty */ }
|
|
1547
|
-
if (has(O, P)) return createPropertyDescriptor(!propertyIsEnumerableModule.f.call(O, P), O[P]);
|
|
1548
|
-
};
|
|
1549
|
-
|
|
1550
|
-
|
|
1551
|
-
/***/ }),
|
|
1552
|
-
|
|
1553
|
-
/***/ 8006:
|
|
1554
|
-
/***/ (function(__unused_webpack_module, exports, __webpack_require__) {
|
|
1555
|
-
|
|
1556
|
-
var internalObjectKeys = __webpack_require__(16324);
|
|
1557
|
-
var enumBugKeys = __webpack_require__(80748);
|
|
1558
|
-
|
|
1559
|
-
var hiddenKeys = enumBugKeys.concat('length', 'prototype');
|
|
1560
|
-
|
|
1561
|
-
// `Object.getOwnPropertyNames` method
|
|
1562
|
-
// https://tc39.es/ecma262/#sec-object.getownpropertynames
|
|
1563
|
-
// eslint-disable-next-line es/no-object-getownpropertynames -- safe
|
|
1564
|
-
exports.f = Object.getOwnPropertyNames || function getOwnPropertyNames(O) {
|
|
1565
|
-
return internalObjectKeys(O, hiddenKeys);
|
|
1566
|
-
};
|
|
1567
|
-
|
|
1568
|
-
|
|
1569
|
-
/***/ }),
|
|
1570
|
-
|
|
1571
|
-
/***/ 25181:
|
|
1572
|
-
/***/ (function(__unused_webpack_module, exports) {
|
|
1573
|
-
|
|
1574
|
-
// eslint-disable-next-line es/no-object-getownpropertysymbols -- safe
|
|
1575
|
-
exports.f = Object.getOwnPropertySymbols;
|
|
1576
|
-
|
|
1577
|
-
|
|
1578
|
-
/***/ }),
|
|
1579
|
-
|
|
1580
|
-
/***/ 79518:
|
|
1581
|
-
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
1582
|
-
|
|
1583
|
-
var has = __webpack_require__(86656);
|
|
1584
|
-
var toObject = __webpack_require__(47908);
|
|
1585
|
-
var sharedKey = __webpack_require__(6200);
|
|
1586
|
-
var CORRECT_PROTOTYPE_GETTER = __webpack_require__(49920);
|
|
1587
|
-
|
|
1588
|
-
var IE_PROTO = sharedKey('IE_PROTO');
|
|
1589
|
-
var ObjectPrototype = Object.prototype;
|
|
1590
|
-
|
|
1591
|
-
// `Object.getPrototypeOf` method
|
|
1592
|
-
// https://tc39.es/ecma262/#sec-object.getprototypeof
|
|
1593
|
-
// eslint-disable-next-line es/no-object-getprototypeof -- safe
|
|
1594
|
-
module.exports = CORRECT_PROTOTYPE_GETTER ? Object.getPrototypeOf : function (O) {
|
|
1595
|
-
O = toObject(O);
|
|
1596
|
-
if (has(O, IE_PROTO)) return O[IE_PROTO];
|
|
1597
|
-
if (typeof O.constructor == 'function' && O instanceof O.constructor) {
|
|
1598
|
-
return O.constructor.prototype;
|
|
1599
|
-
} return O instanceof Object ? ObjectPrototype : null;
|
|
1600
|
-
};
|
|
1601
|
-
|
|
1602
|
-
|
|
1603
|
-
/***/ }),
|
|
1604
|
-
|
|
1605
|
-
/***/ 16324:
|
|
1606
|
-
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
1607
|
-
|
|
1608
|
-
var has = __webpack_require__(86656);
|
|
1609
|
-
var toIndexedObject = __webpack_require__(45656);
|
|
1610
|
-
var indexOf = (__webpack_require__(41318).indexOf);
|
|
1611
|
-
var hiddenKeys = __webpack_require__(3501);
|
|
1612
|
-
|
|
1613
|
-
module.exports = function (object, names) {
|
|
1614
|
-
var O = toIndexedObject(object);
|
|
1615
|
-
var i = 0;
|
|
1616
|
-
var result = [];
|
|
1617
|
-
var key;
|
|
1618
|
-
for (key in O) !has(hiddenKeys, key) && has(O, key) && result.push(key);
|
|
1619
|
-
// Don't enum bug & hidden keys
|
|
1620
|
-
while (names.length > i) if (has(O, key = names[i++])) {
|
|
1621
|
-
~indexOf(result, key) || result.push(key);
|
|
1622
|
-
}
|
|
1623
|
-
return result;
|
|
1624
|
-
};
|
|
1625
|
-
|
|
1626
|
-
|
|
1627
|
-
/***/ }),
|
|
1628
|
-
|
|
1629
|
-
/***/ 81956:
|
|
1630
|
-
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
1631
|
-
|
|
1632
|
-
var internalObjectKeys = __webpack_require__(16324);
|
|
1633
|
-
var enumBugKeys = __webpack_require__(80748);
|
|
1634
|
-
|
|
1635
|
-
// `Object.keys` method
|
|
1636
|
-
// https://tc39.es/ecma262/#sec-object.keys
|
|
1637
|
-
// eslint-disable-next-line es/no-object-keys -- safe
|
|
1638
|
-
module.exports = Object.keys || function keys(O) {
|
|
1639
|
-
return internalObjectKeys(O, enumBugKeys);
|
|
1640
|
-
};
|
|
1641
|
-
|
|
1642
|
-
|
|
1643
|
-
/***/ }),
|
|
1644
|
-
|
|
1645
|
-
/***/ 55296:
|
|
1646
|
-
/***/ (function(__unused_webpack_module, exports) {
|
|
1647
|
-
|
|
1648
|
-
"use strict";
|
|
1649
|
-
|
|
1650
|
-
var $propertyIsEnumerable = {}.propertyIsEnumerable;
|
|
1651
|
-
// eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
|
|
1652
|
-
var getOwnPropertyDescriptor = Object.getOwnPropertyDescriptor;
|
|
1653
|
-
|
|
1654
|
-
// Nashorn ~ JDK8 bug
|
|
1655
|
-
var NASHORN_BUG = getOwnPropertyDescriptor && !$propertyIsEnumerable.call({ 1: 2 }, 1);
|
|
1656
|
-
|
|
1657
|
-
// `Object.prototype.propertyIsEnumerable` method implementation
|
|
1658
|
-
// https://tc39.es/ecma262/#sec-object.prototype.propertyisenumerable
|
|
1659
|
-
exports.f = NASHORN_BUG ? function propertyIsEnumerable(V) {
|
|
1660
|
-
var descriptor = getOwnPropertyDescriptor(this, V);
|
|
1661
|
-
return !!descriptor && descriptor.enumerable;
|
|
1662
|
-
} : $propertyIsEnumerable;
|
|
1663
|
-
|
|
1664
|
-
|
|
1665
|
-
/***/ }),
|
|
1666
|
-
|
|
1667
|
-
/***/ 27674:
|
|
1668
|
-
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
1669
|
-
|
|
1670
|
-
/* eslint-disable no-proto -- safe */
|
|
1671
|
-
var anObject = __webpack_require__(19670);
|
|
1672
|
-
var aPossiblePrototype = __webpack_require__(96077);
|
|
1673
|
-
|
|
1674
|
-
// `Object.setPrototypeOf` method
|
|
1675
|
-
// https://tc39.es/ecma262/#sec-object.setprototypeof
|
|
1676
|
-
// Works with __proto__ only. Old v8 can't work with null proto objects.
|
|
1677
|
-
// eslint-disable-next-line es/no-object-setprototypeof -- safe
|
|
1678
|
-
module.exports = Object.setPrototypeOf || ('__proto__' in {} ? function () {
|
|
1679
|
-
var CORRECT_SETTER = false;
|
|
1680
|
-
var test = {};
|
|
1681
|
-
var setter;
|
|
1682
|
-
try {
|
|
1683
|
-
// eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
|
|
1684
|
-
setter = Object.getOwnPropertyDescriptor(Object.prototype, '__proto__').set;
|
|
1685
|
-
setter.call(test, []);
|
|
1686
|
-
CORRECT_SETTER = test instanceof Array;
|
|
1687
|
-
} catch (error) { /* empty */ }
|
|
1688
|
-
return function setPrototypeOf(O, proto) {
|
|
1689
|
-
anObject(O);
|
|
1690
|
-
aPossiblePrototype(proto);
|
|
1691
|
-
if (CORRECT_SETTER) setter.call(O, proto);
|
|
1692
|
-
else O.__proto__ = proto;
|
|
1693
|
-
return O;
|
|
1694
|
-
};
|
|
1695
|
-
}() : undefined);
|
|
1696
|
-
|
|
1697
|
-
|
|
1698
|
-
/***/ }),
|
|
1699
|
-
|
|
1700
|
-
/***/ 90288:
|
|
1701
|
-
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
1702
|
-
|
|
1703
|
-
"use strict";
|
|
1704
|
-
|
|
1705
|
-
var TO_STRING_TAG_SUPPORT = __webpack_require__(51694);
|
|
1706
|
-
var classof = __webpack_require__(70648);
|
|
1707
|
-
|
|
1708
|
-
// `Object.prototype.toString` method implementation
|
|
1709
|
-
// https://tc39.es/ecma262/#sec-object.prototype.tostring
|
|
1710
|
-
module.exports = TO_STRING_TAG_SUPPORT ? {}.toString : function toString() {
|
|
1711
|
-
return '[object ' + classof(this) + ']';
|
|
1712
|
-
};
|
|
1713
|
-
|
|
1714
|
-
|
|
1715
|
-
/***/ }),
|
|
1716
|
-
|
|
1717
|
-
/***/ 53887:
|
|
1718
|
-
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
1719
|
-
|
|
1720
|
-
var getBuiltIn = __webpack_require__(35005);
|
|
1721
|
-
var getOwnPropertyNamesModule = __webpack_require__(8006);
|
|
1722
|
-
var getOwnPropertySymbolsModule = __webpack_require__(25181);
|
|
1723
|
-
var anObject = __webpack_require__(19670);
|
|
1724
|
-
|
|
1725
|
-
// all object keys, includes non-enumerable and symbols
|
|
1726
|
-
module.exports = getBuiltIn('Reflect', 'ownKeys') || function ownKeys(it) {
|
|
1727
|
-
var keys = getOwnPropertyNamesModule.f(anObject(it));
|
|
1728
|
-
var getOwnPropertySymbols = getOwnPropertySymbolsModule.f;
|
|
1729
|
-
return getOwnPropertySymbols ? keys.concat(getOwnPropertySymbols(it)) : keys;
|
|
1730
|
-
};
|
|
1731
|
-
|
|
1732
|
-
|
|
1733
|
-
/***/ }),
|
|
1734
|
-
|
|
1735
|
-
/***/ 40857:
|
|
1736
|
-
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
1737
|
-
|
|
1738
|
-
var global = __webpack_require__(17854);
|
|
1739
|
-
|
|
1740
|
-
module.exports = global;
|
|
1741
|
-
|
|
1742
|
-
|
|
1743
|
-
/***/ }),
|
|
1744
|
-
|
|
1745
|
-
/***/ 31320:
|
|
1746
|
-
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
1747
|
-
|
|
1748
|
-
var global = __webpack_require__(17854);
|
|
1749
|
-
var createNonEnumerableProperty = __webpack_require__(68880);
|
|
1750
|
-
var has = __webpack_require__(86656);
|
|
1751
|
-
var setGlobal = __webpack_require__(83505);
|
|
1752
|
-
var inspectSource = __webpack_require__(42788);
|
|
1753
|
-
var InternalStateModule = __webpack_require__(29909);
|
|
1754
|
-
|
|
1755
|
-
var getInternalState = InternalStateModule.get;
|
|
1756
|
-
var enforceInternalState = InternalStateModule.enforce;
|
|
1757
|
-
var TEMPLATE = String(String).split('String');
|
|
1758
|
-
|
|
1759
|
-
(module.exports = function (O, key, value, options) {
|
|
1760
|
-
var unsafe = options ? !!options.unsafe : false;
|
|
1761
|
-
var simple = options ? !!options.enumerable : false;
|
|
1762
|
-
var noTargetGet = options ? !!options.noTargetGet : false;
|
|
1763
|
-
var state;
|
|
1764
|
-
if (typeof value == 'function') {
|
|
1765
|
-
if (typeof key == 'string' && !has(value, 'name')) {
|
|
1766
|
-
createNonEnumerableProperty(value, 'name', key);
|
|
1767
|
-
}
|
|
1768
|
-
state = enforceInternalState(value);
|
|
1769
|
-
if (!state.source) {
|
|
1770
|
-
state.source = TEMPLATE.join(typeof key == 'string' ? key : '');
|
|
1771
|
-
}
|
|
1772
|
-
}
|
|
1773
|
-
if (O === global) {
|
|
1774
|
-
if (simple) O[key] = value;
|
|
1775
|
-
else setGlobal(key, value);
|
|
1776
|
-
return;
|
|
1777
|
-
} else if (!unsafe) {
|
|
1778
|
-
delete O[key];
|
|
1779
|
-
} else if (!noTargetGet && O[key]) {
|
|
1780
|
-
simple = true;
|
|
1781
|
-
}
|
|
1782
|
-
if (simple) O[key] = value;
|
|
1783
|
-
else createNonEnumerableProperty(O, key, value);
|
|
1784
|
-
// add fake Function#toString for correct work wrapped methods / constructors with methods like LoDash isNative
|
|
1785
|
-
})(Function.prototype, 'toString', function toString() {
|
|
1786
|
-
return typeof this == 'function' && getInternalState(this).source || inspectSource(this);
|
|
1787
|
-
});
|
|
1788
|
-
|
|
1789
|
-
|
|
1790
|
-
/***/ }),
|
|
1791
|
-
|
|
1792
|
-
/***/ 97651:
|
|
1793
|
-
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
1794
|
-
|
|
1795
|
-
var classof = __webpack_require__(84326);
|
|
1796
|
-
var regexpExec = __webpack_require__(22261);
|
|
1797
|
-
|
|
1798
|
-
// `RegExpExec` abstract operation
|
|
1799
|
-
// https://tc39.es/ecma262/#sec-regexpexec
|
|
1800
|
-
module.exports = function (R, S) {
|
|
1801
|
-
var exec = R.exec;
|
|
1802
|
-
if (typeof exec === 'function') {
|
|
1803
|
-
var result = exec.call(R, S);
|
|
1804
|
-
if (typeof result !== 'object') {
|
|
1805
|
-
throw TypeError('RegExp exec method returned something other than an Object or null');
|
|
1806
|
-
}
|
|
1807
|
-
return result;
|
|
1808
|
-
}
|
|
1809
|
-
|
|
1810
|
-
if (classof(R) !== 'RegExp') {
|
|
1811
|
-
throw TypeError('RegExp#exec called on incompatible receiver');
|
|
1812
|
-
}
|
|
1813
|
-
|
|
1814
|
-
return regexpExec.call(R, S);
|
|
1815
|
-
};
|
|
1816
|
-
|
|
1817
|
-
|
|
1818
|
-
|
|
1819
|
-
/***/ }),
|
|
1820
|
-
|
|
1821
|
-
/***/ 22261:
|
|
1822
|
-
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
1823
|
-
|
|
1824
|
-
"use strict";
|
|
1825
|
-
|
|
1826
|
-
/* eslint-disable regexp/no-assertion-capturing-group, regexp/no-empty-group, regexp/no-lazy-ends -- testing */
|
|
1827
|
-
/* eslint-disable regexp/no-useless-quantifier -- testing */
|
|
1828
|
-
var regexpFlags = __webpack_require__(67066);
|
|
1829
|
-
var stickyHelpers = __webpack_require__(52999);
|
|
1830
|
-
var shared = __webpack_require__(72309);
|
|
1831
|
-
var create = __webpack_require__(70030);
|
|
1832
|
-
var getInternalState = (__webpack_require__(29909).get);
|
|
1833
|
-
var UNSUPPORTED_DOT_ALL = __webpack_require__(9441);
|
|
1834
|
-
var UNSUPPORTED_NCG = __webpack_require__(38173);
|
|
1835
|
-
|
|
1836
|
-
var nativeExec = RegExp.prototype.exec;
|
|
1837
|
-
var nativeReplace = shared('native-string-replace', String.prototype.replace);
|
|
1838
|
-
|
|
1839
|
-
var patchedExec = nativeExec;
|
|
1840
|
-
|
|
1841
|
-
var UPDATES_LAST_INDEX_WRONG = (function () {
|
|
1842
|
-
var re1 = /a/;
|
|
1843
|
-
var re2 = /b*/g;
|
|
1844
|
-
nativeExec.call(re1, 'a');
|
|
1845
|
-
nativeExec.call(re2, 'a');
|
|
1846
|
-
return re1.lastIndex !== 0 || re2.lastIndex !== 0;
|
|
1847
|
-
})();
|
|
1848
|
-
|
|
1849
|
-
var UNSUPPORTED_Y = stickyHelpers.UNSUPPORTED_Y || stickyHelpers.BROKEN_CARET;
|
|
1850
|
-
|
|
1851
|
-
// nonparticipating capturing group, copied from es5-shim's String#split patch.
|
|
1852
|
-
var NPCG_INCLUDED = /()??/.exec('')[1] !== undefined;
|
|
1853
|
-
|
|
1854
|
-
var PATCH = UPDATES_LAST_INDEX_WRONG || NPCG_INCLUDED || UNSUPPORTED_Y || UNSUPPORTED_DOT_ALL || UNSUPPORTED_NCG;
|
|
1855
|
-
|
|
1856
|
-
if (PATCH) {
|
|
1857
|
-
// eslint-disable-next-line max-statements -- TODO
|
|
1858
|
-
patchedExec = function exec(str) {
|
|
1859
|
-
var re = this;
|
|
1860
|
-
var state = getInternalState(re);
|
|
1861
|
-
var raw = state.raw;
|
|
1862
|
-
var result, reCopy, lastIndex, match, i, object, group;
|
|
1863
|
-
|
|
1864
|
-
if (raw) {
|
|
1865
|
-
raw.lastIndex = re.lastIndex;
|
|
1866
|
-
result = patchedExec.call(raw, str);
|
|
1867
|
-
re.lastIndex = raw.lastIndex;
|
|
1868
|
-
return result;
|
|
1869
|
-
}
|
|
1870
|
-
|
|
1871
|
-
var groups = state.groups;
|
|
1872
|
-
var sticky = UNSUPPORTED_Y && re.sticky;
|
|
1873
|
-
var flags = regexpFlags.call(re);
|
|
1874
|
-
var source = re.source;
|
|
1875
|
-
var charsAdded = 0;
|
|
1876
|
-
var strCopy = str;
|
|
1877
|
-
|
|
1878
|
-
if (sticky) {
|
|
1879
|
-
flags = flags.replace('y', '');
|
|
1880
|
-
if (flags.indexOf('g') === -1) {
|
|
1881
|
-
flags += 'g';
|
|
1882
|
-
}
|
|
1883
|
-
|
|
1884
|
-
strCopy = String(str).slice(re.lastIndex);
|
|
1885
|
-
// Support anchored sticky behavior.
|
|
1886
|
-
if (re.lastIndex > 0 && (!re.multiline || re.multiline && str[re.lastIndex - 1] !== '\n')) {
|
|
1887
|
-
source = '(?: ' + source + ')';
|
|
1888
|
-
strCopy = ' ' + strCopy;
|
|
1889
|
-
charsAdded++;
|
|
1890
|
-
}
|
|
1891
|
-
// ^(? + rx + ) is needed, in combination with some str slicing, to
|
|
1892
|
-
// simulate the 'y' flag.
|
|
1893
|
-
reCopy = new RegExp('^(?:' + source + ')', flags);
|
|
1894
|
-
}
|
|
1895
|
-
|
|
1896
|
-
if (NPCG_INCLUDED) {
|
|
1897
|
-
reCopy = new RegExp('^' + source + '$(?!\\s)', flags);
|
|
1898
|
-
}
|
|
1899
|
-
if (UPDATES_LAST_INDEX_WRONG) lastIndex = re.lastIndex;
|
|
1900
|
-
|
|
1901
|
-
match = nativeExec.call(sticky ? reCopy : re, strCopy);
|
|
1902
|
-
|
|
1903
|
-
if (sticky) {
|
|
1904
|
-
if (match) {
|
|
1905
|
-
match.input = match.input.slice(charsAdded);
|
|
1906
|
-
match[0] = match[0].slice(charsAdded);
|
|
1907
|
-
match.index = re.lastIndex;
|
|
1908
|
-
re.lastIndex += match[0].length;
|
|
1909
|
-
} else re.lastIndex = 0;
|
|
1910
|
-
} else if (UPDATES_LAST_INDEX_WRONG && match) {
|
|
1911
|
-
re.lastIndex = re.global ? match.index + match[0].length : lastIndex;
|
|
1912
|
-
}
|
|
1913
|
-
if (NPCG_INCLUDED && match && match.length > 1) {
|
|
1914
|
-
// Fix browsers whose `exec` methods don't consistently return `undefined`
|
|
1915
|
-
// for NPCG, like IE8. NOTE: This doesn' work for /(.?)?/
|
|
1916
|
-
nativeReplace.call(match[0], reCopy, function () {
|
|
1917
|
-
for (i = 1; i < arguments.length - 2; i++) {
|
|
1918
|
-
if (arguments[i] === undefined) match[i] = undefined;
|
|
1919
|
-
}
|
|
1920
|
-
});
|
|
1921
|
-
}
|
|
1922
|
-
|
|
1923
|
-
if (match && groups) {
|
|
1924
|
-
match.groups = object = create(null);
|
|
1925
|
-
for (i = 0; i < groups.length; i++) {
|
|
1926
|
-
group = groups[i];
|
|
1927
|
-
object[group[0]] = match[group[1]];
|
|
1928
|
-
}
|
|
1929
|
-
}
|
|
1930
|
-
|
|
1931
|
-
return match;
|
|
1932
|
-
};
|
|
1933
|
-
}
|
|
1934
|
-
|
|
1935
|
-
module.exports = patchedExec;
|
|
1936
|
-
|
|
1937
|
-
|
|
1938
|
-
/***/ }),
|
|
1939
|
-
|
|
1940
|
-
/***/ 67066:
|
|
1941
|
-
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
1942
|
-
|
|
1943
|
-
"use strict";
|
|
1944
|
-
|
|
1945
|
-
var anObject = __webpack_require__(19670);
|
|
1946
|
-
|
|
1947
|
-
// `RegExp.prototype.flags` getter implementation
|
|
1948
|
-
// https://tc39.es/ecma262/#sec-get-regexp.prototype.flags
|
|
1949
|
-
module.exports = function () {
|
|
1950
|
-
var that = anObject(this);
|
|
1951
|
-
var result = '';
|
|
1952
|
-
if (that.global) result += 'g';
|
|
1953
|
-
if (that.ignoreCase) result += 'i';
|
|
1954
|
-
if (that.multiline) result += 'm';
|
|
1955
|
-
if (that.dotAll) result += 's';
|
|
1956
|
-
if (that.unicode) result += 'u';
|
|
1957
|
-
if (that.sticky) result += 'y';
|
|
1958
|
-
return result;
|
|
1959
|
-
};
|
|
1960
|
-
|
|
1961
|
-
|
|
1962
|
-
/***/ }),
|
|
1963
|
-
|
|
1964
|
-
/***/ 52999:
|
|
1965
|
-
/***/ (function(__unused_webpack_module, exports, __webpack_require__) {
|
|
1966
|
-
|
|
1967
|
-
var fails = __webpack_require__(47293);
|
|
1968
|
-
|
|
1969
|
-
// babel-minify transpiles RegExp('a', 'y') -> /a/y and it causes SyntaxError,
|
|
1970
|
-
var RE = function (s, f) {
|
|
1971
|
-
return RegExp(s, f);
|
|
1972
|
-
};
|
|
1973
|
-
|
|
1974
|
-
exports.UNSUPPORTED_Y = fails(function () {
|
|
1975
|
-
var re = RE('a', 'y');
|
|
1976
|
-
re.lastIndex = 2;
|
|
1977
|
-
return re.exec('abcd') != null;
|
|
1978
|
-
});
|
|
1979
|
-
|
|
1980
|
-
exports.BROKEN_CARET = fails(function () {
|
|
1981
|
-
// https://bugzilla.mozilla.org/show_bug.cgi?id=773687
|
|
1982
|
-
var re = RE('^r', 'gy');
|
|
1983
|
-
re.lastIndex = 2;
|
|
1984
|
-
return re.exec('str') != null;
|
|
1985
|
-
});
|
|
1986
|
-
|
|
1987
|
-
|
|
1988
|
-
/***/ }),
|
|
1989
|
-
|
|
1990
|
-
/***/ 9441:
|
|
1991
|
-
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
1992
|
-
|
|
1993
|
-
var fails = __webpack_require__(47293);
|
|
1994
|
-
|
|
1995
|
-
module.exports = fails(function () {
|
|
1996
|
-
// babel-minify transpiles RegExp('.', 's') -> /./s and it causes SyntaxError
|
|
1997
|
-
var re = RegExp('.', (typeof '').charAt(0));
|
|
1998
|
-
return !(re.dotAll && re.exec('\n') && re.flags === 's');
|
|
1999
|
-
});
|
|
2000
|
-
|
|
2001
|
-
|
|
2002
|
-
/***/ }),
|
|
2003
|
-
|
|
2004
|
-
/***/ 38173:
|
|
2005
|
-
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
2006
|
-
|
|
2007
|
-
var fails = __webpack_require__(47293);
|
|
2008
|
-
|
|
2009
|
-
module.exports = fails(function () {
|
|
2010
|
-
// babel-minify transpiles RegExp('.', 'g') -> /./g and it causes SyntaxError
|
|
2011
|
-
var re = RegExp('(?<a>b)', (typeof '').charAt(5));
|
|
2012
|
-
return re.exec('b').groups.a !== 'b' ||
|
|
2013
|
-
'b'.replace(re, '$<a>c') !== 'bc';
|
|
2014
|
-
});
|
|
2015
|
-
|
|
2016
|
-
|
|
2017
|
-
/***/ }),
|
|
2018
|
-
|
|
2019
|
-
/***/ 84488:
|
|
2020
|
-
/***/ (function(module) {
|
|
2021
|
-
|
|
2022
|
-
// `RequireObjectCoercible` abstract operation
|
|
2023
|
-
// https://tc39.es/ecma262/#sec-requireobjectcoercible
|
|
2024
|
-
module.exports = function (it) {
|
|
2025
|
-
if (it == undefined) throw TypeError("Can't call method on " + it);
|
|
2026
|
-
return it;
|
|
2027
|
-
};
|
|
2028
|
-
|
|
2029
|
-
|
|
2030
|
-
/***/ }),
|
|
2031
|
-
|
|
2032
|
-
/***/ 83505:
|
|
2033
|
-
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
2034
|
-
|
|
2035
|
-
var global = __webpack_require__(17854);
|
|
2036
|
-
var createNonEnumerableProperty = __webpack_require__(68880);
|
|
2037
|
-
|
|
2038
|
-
module.exports = function (key, value) {
|
|
2039
|
-
try {
|
|
2040
|
-
createNonEnumerableProperty(global, key, value);
|
|
2041
|
-
} catch (error) {
|
|
2042
|
-
global[key] = value;
|
|
2043
|
-
} return value;
|
|
2044
|
-
};
|
|
2045
|
-
|
|
2046
|
-
|
|
2047
|
-
/***/ }),
|
|
2048
|
-
|
|
2049
|
-
/***/ 58003:
|
|
2050
|
-
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
2051
|
-
|
|
2052
|
-
var defineProperty = (__webpack_require__(3070).f);
|
|
2053
|
-
var has = __webpack_require__(86656);
|
|
2054
|
-
var wellKnownSymbol = __webpack_require__(5112);
|
|
2055
|
-
|
|
2056
|
-
var TO_STRING_TAG = wellKnownSymbol('toStringTag');
|
|
2057
|
-
|
|
2058
|
-
module.exports = function (it, TAG, STATIC) {
|
|
2059
|
-
if (it && !has(it = STATIC ? it : it.prototype, TO_STRING_TAG)) {
|
|
2060
|
-
defineProperty(it, TO_STRING_TAG, { configurable: true, value: TAG });
|
|
2061
|
-
}
|
|
2062
|
-
};
|
|
2063
|
-
|
|
2064
|
-
|
|
2065
|
-
/***/ }),
|
|
2066
|
-
|
|
2067
|
-
/***/ 6200:
|
|
2068
|
-
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
2069
|
-
|
|
2070
|
-
var shared = __webpack_require__(72309);
|
|
2071
|
-
var uid = __webpack_require__(69711);
|
|
2072
|
-
|
|
2073
|
-
var keys = shared('keys');
|
|
2074
|
-
|
|
2075
|
-
module.exports = function (key) {
|
|
2076
|
-
return keys[key] || (keys[key] = uid(key));
|
|
2077
|
-
};
|
|
2078
|
-
|
|
2079
|
-
|
|
2080
|
-
/***/ }),
|
|
2081
|
-
|
|
2082
|
-
/***/ 5465:
|
|
2083
|
-
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
2084
|
-
|
|
2085
|
-
var global = __webpack_require__(17854);
|
|
2086
|
-
var setGlobal = __webpack_require__(83505);
|
|
2087
|
-
|
|
2088
|
-
var SHARED = '__core-js_shared__';
|
|
2089
|
-
var store = global[SHARED] || setGlobal(SHARED, {});
|
|
2090
|
-
|
|
2091
|
-
module.exports = store;
|
|
2092
|
-
|
|
2093
|
-
|
|
2094
|
-
/***/ }),
|
|
2095
|
-
|
|
2096
|
-
/***/ 72309:
|
|
2097
|
-
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
2098
|
-
|
|
2099
|
-
var IS_PURE = __webpack_require__(31913);
|
|
2100
|
-
var store = __webpack_require__(5465);
|
|
2101
|
-
|
|
2102
|
-
(module.exports = function (key, value) {
|
|
2103
|
-
return store[key] || (store[key] = value !== undefined ? value : {});
|
|
2104
|
-
})('versions', []).push({
|
|
2105
|
-
version: '3.15.2',
|
|
2106
|
-
mode: IS_PURE ? 'pure' : 'global',
|
|
2107
|
-
copyright: '© 2021 Denis Pushkarev (zloirock.ru)'
|
|
2108
|
-
});
|
|
2109
|
-
|
|
2110
|
-
|
|
2111
|
-
/***/ }),
|
|
2112
|
-
|
|
2113
|
-
/***/ 36707:
|
|
2114
|
-
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
2115
|
-
|
|
2116
|
-
var anObject = __webpack_require__(19670);
|
|
2117
|
-
var aFunction = __webpack_require__(13099);
|
|
2118
|
-
var wellKnownSymbol = __webpack_require__(5112);
|
|
2119
|
-
|
|
2120
|
-
var SPECIES = wellKnownSymbol('species');
|
|
2121
|
-
|
|
2122
|
-
// `SpeciesConstructor` abstract operation
|
|
2123
|
-
// https://tc39.es/ecma262/#sec-speciesconstructor
|
|
2124
|
-
module.exports = function (O, defaultConstructor) {
|
|
2125
|
-
var C = anObject(O).constructor;
|
|
2126
|
-
var S;
|
|
2127
|
-
return C === undefined || (S = anObject(C)[SPECIES]) == undefined ? defaultConstructor : aFunction(S);
|
|
2128
|
-
};
|
|
2129
|
-
|
|
2130
|
-
|
|
2131
|
-
/***/ }),
|
|
2132
|
-
|
|
2133
|
-
/***/ 28710:
|
|
2134
|
-
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
2135
|
-
|
|
2136
|
-
var toInteger = __webpack_require__(99958);
|
|
2137
|
-
var requireObjectCoercible = __webpack_require__(84488);
|
|
2138
|
-
|
|
2139
|
-
// `String.prototype.{ codePointAt, at }` methods implementation
|
|
2140
|
-
var createMethod = function (CONVERT_TO_STRING) {
|
|
2141
|
-
return function ($this, pos) {
|
|
2142
|
-
var S = String(requireObjectCoercible($this));
|
|
2143
|
-
var position = toInteger(pos);
|
|
2144
|
-
var size = S.length;
|
|
2145
|
-
var first, second;
|
|
2146
|
-
if (position < 0 || position >= size) return CONVERT_TO_STRING ? '' : undefined;
|
|
2147
|
-
first = S.charCodeAt(position);
|
|
2148
|
-
return first < 0xD800 || first > 0xDBFF || position + 1 === size
|
|
2149
|
-
|| (second = S.charCodeAt(position + 1)) < 0xDC00 || second > 0xDFFF
|
|
2150
|
-
? CONVERT_TO_STRING ? S.charAt(position) : first
|
|
2151
|
-
: CONVERT_TO_STRING ? S.slice(position, position + 2) : (first - 0xD800 << 10) + (second - 0xDC00) + 0x10000;
|
|
2152
|
-
};
|
|
2153
|
-
};
|
|
2154
|
-
|
|
2155
|
-
module.exports = {
|
|
2156
|
-
// `String.prototype.codePointAt` method
|
|
2157
|
-
// https://tc39.es/ecma262/#sec-string.prototype.codepointat
|
|
2158
|
-
codeAt: createMethod(false),
|
|
2159
|
-
// `String.prototype.at` method
|
|
2160
|
-
// https://github.com/mathiasbynens/String.prototype.at
|
|
2161
|
-
charAt: createMethod(true)
|
|
2162
|
-
};
|
|
2163
|
-
|
|
2164
|
-
|
|
2165
|
-
/***/ }),
|
|
2166
|
-
|
|
2167
|
-
/***/ 51400:
|
|
2168
|
-
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
2169
|
-
|
|
2170
|
-
var toInteger = __webpack_require__(99958);
|
|
2171
|
-
|
|
2172
|
-
var max = Math.max;
|
|
2173
|
-
var min = Math.min;
|
|
2174
|
-
|
|
2175
|
-
// Helper for a popular repeating case of the spec:
|
|
2176
|
-
// Let integer be ? ToInteger(index).
|
|
2177
|
-
// If integer < 0, let result be max((length + integer), 0); else let result be min(integer, length).
|
|
2178
|
-
module.exports = function (index, length) {
|
|
2179
|
-
var integer = toInteger(index);
|
|
2180
|
-
return integer < 0 ? max(integer + length, 0) : min(integer, length);
|
|
2181
|
-
};
|
|
2182
|
-
|
|
2183
|
-
|
|
2184
|
-
/***/ }),
|
|
2185
|
-
|
|
2186
|
-
/***/ 45656:
|
|
2187
|
-
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
2188
|
-
|
|
2189
|
-
// toObject with fallback for non-array-like ES3 strings
|
|
2190
|
-
var IndexedObject = __webpack_require__(68361);
|
|
2191
|
-
var requireObjectCoercible = __webpack_require__(84488);
|
|
2192
|
-
|
|
2193
|
-
module.exports = function (it) {
|
|
2194
|
-
return IndexedObject(requireObjectCoercible(it));
|
|
2195
|
-
};
|
|
2196
|
-
|
|
2197
|
-
|
|
2198
|
-
/***/ }),
|
|
2199
|
-
|
|
2200
|
-
/***/ 99958:
|
|
2201
|
-
/***/ (function(module) {
|
|
2202
|
-
|
|
2203
|
-
var ceil = Math.ceil;
|
|
2204
|
-
var floor = Math.floor;
|
|
2205
|
-
|
|
2206
|
-
// `ToInteger` abstract operation
|
|
2207
|
-
// https://tc39.es/ecma262/#sec-tointeger
|
|
2208
|
-
module.exports = function (argument) {
|
|
2209
|
-
return isNaN(argument = +argument) ? 0 : (argument > 0 ? floor : ceil)(argument);
|
|
2210
|
-
};
|
|
2211
|
-
|
|
2212
|
-
|
|
2213
|
-
/***/ }),
|
|
2214
|
-
|
|
2215
|
-
/***/ 17466:
|
|
2216
|
-
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
2217
|
-
|
|
2218
|
-
var toInteger = __webpack_require__(99958);
|
|
2219
|
-
|
|
2220
|
-
var min = Math.min;
|
|
2221
|
-
|
|
2222
|
-
// `ToLength` abstract operation
|
|
2223
|
-
// https://tc39.es/ecma262/#sec-tolength
|
|
2224
|
-
module.exports = function (argument) {
|
|
2225
|
-
return argument > 0 ? min(toInteger(argument), 0x1FFFFFFFFFFFFF) : 0; // 2 ** 53 - 1 == 9007199254740991
|
|
2226
|
-
};
|
|
2227
|
-
|
|
2228
|
-
|
|
2229
|
-
/***/ }),
|
|
2230
|
-
|
|
2231
|
-
/***/ 47908:
|
|
2232
|
-
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
2233
|
-
|
|
2234
|
-
var requireObjectCoercible = __webpack_require__(84488);
|
|
2235
|
-
|
|
2236
|
-
// `ToObject` abstract operation
|
|
2237
|
-
// https://tc39.es/ecma262/#sec-toobject
|
|
2238
|
-
module.exports = function (argument) {
|
|
2239
|
-
return Object(requireObjectCoercible(argument));
|
|
2240
|
-
};
|
|
2241
|
-
|
|
2242
|
-
|
|
2243
|
-
/***/ }),
|
|
2244
|
-
|
|
2245
|
-
/***/ 57593:
|
|
2246
|
-
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
2247
|
-
|
|
2248
|
-
var isObject = __webpack_require__(70111);
|
|
2249
|
-
|
|
2250
|
-
// `ToPrimitive` abstract operation
|
|
2251
|
-
// https://tc39.es/ecma262/#sec-toprimitive
|
|
2252
|
-
// instead of the ES6 spec version, we didn't implement @@toPrimitive case
|
|
2253
|
-
// and the second argument - flag - preferred type is a string
|
|
2254
|
-
module.exports = function (input, PREFERRED_STRING) {
|
|
2255
|
-
if (!isObject(input)) return input;
|
|
2256
|
-
var fn, val;
|
|
2257
|
-
if (PREFERRED_STRING && typeof (fn = input.toString) == 'function' && !isObject(val = fn.call(input))) return val;
|
|
2258
|
-
if (typeof (fn = input.valueOf) == 'function' && !isObject(val = fn.call(input))) return val;
|
|
2259
|
-
if (!PREFERRED_STRING && typeof (fn = input.toString) == 'function' && !isObject(val = fn.call(input))) return val;
|
|
2260
|
-
throw TypeError("Can't convert object to primitive value");
|
|
2261
|
-
};
|
|
2262
|
-
|
|
2263
|
-
|
|
2264
|
-
/***/ }),
|
|
2265
|
-
|
|
2266
|
-
/***/ 51694:
|
|
2267
|
-
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
2268
|
-
|
|
2269
|
-
var wellKnownSymbol = __webpack_require__(5112);
|
|
2270
|
-
|
|
2271
|
-
var TO_STRING_TAG = wellKnownSymbol('toStringTag');
|
|
2272
|
-
var test = {};
|
|
2273
|
-
|
|
2274
|
-
test[TO_STRING_TAG] = 'z';
|
|
2275
|
-
|
|
2276
|
-
module.exports = String(test) === '[object z]';
|
|
2277
|
-
|
|
2278
|
-
|
|
2279
|
-
/***/ }),
|
|
2280
|
-
|
|
2281
|
-
/***/ 69711:
|
|
2282
|
-
/***/ (function(module) {
|
|
2283
|
-
|
|
2284
|
-
var id = 0;
|
|
2285
|
-
var postfix = Math.random();
|
|
2286
|
-
|
|
2287
|
-
module.exports = function (key) {
|
|
2288
|
-
return 'Symbol(' + String(key === undefined ? '' : key) + ')_' + (++id + postfix).toString(36);
|
|
2289
|
-
};
|
|
2290
|
-
|
|
2291
|
-
|
|
2292
|
-
/***/ }),
|
|
2293
|
-
|
|
2294
|
-
/***/ 43307:
|
|
2295
|
-
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
2296
|
-
|
|
2297
|
-
/* eslint-disable es/no-symbol -- required for testing */
|
|
2298
|
-
var NATIVE_SYMBOL = __webpack_require__(30133);
|
|
2299
|
-
|
|
2300
|
-
module.exports = NATIVE_SYMBOL
|
|
2301
|
-
&& !Symbol.sham
|
|
2302
|
-
&& typeof Symbol.iterator == 'symbol';
|
|
2303
|
-
|
|
2304
|
-
|
|
2305
|
-
/***/ }),
|
|
2306
|
-
|
|
2307
|
-
/***/ 5112:
|
|
2308
|
-
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
2309
|
-
|
|
2310
|
-
var global = __webpack_require__(17854);
|
|
2311
|
-
var shared = __webpack_require__(72309);
|
|
2312
|
-
var has = __webpack_require__(86656);
|
|
2313
|
-
var uid = __webpack_require__(69711);
|
|
2314
|
-
var NATIVE_SYMBOL = __webpack_require__(30133);
|
|
2315
|
-
var USE_SYMBOL_AS_UID = __webpack_require__(43307);
|
|
2316
|
-
|
|
2317
|
-
var WellKnownSymbolsStore = shared('wks');
|
|
2318
|
-
var Symbol = global.Symbol;
|
|
2319
|
-
var createWellKnownSymbol = USE_SYMBOL_AS_UID ? Symbol : Symbol && Symbol.withoutSetter || uid;
|
|
2320
|
-
|
|
2321
|
-
module.exports = function (name) {
|
|
2322
|
-
if (!has(WellKnownSymbolsStore, name) || !(NATIVE_SYMBOL || typeof WellKnownSymbolsStore[name] == 'string')) {
|
|
2323
|
-
if (NATIVE_SYMBOL && has(Symbol, name)) {
|
|
2324
|
-
WellKnownSymbolsStore[name] = Symbol[name];
|
|
2325
|
-
} else {
|
|
2326
|
-
WellKnownSymbolsStore[name] = createWellKnownSymbol('Symbol.' + name);
|
|
2327
|
-
}
|
|
2328
|
-
} return WellKnownSymbolsStore[name];
|
|
2329
|
-
};
|
|
2330
|
-
|
|
2331
|
-
|
|
2332
|
-
/***/ }),
|
|
2333
|
-
|
|
2334
|
-
/***/ 92222:
|
|
2335
|
-
/***/ (function(__unused_webpack_module, __unused_webpack_exports, __webpack_require__) {
|
|
2336
|
-
|
|
2337
|
-
"use strict";
|
|
2338
|
-
|
|
2339
|
-
var $ = __webpack_require__(82109);
|
|
2340
|
-
var fails = __webpack_require__(47293);
|
|
2341
|
-
var isArray = __webpack_require__(43157);
|
|
2342
|
-
var isObject = __webpack_require__(70111);
|
|
2343
|
-
var toObject = __webpack_require__(47908);
|
|
2344
|
-
var toLength = __webpack_require__(17466);
|
|
2345
|
-
var createProperty = __webpack_require__(86135);
|
|
2346
|
-
var arraySpeciesCreate = __webpack_require__(65417);
|
|
2347
|
-
var arrayMethodHasSpeciesSupport = __webpack_require__(81194);
|
|
2348
|
-
var wellKnownSymbol = __webpack_require__(5112);
|
|
2349
|
-
var V8_VERSION = __webpack_require__(7392);
|
|
2350
|
-
|
|
2351
|
-
var IS_CONCAT_SPREADABLE = wellKnownSymbol('isConcatSpreadable');
|
|
2352
|
-
var MAX_SAFE_INTEGER = 0x1FFFFFFFFFFFFF;
|
|
2353
|
-
var MAXIMUM_ALLOWED_INDEX_EXCEEDED = 'Maximum allowed index exceeded';
|
|
2354
|
-
|
|
2355
|
-
// We can't use this feature detection in V8 since it causes
|
|
2356
|
-
// deoptimization and serious performance degradation
|
|
2357
|
-
// https://github.com/zloirock/core-js/issues/679
|
|
2358
|
-
var IS_CONCAT_SPREADABLE_SUPPORT = V8_VERSION >= 51 || !fails(function () {
|
|
2359
|
-
var array = [];
|
|
2360
|
-
array[IS_CONCAT_SPREADABLE] = false;
|
|
2361
|
-
return array.concat()[0] !== array;
|
|
2362
|
-
});
|
|
2363
|
-
|
|
2364
|
-
var SPECIES_SUPPORT = arrayMethodHasSpeciesSupport('concat');
|
|
2365
|
-
|
|
2366
|
-
var isConcatSpreadable = function (O) {
|
|
2367
|
-
if (!isObject(O)) return false;
|
|
2368
|
-
var spreadable = O[IS_CONCAT_SPREADABLE];
|
|
2369
|
-
return spreadable !== undefined ? !!spreadable : isArray(O);
|
|
2370
|
-
};
|
|
2371
|
-
|
|
2372
|
-
var FORCED = !IS_CONCAT_SPREADABLE_SUPPORT || !SPECIES_SUPPORT;
|
|
2373
|
-
|
|
2374
|
-
// `Array.prototype.concat` method
|
|
2375
|
-
// https://tc39.es/ecma262/#sec-array.prototype.concat
|
|
2376
|
-
// with adding support of @@isConcatSpreadable and @@species
|
|
2377
|
-
$({ target: 'Array', proto: true, forced: FORCED }, {
|
|
2378
|
-
// eslint-disable-next-line no-unused-vars -- required for `.length`
|
|
2379
|
-
concat: function concat(arg) {
|
|
2380
|
-
var O = toObject(this);
|
|
2381
|
-
var A = arraySpeciesCreate(O, 0);
|
|
2382
|
-
var n = 0;
|
|
2383
|
-
var i, k, length, len, E;
|
|
2384
|
-
for (i = -1, length = arguments.length; i < length; i++) {
|
|
2385
|
-
E = i === -1 ? O : arguments[i];
|
|
2386
|
-
if (isConcatSpreadable(E)) {
|
|
2387
|
-
len = toLength(E.length);
|
|
2388
|
-
if (n + len > MAX_SAFE_INTEGER) throw TypeError(MAXIMUM_ALLOWED_INDEX_EXCEEDED);
|
|
2389
|
-
for (k = 0; k < len; k++, n++) if (k in E) createProperty(A, n, E[k]);
|
|
2390
|
-
} else {
|
|
2391
|
-
if (n >= MAX_SAFE_INTEGER) throw TypeError(MAXIMUM_ALLOWED_INDEX_EXCEEDED);
|
|
2392
|
-
createProperty(A, n++, E);
|
|
2393
|
-
}
|
|
2394
|
-
}
|
|
2395
|
-
A.length = n;
|
|
2396
|
-
return A;
|
|
2397
|
-
}
|
|
2398
|
-
});
|
|
2399
|
-
|
|
2400
|
-
|
|
2401
|
-
/***/ }),
|
|
2402
|
-
|
|
2403
|
-
/***/ 69826:
|
|
2404
|
-
/***/ (function(__unused_webpack_module, __unused_webpack_exports, __webpack_require__) {
|
|
2405
|
-
|
|
2406
|
-
"use strict";
|
|
2407
|
-
|
|
2408
|
-
var $ = __webpack_require__(82109);
|
|
2409
|
-
var $find = (__webpack_require__(42092).find);
|
|
2410
|
-
var addToUnscopables = __webpack_require__(51223);
|
|
2411
|
-
|
|
2412
|
-
var FIND = 'find';
|
|
2413
|
-
var SKIPS_HOLES = true;
|
|
2414
|
-
|
|
2415
|
-
// Shouldn't skip holes
|
|
2416
|
-
if (FIND in []) Array(1)[FIND](function () { SKIPS_HOLES = false; });
|
|
2417
|
-
|
|
2418
|
-
// `Array.prototype.find` method
|
|
2419
|
-
// https://tc39.es/ecma262/#sec-array.prototype.find
|
|
2420
|
-
$({ target: 'Array', proto: true, forced: SKIPS_HOLES }, {
|
|
2421
|
-
find: function find(callbackfn /* , that = undefined */) {
|
|
2422
|
-
return $find(this, callbackfn, arguments.length > 1 ? arguments[1] : undefined);
|
|
2423
|
-
}
|
|
2424
|
-
});
|
|
2425
|
-
|
|
2426
|
-
// https://tc39.es/ecma262/#sec-array.prototype-@@unscopables
|
|
2427
|
-
addToUnscopables(FIND);
|
|
2428
|
-
|
|
2429
|
-
|
|
2430
|
-
/***/ }),
|
|
2431
|
-
|
|
2432
|
-
/***/ 91038:
|
|
2433
|
-
/***/ (function(__unused_webpack_module, __unused_webpack_exports, __webpack_require__) {
|
|
2434
|
-
|
|
2435
|
-
var $ = __webpack_require__(82109);
|
|
2436
|
-
var from = __webpack_require__(48457);
|
|
2437
|
-
var checkCorrectnessOfIteration = __webpack_require__(17072);
|
|
2438
|
-
|
|
2439
|
-
var INCORRECT_ITERATION = !checkCorrectnessOfIteration(function (iterable) {
|
|
2440
|
-
// eslint-disable-next-line es/no-array-from -- required for testing
|
|
2441
|
-
Array.from(iterable);
|
|
2442
|
-
});
|
|
2443
|
-
|
|
2444
|
-
// `Array.from` method
|
|
2445
|
-
// https://tc39.es/ecma262/#sec-array.from
|
|
2446
|
-
$({ target: 'Array', stat: true, forced: INCORRECT_ITERATION }, {
|
|
2447
|
-
from: from
|
|
2448
|
-
});
|
|
2449
|
-
|
|
2450
|
-
|
|
2451
|
-
/***/ }),
|
|
2452
|
-
|
|
2453
|
-
/***/ 69600:
|
|
2454
|
-
/***/ (function(__unused_webpack_module, __unused_webpack_exports, __webpack_require__) {
|
|
2455
|
-
|
|
2456
|
-
"use strict";
|
|
2457
|
-
|
|
2458
|
-
var $ = __webpack_require__(82109);
|
|
2459
|
-
var IndexedObject = __webpack_require__(68361);
|
|
2460
|
-
var toIndexedObject = __webpack_require__(45656);
|
|
2461
|
-
var arrayMethodIsStrict = __webpack_require__(9341);
|
|
2462
|
-
|
|
2463
|
-
var nativeJoin = [].join;
|
|
2464
|
-
|
|
2465
|
-
var ES3_STRINGS = IndexedObject != Object;
|
|
2466
|
-
var STRICT_METHOD = arrayMethodIsStrict('join', ',');
|
|
2467
|
-
|
|
2468
|
-
// `Array.prototype.join` method
|
|
2469
|
-
// https://tc39.es/ecma262/#sec-array.prototype.join
|
|
2470
|
-
$({ target: 'Array', proto: true, forced: ES3_STRINGS || !STRICT_METHOD }, {
|
|
2471
|
-
join: function join(separator) {
|
|
2472
|
-
return nativeJoin.call(toIndexedObject(this), separator === undefined ? ',' : separator);
|
|
2473
|
-
}
|
|
2474
|
-
});
|
|
2475
|
-
|
|
2476
|
-
|
|
2477
|
-
/***/ }),
|
|
2478
|
-
|
|
2479
|
-
/***/ 21249:
|
|
2480
|
-
/***/ (function(__unused_webpack_module, __unused_webpack_exports, __webpack_require__) {
|
|
2481
|
-
|
|
2482
|
-
"use strict";
|
|
2483
|
-
|
|
2484
|
-
var $ = __webpack_require__(82109);
|
|
2485
|
-
var $map = (__webpack_require__(42092).map);
|
|
2486
|
-
var arrayMethodHasSpeciesSupport = __webpack_require__(81194);
|
|
2487
|
-
|
|
2488
|
-
var HAS_SPECIES_SUPPORT = arrayMethodHasSpeciesSupport('map');
|
|
2489
|
-
|
|
2490
|
-
// `Array.prototype.map` method
|
|
2491
|
-
// https://tc39.es/ecma262/#sec-array.prototype.map
|
|
2492
|
-
// with adding support of @@species
|
|
2493
|
-
$({ target: 'Array', proto: true, forced: !HAS_SPECIES_SUPPORT }, {
|
|
2494
|
-
map: function map(callbackfn /* , thisArg */) {
|
|
2495
|
-
return $map(this, callbackfn, arguments.length > 1 ? arguments[1] : undefined);
|
|
2496
|
-
}
|
|
2497
|
-
});
|
|
2498
|
-
|
|
2499
|
-
|
|
2500
|
-
/***/ }),
|
|
2501
|
-
|
|
2502
|
-
/***/ 47042:
|
|
2503
|
-
/***/ (function(__unused_webpack_module, __unused_webpack_exports, __webpack_require__) {
|
|
2504
|
-
|
|
2505
|
-
"use strict";
|
|
2506
|
-
|
|
2507
|
-
var $ = __webpack_require__(82109);
|
|
2508
|
-
var isObject = __webpack_require__(70111);
|
|
2509
|
-
var isArray = __webpack_require__(43157);
|
|
2510
|
-
var toAbsoluteIndex = __webpack_require__(51400);
|
|
2511
|
-
var toLength = __webpack_require__(17466);
|
|
2512
|
-
var toIndexedObject = __webpack_require__(45656);
|
|
2513
|
-
var createProperty = __webpack_require__(86135);
|
|
2514
|
-
var wellKnownSymbol = __webpack_require__(5112);
|
|
2515
|
-
var arrayMethodHasSpeciesSupport = __webpack_require__(81194);
|
|
2516
|
-
|
|
2517
|
-
var HAS_SPECIES_SUPPORT = arrayMethodHasSpeciesSupport('slice');
|
|
2518
|
-
|
|
2519
|
-
var SPECIES = wellKnownSymbol('species');
|
|
2520
|
-
var nativeSlice = [].slice;
|
|
2521
|
-
var max = Math.max;
|
|
2522
|
-
|
|
2523
|
-
// `Array.prototype.slice` method
|
|
2524
|
-
// https://tc39.es/ecma262/#sec-array.prototype.slice
|
|
2525
|
-
// fallback for not array-like ES3 strings and DOM objects
|
|
2526
|
-
$({ target: 'Array', proto: true, forced: !HAS_SPECIES_SUPPORT }, {
|
|
2527
|
-
slice: function slice(start, end) {
|
|
2528
|
-
var O = toIndexedObject(this);
|
|
2529
|
-
var length = toLength(O.length);
|
|
2530
|
-
var k = toAbsoluteIndex(start, length);
|
|
2531
|
-
var fin = toAbsoluteIndex(end === undefined ? length : end, length);
|
|
2532
|
-
// inline `ArraySpeciesCreate` for usage native `Array#slice` where it's possible
|
|
2533
|
-
var Constructor, result, n;
|
|
2534
|
-
if (isArray(O)) {
|
|
2535
|
-
Constructor = O.constructor;
|
|
2536
|
-
// cross-realm fallback
|
|
2537
|
-
if (typeof Constructor == 'function' && (Constructor === Array || isArray(Constructor.prototype))) {
|
|
2538
|
-
Constructor = undefined;
|
|
2539
|
-
} else if (isObject(Constructor)) {
|
|
2540
|
-
Constructor = Constructor[SPECIES];
|
|
2541
|
-
if (Constructor === null) Constructor = undefined;
|
|
2542
|
-
}
|
|
2543
|
-
if (Constructor === Array || Constructor === undefined) {
|
|
2544
|
-
return nativeSlice.call(O, k, fin);
|
|
2545
|
-
}
|
|
2546
|
-
}
|
|
2547
|
-
result = new (Constructor === undefined ? Array : Constructor)(max(fin - k, 0));
|
|
2548
|
-
for (n = 0; k < fin; k++, n++) if (k in O) createProperty(result, n, O[k]);
|
|
2549
|
-
result.length = n;
|
|
2550
|
-
return result;
|
|
2551
|
-
}
|
|
2552
|
-
});
|
|
2553
|
-
|
|
2554
|
-
|
|
2555
|
-
/***/ }),
|
|
2556
|
-
|
|
2557
|
-
/***/ 68309:
|
|
2558
|
-
/***/ (function(__unused_webpack_module, __unused_webpack_exports, __webpack_require__) {
|
|
2559
|
-
|
|
2560
|
-
var DESCRIPTORS = __webpack_require__(19781);
|
|
2561
|
-
var defineProperty = (__webpack_require__(3070).f);
|
|
2562
|
-
|
|
2563
|
-
var FunctionPrototype = Function.prototype;
|
|
2564
|
-
var FunctionPrototypeToString = FunctionPrototype.toString;
|
|
2565
|
-
var nameRE = /^\s*function ([^ (]*)/;
|
|
2566
|
-
var NAME = 'name';
|
|
2567
|
-
|
|
2568
|
-
// Function instances `.name` property
|
|
2569
|
-
// https://tc39.es/ecma262/#sec-function-instances-name
|
|
2570
|
-
if (DESCRIPTORS && !(NAME in FunctionPrototype)) {
|
|
2571
|
-
defineProperty(FunctionPrototype, NAME, {
|
|
2572
|
-
configurable: true,
|
|
2573
|
-
get: function () {
|
|
2574
|
-
try {
|
|
2575
|
-
return FunctionPrototypeToString.call(this).match(nameRE)[1];
|
|
2576
|
-
} catch (error) {
|
|
2577
|
-
return '';
|
|
2578
|
-
}
|
|
2579
|
-
}
|
|
2580
|
-
});
|
|
2581
|
-
}
|
|
2582
|
-
|
|
2583
|
-
|
|
2584
|
-
/***/ }),
|
|
2585
|
-
|
|
2586
|
-
/***/ 41539:
|
|
2587
|
-
/***/ (function(__unused_webpack_module, __unused_webpack_exports, __webpack_require__) {
|
|
2588
|
-
|
|
2589
|
-
var TO_STRING_TAG_SUPPORT = __webpack_require__(51694);
|
|
2590
|
-
var redefine = __webpack_require__(31320);
|
|
2591
|
-
var toString = __webpack_require__(90288);
|
|
2592
|
-
|
|
2593
|
-
// `Object.prototype.toString` method
|
|
2594
|
-
// https://tc39.es/ecma262/#sec-object.prototype.tostring
|
|
2595
|
-
if (!TO_STRING_TAG_SUPPORT) {
|
|
2596
|
-
redefine(Object.prototype, 'toString', toString, { unsafe: true });
|
|
2597
|
-
}
|
|
2598
|
-
|
|
2599
|
-
|
|
2600
|
-
/***/ }),
|
|
2601
|
-
|
|
2602
|
-
/***/ 74916:
|
|
2603
|
-
/***/ (function(__unused_webpack_module, __unused_webpack_exports, __webpack_require__) {
|
|
2604
|
-
|
|
2605
|
-
"use strict";
|
|
2606
|
-
|
|
2607
|
-
var $ = __webpack_require__(82109);
|
|
2608
|
-
var exec = __webpack_require__(22261);
|
|
2609
|
-
|
|
2610
|
-
// `RegExp.prototype.exec` method
|
|
2611
|
-
// https://tc39.es/ecma262/#sec-regexp.prototype.exec
|
|
2612
|
-
$({ target: 'RegExp', proto: true, forced: /./.exec !== exec }, {
|
|
2613
|
-
exec: exec
|
|
2614
|
-
});
|
|
2615
|
-
|
|
2616
|
-
|
|
2617
|
-
/***/ }),
|
|
2618
|
-
|
|
2619
|
-
/***/ 39714:
|
|
2620
|
-
/***/ (function(__unused_webpack_module, __unused_webpack_exports, __webpack_require__) {
|
|
2621
|
-
|
|
2622
|
-
"use strict";
|
|
2623
|
-
|
|
2624
|
-
var redefine = __webpack_require__(31320);
|
|
2625
|
-
var anObject = __webpack_require__(19670);
|
|
2626
|
-
var fails = __webpack_require__(47293);
|
|
2627
|
-
var flags = __webpack_require__(67066);
|
|
2628
|
-
|
|
2629
|
-
var TO_STRING = 'toString';
|
|
2630
|
-
var RegExpPrototype = RegExp.prototype;
|
|
2631
|
-
var nativeToString = RegExpPrototype[TO_STRING];
|
|
2632
|
-
|
|
2633
|
-
var NOT_GENERIC = fails(function () { return nativeToString.call({ source: 'a', flags: 'b' }) != '/a/b'; });
|
|
2634
|
-
// FF44- RegExp#toString has a wrong name
|
|
2635
|
-
var INCORRECT_NAME = nativeToString.name != TO_STRING;
|
|
2636
|
-
|
|
2637
|
-
// `RegExp.prototype.toString` method
|
|
2638
|
-
// https://tc39.es/ecma262/#sec-regexp.prototype.tostring
|
|
2639
|
-
if (NOT_GENERIC || INCORRECT_NAME) {
|
|
2640
|
-
redefine(RegExp.prototype, TO_STRING, function toString() {
|
|
2641
|
-
var R = anObject(this);
|
|
2642
|
-
var p = String(R.source);
|
|
2643
|
-
var rf = R.flags;
|
|
2644
|
-
var f = String(rf === undefined && R instanceof RegExp && !('flags' in RegExpPrototype) ? flags.call(R) : rf);
|
|
2645
|
-
return '/' + p + '/' + f;
|
|
2646
|
-
}, { unsafe: true });
|
|
2647
|
-
}
|
|
2648
|
-
|
|
2649
|
-
|
|
2650
|
-
/***/ }),
|
|
2651
|
-
|
|
2652
|
-
/***/ 78783:
|
|
2653
|
-
/***/ (function(__unused_webpack_module, __unused_webpack_exports, __webpack_require__) {
|
|
2654
|
-
|
|
2655
|
-
"use strict";
|
|
2656
|
-
|
|
2657
|
-
var charAt = (__webpack_require__(28710).charAt);
|
|
2658
|
-
var InternalStateModule = __webpack_require__(29909);
|
|
2659
|
-
var defineIterator = __webpack_require__(70654);
|
|
2660
|
-
|
|
2661
|
-
var STRING_ITERATOR = 'String Iterator';
|
|
2662
|
-
var setInternalState = InternalStateModule.set;
|
|
2663
|
-
var getInternalState = InternalStateModule.getterFor(STRING_ITERATOR);
|
|
2664
|
-
|
|
2665
|
-
// `String.prototype[@@iterator]` method
|
|
2666
|
-
// https://tc39.es/ecma262/#sec-string.prototype-@@iterator
|
|
2667
|
-
defineIterator(String, 'String', function (iterated) {
|
|
2668
|
-
setInternalState(this, {
|
|
2669
|
-
type: STRING_ITERATOR,
|
|
2670
|
-
string: String(iterated),
|
|
2671
|
-
index: 0
|
|
2672
|
-
});
|
|
2673
|
-
// `%StringIteratorPrototype%.next` method
|
|
2674
|
-
// https://tc39.es/ecma262/#sec-%stringiteratorprototype%.next
|
|
2675
|
-
}, function next() {
|
|
2676
|
-
var state = getInternalState(this);
|
|
2677
|
-
var string = state.string;
|
|
2678
|
-
var index = state.index;
|
|
2679
|
-
var point;
|
|
2680
|
-
if (index >= string.length) return { value: undefined, done: true };
|
|
2681
|
-
point = charAt(string, index);
|
|
2682
|
-
state.index += point.length;
|
|
2683
|
-
return { value: point, done: false };
|
|
2684
|
-
});
|
|
2685
|
-
|
|
2686
|
-
|
|
2687
|
-
/***/ }),
|
|
2688
|
-
|
|
2689
|
-
/***/ 4723:
|
|
2690
|
-
/***/ (function(__unused_webpack_module, __unused_webpack_exports, __webpack_require__) {
|
|
2691
|
-
|
|
2692
|
-
"use strict";
|
|
2693
|
-
|
|
2694
|
-
var fixRegExpWellKnownSymbolLogic = __webpack_require__(27007);
|
|
2695
|
-
var anObject = __webpack_require__(19670);
|
|
2696
|
-
var toLength = __webpack_require__(17466);
|
|
2697
|
-
var requireObjectCoercible = __webpack_require__(84488);
|
|
2698
|
-
var advanceStringIndex = __webpack_require__(31530);
|
|
2699
|
-
var regExpExec = __webpack_require__(97651);
|
|
2700
|
-
|
|
2701
|
-
// @@match logic
|
|
2702
|
-
fixRegExpWellKnownSymbolLogic('match', function (MATCH, nativeMatch, maybeCallNative) {
|
|
2703
|
-
return [
|
|
2704
|
-
// `String.prototype.match` method
|
|
2705
|
-
// https://tc39.es/ecma262/#sec-string.prototype.match
|
|
2706
|
-
function match(regexp) {
|
|
2707
|
-
var O = requireObjectCoercible(this);
|
|
2708
|
-
var matcher = regexp == undefined ? undefined : regexp[MATCH];
|
|
2709
|
-
return matcher !== undefined ? matcher.call(regexp, O) : new RegExp(regexp)[MATCH](String(O));
|
|
2710
|
-
},
|
|
2711
|
-
// `RegExp.prototype[@@match]` method
|
|
2712
|
-
// https://tc39.es/ecma262/#sec-regexp.prototype-@@match
|
|
2713
|
-
function (string) {
|
|
2714
|
-
var res = maybeCallNative(nativeMatch, this, string);
|
|
2715
|
-
if (res.done) return res.value;
|
|
2716
|
-
|
|
2717
|
-
var rx = anObject(this);
|
|
2718
|
-
var S = String(string);
|
|
2719
|
-
|
|
2720
|
-
if (!rx.global) return regExpExec(rx, S);
|
|
2721
|
-
|
|
2722
|
-
var fullUnicode = rx.unicode;
|
|
2723
|
-
rx.lastIndex = 0;
|
|
2724
|
-
var A = [];
|
|
2725
|
-
var n = 0;
|
|
2726
|
-
var result;
|
|
2727
|
-
while ((result = regExpExec(rx, S)) !== null) {
|
|
2728
|
-
var matchStr = String(result[0]);
|
|
2729
|
-
A[n] = matchStr;
|
|
2730
|
-
if (matchStr === '') rx.lastIndex = advanceStringIndex(S, toLength(rx.lastIndex), fullUnicode);
|
|
2731
|
-
n++;
|
|
2732
|
-
}
|
|
2733
|
-
return n === 0 ? null : A;
|
|
2734
|
-
}
|
|
2735
|
-
];
|
|
2736
|
-
});
|
|
2737
|
-
|
|
2738
|
-
|
|
2739
|
-
/***/ }),
|
|
2740
|
-
|
|
2741
|
-
/***/ 15306:
|
|
2742
|
-
/***/ (function(__unused_webpack_module, __unused_webpack_exports, __webpack_require__) {
|
|
2743
|
-
|
|
2744
|
-
"use strict";
|
|
2745
|
-
|
|
2746
|
-
var fixRegExpWellKnownSymbolLogic = __webpack_require__(27007);
|
|
2747
|
-
var fails = __webpack_require__(47293);
|
|
2748
|
-
var anObject = __webpack_require__(19670);
|
|
2749
|
-
var toLength = __webpack_require__(17466);
|
|
2750
|
-
var toInteger = __webpack_require__(99958);
|
|
2751
|
-
var requireObjectCoercible = __webpack_require__(84488);
|
|
2752
|
-
var advanceStringIndex = __webpack_require__(31530);
|
|
2753
|
-
var getSubstitution = __webpack_require__(10647);
|
|
2754
|
-
var regExpExec = __webpack_require__(97651);
|
|
2755
|
-
var wellKnownSymbol = __webpack_require__(5112);
|
|
2756
|
-
|
|
2757
|
-
var REPLACE = wellKnownSymbol('replace');
|
|
2758
|
-
var max = Math.max;
|
|
2759
|
-
var min = Math.min;
|
|
2760
|
-
|
|
2761
|
-
var maybeToString = function (it) {
|
|
2762
|
-
return it === undefined ? it : String(it);
|
|
2763
|
-
};
|
|
2764
|
-
|
|
2765
|
-
// IE <= 11 replaces $0 with the whole match, as if it was $&
|
|
2766
|
-
// https://stackoverflow.com/questions/6024666/getting-ie-to-replace-a-regex-with-the-literal-string-0
|
|
2767
|
-
var REPLACE_KEEPS_$0 = (function () {
|
|
2768
|
-
// eslint-disable-next-line regexp/prefer-escape-replacement-dollar-char -- required for testing
|
|
2769
|
-
return 'a'.replace(/./, '$0') === '$0';
|
|
2770
|
-
})();
|
|
2771
|
-
|
|
2772
|
-
// Safari <= 13.0.3(?) substitutes nth capture where n>m with an empty string
|
|
2773
|
-
var REGEXP_REPLACE_SUBSTITUTES_UNDEFINED_CAPTURE = (function () {
|
|
2774
|
-
if (/./[REPLACE]) {
|
|
2775
|
-
return /./[REPLACE]('a', '$0') === '';
|
|
2776
|
-
}
|
|
2777
|
-
return false;
|
|
2778
|
-
})();
|
|
2779
|
-
|
|
2780
|
-
var REPLACE_SUPPORTS_NAMED_GROUPS = !fails(function () {
|
|
2781
|
-
var re = /./;
|
|
2782
|
-
re.exec = function () {
|
|
2783
|
-
var result = [];
|
|
2784
|
-
result.groups = { a: '7' };
|
|
2785
|
-
return result;
|
|
2786
|
-
};
|
|
2787
|
-
return ''.replace(re, '$<a>') !== '7';
|
|
2788
|
-
});
|
|
2789
|
-
|
|
2790
|
-
// @@replace logic
|
|
2791
|
-
fixRegExpWellKnownSymbolLogic('replace', function (_, nativeReplace, maybeCallNative) {
|
|
2792
|
-
var UNSAFE_SUBSTITUTE = REGEXP_REPLACE_SUBSTITUTES_UNDEFINED_CAPTURE ? '$' : '$0';
|
|
2793
|
-
|
|
2794
|
-
return [
|
|
2795
|
-
// `String.prototype.replace` method
|
|
2796
|
-
// https://tc39.es/ecma262/#sec-string.prototype.replace
|
|
2797
|
-
function replace(searchValue, replaceValue) {
|
|
2798
|
-
var O = requireObjectCoercible(this);
|
|
2799
|
-
var replacer = searchValue == undefined ? undefined : searchValue[REPLACE];
|
|
2800
|
-
return replacer !== undefined
|
|
2801
|
-
? replacer.call(searchValue, O, replaceValue)
|
|
2802
|
-
: nativeReplace.call(String(O), searchValue, replaceValue);
|
|
2803
|
-
},
|
|
2804
|
-
// `RegExp.prototype[@@replace]` method
|
|
2805
|
-
// https://tc39.es/ecma262/#sec-regexp.prototype-@@replace
|
|
2806
|
-
function (string, replaceValue) {
|
|
2807
|
-
if (
|
|
2808
|
-
typeof replaceValue === 'string' &&
|
|
2809
|
-
replaceValue.indexOf(UNSAFE_SUBSTITUTE) === -1 &&
|
|
2810
|
-
replaceValue.indexOf('$<') === -1
|
|
2811
|
-
) {
|
|
2812
|
-
var res = maybeCallNative(nativeReplace, this, string, replaceValue);
|
|
2813
|
-
if (res.done) return res.value;
|
|
2814
|
-
}
|
|
2815
|
-
|
|
2816
|
-
var rx = anObject(this);
|
|
2817
|
-
var S = String(string);
|
|
2818
|
-
|
|
2819
|
-
var functionalReplace = typeof replaceValue === 'function';
|
|
2820
|
-
if (!functionalReplace) replaceValue = String(replaceValue);
|
|
2821
|
-
|
|
2822
|
-
var global = rx.global;
|
|
2823
|
-
if (global) {
|
|
2824
|
-
var fullUnicode = rx.unicode;
|
|
2825
|
-
rx.lastIndex = 0;
|
|
2826
|
-
}
|
|
2827
|
-
var results = [];
|
|
2828
|
-
while (true) {
|
|
2829
|
-
var result = regExpExec(rx, S);
|
|
2830
|
-
if (result === null) break;
|
|
2831
|
-
|
|
2832
|
-
results.push(result);
|
|
2833
|
-
if (!global) break;
|
|
2834
|
-
|
|
2835
|
-
var matchStr = String(result[0]);
|
|
2836
|
-
if (matchStr === '') rx.lastIndex = advanceStringIndex(S, toLength(rx.lastIndex), fullUnicode);
|
|
2837
|
-
}
|
|
2838
|
-
|
|
2839
|
-
var accumulatedResult = '';
|
|
2840
|
-
var nextSourcePosition = 0;
|
|
2841
|
-
for (var i = 0; i < results.length; i++) {
|
|
2842
|
-
result = results[i];
|
|
2843
|
-
|
|
2844
|
-
var matched = String(result[0]);
|
|
2845
|
-
var position = max(min(toInteger(result.index), S.length), 0);
|
|
2846
|
-
var captures = [];
|
|
2847
|
-
// NOTE: This is equivalent to
|
|
2848
|
-
// captures = result.slice(1).map(maybeToString)
|
|
2849
|
-
// but for some reason `nativeSlice.call(result, 1, result.length)` (called in
|
|
2850
|
-
// the slice polyfill when slicing native arrays) "doesn't work" in safari 9 and
|
|
2851
|
-
// causes a crash (https://pastebin.com/N21QzeQA) when trying to debug it.
|
|
2852
|
-
for (var j = 1; j < result.length; j++) captures.push(maybeToString(result[j]));
|
|
2853
|
-
var namedCaptures = result.groups;
|
|
2854
|
-
if (functionalReplace) {
|
|
2855
|
-
var replacerArgs = [matched].concat(captures, position, S);
|
|
2856
|
-
if (namedCaptures !== undefined) replacerArgs.push(namedCaptures);
|
|
2857
|
-
var replacement = String(replaceValue.apply(undefined, replacerArgs));
|
|
2858
|
-
} else {
|
|
2859
|
-
replacement = getSubstitution(matched, S, position, captures, namedCaptures, replaceValue);
|
|
2860
|
-
}
|
|
2861
|
-
if (position >= nextSourcePosition) {
|
|
2862
|
-
accumulatedResult += S.slice(nextSourcePosition, position) + replacement;
|
|
2863
|
-
nextSourcePosition = position + matched.length;
|
|
2864
|
-
}
|
|
2865
|
-
}
|
|
2866
|
-
return accumulatedResult + S.slice(nextSourcePosition);
|
|
2867
|
-
}
|
|
2868
|
-
];
|
|
2869
|
-
}, !REPLACE_SUPPORTS_NAMED_GROUPS || !REPLACE_KEEPS_$0 || REGEXP_REPLACE_SUBSTITUTES_UNDEFINED_CAPTURE);
|
|
2870
|
-
|
|
2871
|
-
|
|
2872
|
-
/***/ }),
|
|
2873
|
-
|
|
2874
|
-
/***/ 23123:
|
|
2875
|
-
/***/ (function(__unused_webpack_module, __unused_webpack_exports, __webpack_require__) {
|
|
2876
|
-
|
|
2877
|
-
"use strict";
|
|
2878
|
-
|
|
2879
|
-
var fixRegExpWellKnownSymbolLogic = __webpack_require__(27007);
|
|
2880
|
-
var isRegExp = __webpack_require__(47850);
|
|
2881
|
-
var anObject = __webpack_require__(19670);
|
|
2882
|
-
var requireObjectCoercible = __webpack_require__(84488);
|
|
2883
|
-
var speciesConstructor = __webpack_require__(36707);
|
|
2884
|
-
var advanceStringIndex = __webpack_require__(31530);
|
|
2885
|
-
var toLength = __webpack_require__(17466);
|
|
2886
|
-
var callRegExpExec = __webpack_require__(97651);
|
|
2887
|
-
var regexpExec = __webpack_require__(22261);
|
|
2888
|
-
var stickyHelpers = __webpack_require__(52999);
|
|
2889
|
-
var fails = __webpack_require__(47293);
|
|
2890
|
-
|
|
2891
|
-
var UNSUPPORTED_Y = stickyHelpers.UNSUPPORTED_Y;
|
|
2892
|
-
var arrayPush = [].push;
|
|
2893
|
-
var min = Math.min;
|
|
2894
|
-
var MAX_UINT32 = 0xFFFFFFFF;
|
|
2895
|
-
|
|
2896
|
-
// Chrome 51 has a buggy "split" implementation when RegExp#exec !== nativeExec
|
|
2897
|
-
// Weex JS has frozen built-in prototypes, so use try / catch wrapper
|
|
2898
|
-
var SPLIT_WORKS_WITH_OVERWRITTEN_EXEC = !fails(function () {
|
|
2899
|
-
// eslint-disable-next-line regexp/no-empty-group -- required for testing
|
|
2900
|
-
var re = /(?:)/;
|
|
2901
|
-
var originalExec = re.exec;
|
|
2902
|
-
re.exec = function () { return originalExec.apply(this, arguments); };
|
|
2903
|
-
var result = 'ab'.split(re);
|
|
2904
|
-
return result.length !== 2 || result[0] !== 'a' || result[1] !== 'b';
|
|
2905
|
-
});
|
|
2906
|
-
|
|
2907
|
-
// @@split logic
|
|
2908
|
-
fixRegExpWellKnownSymbolLogic('split', function (SPLIT, nativeSplit, maybeCallNative) {
|
|
2909
|
-
var internalSplit;
|
|
2910
|
-
if (
|
|
2911
|
-
'abbc'.split(/(b)*/)[1] == 'c' ||
|
|
2912
|
-
// eslint-disable-next-line regexp/no-empty-group -- required for testing
|
|
2913
|
-
'test'.split(/(?:)/, -1).length != 4 ||
|
|
2914
|
-
'ab'.split(/(?:ab)*/).length != 2 ||
|
|
2915
|
-
'.'.split(/(.?)(.?)/).length != 4 ||
|
|
2916
|
-
// eslint-disable-next-line regexp/no-assertion-capturing-group, regexp/no-empty-group -- required for testing
|
|
2917
|
-
'.'.split(/()()/).length > 1 ||
|
|
2918
|
-
''.split(/.?/).length
|
|
2919
|
-
) {
|
|
2920
|
-
// based on es5-shim implementation, need to rework it
|
|
2921
|
-
internalSplit = function (separator, limit) {
|
|
2922
|
-
var string = String(requireObjectCoercible(this));
|
|
2923
|
-
var lim = limit === undefined ? MAX_UINT32 : limit >>> 0;
|
|
2924
|
-
if (lim === 0) return [];
|
|
2925
|
-
if (separator === undefined) return [string];
|
|
2926
|
-
// If `separator` is not a regex, use native split
|
|
2927
|
-
if (!isRegExp(separator)) {
|
|
2928
|
-
return nativeSplit.call(string, separator, lim);
|
|
2929
|
-
}
|
|
2930
|
-
var output = [];
|
|
2931
|
-
var flags = (separator.ignoreCase ? 'i' : '') +
|
|
2932
|
-
(separator.multiline ? 'm' : '') +
|
|
2933
|
-
(separator.unicode ? 'u' : '') +
|
|
2934
|
-
(separator.sticky ? 'y' : '');
|
|
2935
|
-
var lastLastIndex = 0;
|
|
2936
|
-
// Make `global` and avoid `lastIndex` issues by working with a copy
|
|
2937
|
-
var separatorCopy = new RegExp(separator.source, flags + 'g');
|
|
2938
|
-
var match, lastIndex, lastLength;
|
|
2939
|
-
while (match = regexpExec.call(separatorCopy, string)) {
|
|
2940
|
-
lastIndex = separatorCopy.lastIndex;
|
|
2941
|
-
if (lastIndex > lastLastIndex) {
|
|
2942
|
-
output.push(string.slice(lastLastIndex, match.index));
|
|
2943
|
-
if (match.length > 1 && match.index < string.length) arrayPush.apply(output, match.slice(1));
|
|
2944
|
-
lastLength = match[0].length;
|
|
2945
|
-
lastLastIndex = lastIndex;
|
|
2946
|
-
if (output.length >= lim) break;
|
|
2947
|
-
}
|
|
2948
|
-
if (separatorCopy.lastIndex === match.index) separatorCopy.lastIndex++; // Avoid an infinite loop
|
|
2949
|
-
}
|
|
2950
|
-
if (lastLastIndex === string.length) {
|
|
2951
|
-
if (lastLength || !separatorCopy.test('')) output.push('');
|
|
2952
|
-
} else output.push(string.slice(lastLastIndex));
|
|
2953
|
-
return output.length > lim ? output.slice(0, lim) : output;
|
|
2954
|
-
};
|
|
2955
|
-
// Chakra, V8
|
|
2956
|
-
} else if ('0'.split(undefined, 0).length) {
|
|
2957
|
-
internalSplit = function (separator, limit) {
|
|
2958
|
-
return separator === undefined && limit === 0 ? [] : nativeSplit.call(this, separator, limit);
|
|
2959
|
-
};
|
|
2960
|
-
} else internalSplit = nativeSplit;
|
|
2961
|
-
|
|
2962
|
-
return [
|
|
2963
|
-
// `String.prototype.split` method
|
|
2964
|
-
// https://tc39.es/ecma262/#sec-string.prototype.split
|
|
2965
|
-
function split(separator, limit) {
|
|
2966
|
-
var O = requireObjectCoercible(this);
|
|
2967
|
-
var splitter = separator == undefined ? undefined : separator[SPLIT];
|
|
2968
|
-
return splitter !== undefined
|
|
2969
|
-
? splitter.call(separator, O, limit)
|
|
2970
|
-
: internalSplit.call(String(O), separator, limit);
|
|
2971
|
-
},
|
|
2972
|
-
// `RegExp.prototype[@@split]` method
|
|
2973
|
-
// https://tc39.es/ecma262/#sec-regexp.prototype-@@split
|
|
2974
|
-
//
|
|
2975
|
-
// NOTE: This cannot be properly polyfilled in engines that don't support
|
|
2976
|
-
// the 'y' flag.
|
|
2977
|
-
function (string, limit) {
|
|
2978
|
-
var res = maybeCallNative(internalSplit, this, string, limit, internalSplit !== nativeSplit);
|
|
2979
|
-
if (res.done) return res.value;
|
|
2980
|
-
|
|
2981
|
-
var rx = anObject(this);
|
|
2982
|
-
var S = String(string);
|
|
2983
|
-
var C = speciesConstructor(rx, RegExp);
|
|
2984
|
-
|
|
2985
|
-
var unicodeMatching = rx.unicode;
|
|
2986
|
-
var flags = (rx.ignoreCase ? 'i' : '') +
|
|
2987
|
-
(rx.multiline ? 'm' : '') +
|
|
2988
|
-
(rx.unicode ? 'u' : '') +
|
|
2989
|
-
(UNSUPPORTED_Y ? 'g' : 'y');
|
|
2990
|
-
|
|
2991
|
-
// ^(? + rx + ) is needed, in combination with some S slicing, to
|
|
2992
|
-
// simulate the 'y' flag.
|
|
2993
|
-
var splitter = new C(UNSUPPORTED_Y ? '^(?:' + rx.source + ')' : rx, flags);
|
|
2994
|
-
var lim = limit === undefined ? MAX_UINT32 : limit >>> 0;
|
|
2995
|
-
if (lim === 0) return [];
|
|
2996
|
-
if (S.length === 0) return callRegExpExec(splitter, S) === null ? [S] : [];
|
|
2997
|
-
var p = 0;
|
|
2998
|
-
var q = 0;
|
|
2999
|
-
var A = [];
|
|
3000
|
-
while (q < S.length) {
|
|
3001
|
-
splitter.lastIndex = UNSUPPORTED_Y ? 0 : q;
|
|
3002
|
-
var z = callRegExpExec(splitter, UNSUPPORTED_Y ? S.slice(q) : S);
|
|
3003
|
-
var e;
|
|
3004
|
-
if (
|
|
3005
|
-
z === null ||
|
|
3006
|
-
(e = min(toLength(splitter.lastIndex + (UNSUPPORTED_Y ? q : 0)), S.length)) === p
|
|
3007
|
-
) {
|
|
3008
|
-
q = advanceStringIndex(S, q, unicodeMatching);
|
|
3009
|
-
} else {
|
|
3010
|
-
A.push(S.slice(p, q));
|
|
3011
|
-
if (A.length === lim) return A;
|
|
3012
|
-
for (var i = 1; i <= z.length - 1; i++) {
|
|
3013
|
-
A.push(z[i]);
|
|
3014
|
-
if (A.length === lim) return A;
|
|
3015
|
-
}
|
|
3016
|
-
q = p = e;
|
|
3017
|
-
}
|
|
3018
|
-
}
|
|
3019
|
-
A.push(S.slice(p));
|
|
3020
|
-
return A;
|
|
3021
|
-
}
|
|
3022
|
-
];
|
|
3023
|
-
}, !SPLIT_WORKS_WITH_OVERWRITTEN_EXEC, UNSUPPORTED_Y);
|
|
3024
|
-
|
|
3025
|
-
|
|
3026
|
-
/***/ }),
|
|
3027
|
-
|
|
3028
|
-
/***/ 39741:
|
|
4
|
+
/***/ 39786:
|
|
3029
5
|
/***/ (function(module, exports, __webpack_require__) {
|
|
3030
6
|
|
|
3031
7
|
var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_RESULT__;/**
|
|
@@ -3083,7 +59,7 @@ var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_RESULT__;/**
|
|
|
3083
59
|
|
|
3084
60
|
/***/ }),
|
|
3085
61
|
|
|
3086
|
-
/***/
|
|
62
|
+
/***/ 32137:
|
|
3087
63
|
/***/ (function(module, exports, __webpack_require__) {
|
|
3088
64
|
|
|
3089
65
|
var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_RESULT__;/**
|
|
@@ -3200,7 +176,7 @@ return EvEmitter;
|
|
|
3200
176
|
|
|
3201
177
|
/***/ }),
|
|
3202
178
|
|
|
3203
|
-
/***/
|
|
179
|
+
/***/ 977:
|
|
3204
180
|
/***/ (function(module, exports, __webpack_require__) {
|
|
3205
181
|
|
|
3206
182
|
var __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;/**
|
|
@@ -3217,7 +193,7 @@ var __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;/**
|
|
|
3217
193
|
if ( true ) {
|
|
3218
194
|
// AMD
|
|
3219
195
|
!(__WEBPACK_AMD_DEFINE_ARRAY__ = [
|
|
3220
|
-
__webpack_require__(
|
|
196
|
+
__webpack_require__(39786)
|
|
3221
197
|
], __WEBPACK_AMD_DEFINE_RESULT__ = (function( matchesSelector ) {
|
|
3222
198
|
return factory( window, matchesSelector );
|
|
3223
199
|
}).apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__),
|
|
@@ -3437,7 +413,7 @@ return utils;
|
|
|
3437
413
|
|
|
3438
414
|
/***/ }),
|
|
3439
415
|
|
|
3440
|
-
/***/
|
|
416
|
+
/***/ 55839:
|
|
3441
417
|
/***/ (function(module, exports, __webpack_require__) {
|
|
3442
418
|
|
|
3443
419
|
var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;/*!
|
|
@@ -3453,8 +429,8 @@ var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_
|
|
|
3453
429
|
if ( true ) {
|
|
3454
430
|
// AMD
|
|
3455
431
|
!(__WEBPACK_AMD_DEFINE_ARRAY__ = [
|
|
3456
|
-
__webpack_require__(
|
|
3457
|
-
__webpack_require__(
|
|
432
|
+
__webpack_require__(42522),
|
|
433
|
+
__webpack_require__(977)
|
|
3458
434
|
], __WEBPACK_AMD_DEFINE_FACTORY__ = (factory),
|
|
3459
435
|
__WEBPACK_AMD_DEFINE_RESULT__ = (typeof __WEBPACK_AMD_DEFINE_FACTORY__ === 'function' ?
|
|
3460
436
|
(__WEBPACK_AMD_DEFINE_FACTORY__.apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__)) : __WEBPACK_AMD_DEFINE_FACTORY__),
|
|
@@ -3585,7 +561,7 @@ return Flickity;
|
|
|
3585
561
|
|
|
3586
562
|
/***/ }),
|
|
3587
563
|
|
|
3588
|
-
/***/
|
|
564
|
+
/***/ 47777:
|
|
3589
565
|
/***/ (function(module, exports, __webpack_require__) {
|
|
3590
566
|
|
|
3591
567
|
var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;/*!
|
|
@@ -3601,7 +577,7 @@ var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_
|
|
|
3601
577
|
if ( true ) {
|
|
3602
578
|
// AMD
|
|
3603
579
|
!(__WEBPACK_AMD_DEFINE_ARRAY__ = [
|
|
3604
|
-
__webpack_require__(
|
|
580
|
+
__webpack_require__(42522),
|
|
3605
581
|
], __WEBPACK_AMD_DEFINE_FACTORY__ = (factory),
|
|
3606
582
|
__WEBPACK_AMD_DEFINE_RESULT__ = (typeof __WEBPACK_AMD_DEFINE_FACTORY__ === 'function' ?
|
|
3607
583
|
(__WEBPACK_AMD_DEFINE_FACTORY__.apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__)) : __WEBPACK_AMD_DEFINE_FACTORY__),
|
|
@@ -3766,7 +742,7 @@ return Flickity;
|
|
|
3766
742
|
|
|
3767
743
|
/***/ }),
|
|
3768
744
|
|
|
3769
|
-
/***/
|
|
745
|
+
/***/ 69943:
|
|
3770
746
|
/***/ (function(module, exports, __webpack_require__) {
|
|
3771
747
|
|
|
3772
748
|
var __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;// add, remove cell
|
|
@@ -3775,8 +751,8 @@ var __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;// add, remove c
|
|
|
3775
751
|
if ( true ) {
|
|
3776
752
|
// AMD
|
|
3777
753
|
!(__WEBPACK_AMD_DEFINE_ARRAY__ = [
|
|
3778
|
-
__webpack_require__(
|
|
3779
|
-
__webpack_require__(
|
|
754
|
+
__webpack_require__(9249),
|
|
755
|
+
__webpack_require__(977),
|
|
3780
756
|
], __WEBPACK_AMD_DEFINE_RESULT__ = (function( Flickity, utils ) {
|
|
3781
757
|
return factory( window, Flickity, utils );
|
|
3782
758
|
}).apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__),
|
|
@@ -3921,7 +897,7 @@ return Flickity;
|
|
|
3921
897
|
|
|
3922
898
|
/***/ }),
|
|
3923
899
|
|
|
3924
|
-
/***/
|
|
900
|
+
/***/ 22121:
|
|
3925
901
|
/***/ (function(module, exports, __webpack_require__) {
|
|
3926
902
|
|
|
3927
903
|
var __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;// animate
|
|
@@ -3930,7 +906,7 @@ var __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;// animate
|
|
|
3930
906
|
if ( true ) {
|
|
3931
907
|
// AMD
|
|
3932
908
|
!(__WEBPACK_AMD_DEFINE_ARRAY__ = [
|
|
3933
|
-
__webpack_require__(
|
|
909
|
+
__webpack_require__(977),
|
|
3934
910
|
], __WEBPACK_AMD_DEFINE_RESULT__ = (function( utils ) {
|
|
3935
911
|
return factory( window, utils );
|
|
3936
912
|
}).apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__),
|
|
@@ -4118,7 +1094,7 @@ return proto;
|
|
|
4118
1094
|
|
|
4119
1095
|
/***/ }),
|
|
4120
1096
|
|
|
4121
|
-
/***/
|
|
1097
|
+
/***/ 54092:
|
|
4122
1098
|
/***/ (function(module, exports, __webpack_require__) {
|
|
4123
1099
|
|
|
4124
1100
|
var __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;// Flickity.Cell
|
|
@@ -4127,7 +1103,7 @@ var __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;// Flickity.Cell
|
|
|
4127
1103
|
if ( true ) {
|
|
4128
1104
|
// AMD
|
|
4129
1105
|
!(__WEBPACK_AMD_DEFINE_ARRAY__ = [
|
|
4130
|
-
__webpack_require__(
|
|
1106
|
+
__webpack_require__(21485),
|
|
4131
1107
|
], __WEBPACK_AMD_DEFINE_RESULT__ = (function( getSize ) {
|
|
4132
1108
|
return factory( window, getSize );
|
|
4133
1109
|
}).apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__),
|
|
@@ -4215,7 +1191,7 @@ return Cell;
|
|
|
4215
1191
|
|
|
4216
1192
|
/***/ }),
|
|
4217
1193
|
|
|
4218
|
-
/***/
|
|
1194
|
+
/***/ 63170:
|
|
4219
1195
|
/***/ (function(module, exports, __webpack_require__) {
|
|
4220
1196
|
|
|
4221
1197
|
var __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;// drag
|
|
@@ -4224,9 +1200,9 @@ var __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;// drag
|
|
|
4224
1200
|
if ( true ) {
|
|
4225
1201
|
// AMD
|
|
4226
1202
|
!(__WEBPACK_AMD_DEFINE_ARRAY__ = [
|
|
4227
|
-
__webpack_require__(
|
|
4228
|
-
__webpack_require__(
|
|
4229
|
-
__webpack_require__(
|
|
1203
|
+
__webpack_require__(9249),
|
|
1204
|
+
__webpack_require__(86377),
|
|
1205
|
+
__webpack_require__(977),
|
|
4230
1206
|
], __WEBPACK_AMD_DEFINE_RESULT__ = (function( Flickity, Unidragger, utils ) {
|
|
4231
1207
|
return factory( window, Flickity, Unidragger, utils );
|
|
4232
1208
|
}).apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__),
|
|
@@ -4604,7 +1580,7 @@ return Flickity;
|
|
|
4604
1580
|
|
|
4605
1581
|
/***/ }),
|
|
4606
1582
|
|
|
4607
|
-
/***/
|
|
1583
|
+
/***/ 9249:
|
|
4608
1584
|
/***/ (function(module, exports, __webpack_require__) {
|
|
4609
1585
|
|
|
4610
1586
|
var __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;// Flickity main
|
|
@@ -4614,12 +1590,12 @@ var __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;// Flickity main
|
|
|
4614
1590
|
if ( true ) {
|
|
4615
1591
|
// AMD
|
|
4616
1592
|
!(__WEBPACK_AMD_DEFINE_ARRAY__ = [
|
|
4617
|
-
__webpack_require__(
|
|
4618
|
-
__webpack_require__(
|
|
4619
|
-
__webpack_require__(
|
|
4620
|
-
__webpack_require__(
|
|
4621
|
-
__webpack_require__(
|
|
4622
|
-
__webpack_require__(
|
|
1593
|
+
__webpack_require__(32137),
|
|
1594
|
+
__webpack_require__(21485),
|
|
1595
|
+
__webpack_require__(977),
|
|
1596
|
+
__webpack_require__(54092),
|
|
1597
|
+
__webpack_require__(61331),
|
|
1598
|
+
__webpack_require__(22121),
|
|
4623
1599
|
], __WEBPACK_AMD_DEFINE_RESULT__ = (function( EvEmitter, getSize, utils, Cell, Slide, animatePrototype ) {
|
|
4624
1600
|
return factory( window, EvEmitter, getSize, utils, Cell, Slide, animatePrototype );
|
|
4625
1601
|
}).apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__),
|
|
@@ -5523,7 +2499,7 @@ return Flickity;
|
|
|
5523
2499
|
|
|
5524
2500
|
/***/ }),
|
|
5525
2501
|
|
|
5526
|
-
/***/
|
|
2502
|
+
/***/ 42522:
|
|
5527
2503
|
/***/ (function(module, exports, __webpack_require__) {
|
|
5528
2504
|
|
|
5529
2505
|
var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;/*!
|
|
@@ -5542,13 +2518,13 @@ var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_
|
|
|
5542
2518
|
if ( true ) {
|
|
5543
2519
|
// AMD
|
|
5544
2520
|
!(__WEBPACK_AMD_DEFINE_ARRAY__ = [
|
|
5545
|
-
__webpack_require__(
|
|
5546
|
-
__webpack_require__(
|
|
5547
|
-
__webpack_require__(
|
|
5548
|
-
__webpack_require__(
|
|
5549
|
-
__webpack_require__(
|
|
5550
|
-
__webpack_require__(
|
|
5551
|
-
__webpack_require__(
|
|
2521
|
+
__webpack_require__(9249),
|
|
2522
|
+
__webpack_require__(63170),
|
|
2523
|
+
__webpack_require__(27824),
|
|
2524
|
+
__webpack_require__(7728),
|
|
2525
|
+
__webpack_require__(79453),
|
|
2526
|
+
__webpack_require__(69943),
|
|
2527
|
+
__webpack_require__(70766),
|
|
5552
2528
|
], __WEBPACK_AMD_DEFINE_FACTORY__ = (factory),
|
|
5553
2529
|
__WEBPACK_AMD_DEFINE_RESULT__ = (typeof __WEBPACK_AMD_DEFINE_FACTORY__ === 'function' ?
|
|
5554
2530
|
(__WEBPACK_AMD_DEFINE_FACTORY__.apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__)) : __WEBPACK_AMD_DEFINE_FACTORY__),
|
|
@@ -5562,7 +2538,7 @@ var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_
|
|
|
5562
2538
|
|
|
5563
2539
|
/***/ }),
|
|
5564
2540
|
|
|
5565
|
-
/***/
|
|
2541
|
+
/***/ 70766:
|
|
5566
2542
|
/***/ (function(module, exports, __webpack_require__) {
|
|
5567
2543
|
|
|
5568
2544
|
var __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;// lazyload
|
|
@@ -5571,8 +2547,8 @@ var __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;// lazyload
|
|
|
5571
2547
|
if ( true ) {
|
|
5572
2548
|
// AMD
|
|
5573
2549
|
!(__WEBPACK_AMD_DEFINE_ARRAY__ = [
|
|
5574
|
-
__webpack_require__(
|
|
5575
|
-
__webpack_require__(
|
|
2550
|
+
__webpack_require__(9249),
|
|
2551
|
+
__webpack_require__(977),
|
|
5576
2552
|
], __WEBPACK_AMD_DEFINE_RESULT__ = (function( Flickity, utils ) {
|
|
5577
2553
|
return factory( window, Flickity, utils );
|
|
5578
2554
|
}).apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__),
|
|
@@ -5691,7 +2667,7 @@ return Flickity;
|
|
|
5691
2667
|
|
|
5692
2668
|
/***/ }),
|
|
5693
2669
|
|
|
5694
|
-
/***/
|
|
2670
|
+
/***/ 7728:
|
|
5695
2671
|
/***/ (function(module, exports, __webpack_require__) {
|
|
5696
2672
|
|
|
5697
2673
|
var __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;// page dots
|
|
@@ -5700,9 +2676,9 @@ var __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;// page dots
|
|
|
5700
2676
|
if ( true ) {
|
|
5701
2677
|
// AMD
|
|
5702
2678
|
!(__WEBPACK_AMD_DEFINE_ARRAY__ = [
|
|
5703
|
-
__webpack_require__(
|
|
5704
|
-
__webpack_require__(
|
|
5705
|
-
__webpack_require__(
|
|
2679
|
+
__webpack_require__(9249),
|
|
2680
|
+
__webpack_require__(52475),
|
|
2681
|
+
__webpack_require__(977),
|
|
5706
2682
|
], __WEBPACK_AMD_DEFINE_RESULT__ = (function( Flickity, Unipointer, utils ) {
|
|
5707
2683
|
return factory( window, Flickity, Unipointer, utils );
|
|
5708
2684
|
}).apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__),
|
|
@@ -5870,7 +2846,7 @@ return Flickity;
|
|
|
5870
2846
|
|
|
5871
2847
|
/***/ }),
|
|
5872
2848
|
|
|
5873
|
-
/***/
|
|
2849
|
+
/***/ 79453:
|
|
5874
2850
|
/***/ (function(module, exports, __webpack_require__) {
|
|
5875
2851
|
|
|
5876
2852
|
var __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;// player & autoPlay
|
|
@@ -5879,9 +2855,9 @@ var __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;// player & auto
|
|
|
5879
2855
|
if ( true ) {
|
|
5880
2856
|
// AMD
|
|
5881
2857
|
!(__WEBPACK_AMD_DEFINE_ARRAY__ = [
|
|
5882
|
-
__webpack_require__(
|
|
5883
|
-
__webpack_require__(
|
|
5884
|
-
__webpack_require__(
|
|
2858
|
+
__webpack_require__(32137),
|
|
2859
|
+
__webpack_require__(977),
|
|
2860
|
+
__webpack_require__(9249),
|
|
5885
2861
|
], __WEBPACK_AMD_DEFINE_RESULT__ = (function( EvEmitter, utils, Flickity ) {
|
|
5886
2862
|
return factory( EvEmitter, utils, Flickity );
|
|
5887
2863
|
}).apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__),
|
|
@@ -6054,7 +3030,7 @@ return Flickity;
|
|
|
6054
3030
|
|
|
6055
3031
|
/***/ }),
|
|
6056
3032
|
|
|
6057
|
-
/***/
|
|
3033
|
+
/***/ 27824:
|
|
6058
3034
|
/***/ (function(module, exports, __webpack_require__) {
|
|
6059
3035
|
|
|
6060
3036
|
var __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;// prev/next buttons
|
|
@@ -6063,9 +3039,9 @@ var __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;// prev/next but
|
|
|
6063
3039
|
if ( true ) {
|
|
6064
3040
|
// AMD
|
|
6065
3041
|
!(__WEBPACK_AMD_DEFINE_ARRAY__ = [
|
|
6066
|
-
__webpack_require__(
|
|
6067
|
-
__webpack_require__(
|
|
6068
|
-
__webpack_require__(
|
|
3042
|
+
__webpack_require__(9249),
|
|
3043
|
+
__webpack_require__(52475),
|
|
3044
|
+
__webpack_require__(977),
|
|
6069
3045
|
], __WEBPACK_AMD_DEFINE_RESULT__ = (function( Flickity, Unipointer, utils ) {
|
|
6070
3046
|
return factory( window, Flickity, Unipointer, utils );
|
|
6071
3047
|
}).apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__),
|
|
@@ -6256,7 +3232,7 @@ return Flickity;
|
|
|
6256
3232
|
|
|
6257
3233
|
/***/ }),
|
|
6258
3234
|
|
|
6259
|
-
/***/
|
|
3235
|
+
/***/ 61331:
|
|
6260
3236
|
/***/ (function(module, exports, __webpack_require__) {
|
|
6261
3237
|
|
|
6262
3238
|
var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_RESULT__;// slide
|
|
@@ -6333,7 +3309,7 @@ return Slide;
|
|
|
6333
3309
|
|
|
6334
3310
|
/***/ }),
|
|
6335
3311
|
|
|
6336
|
-
/***/
|
|
3312
|
+
/***/ 21485:
|
|
6337
3313
|
/***/ (function(module, exports, __webpack_require__) {
|
|
6338
3314
|
|
|
6339
3315
|
var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_RESULT__;/*!
|
|
@@ -6545,7 +3521,7 @@ return getSize;
|
|
|
6545
3521
|
|
|
6546
3522
|
/***/ }),
|
|
6547
3523
|
|
|
6548
|
-
/***/
|
|
3524
|
+
/***/ 47943:
|
|
6549
3525
|
/***/ (function(module, exports, __webpack_require__) {
|
|
6550
3526
|
|
|
6551
3527
|
var __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;/*!
|
|
@@ -6562,7 +3538,7 @@ var __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;/*!
|
|
|
6562
3538
|
if ( true ) {
|
|
6563
3539
|
// AMD
|
|
6564
3540
|
!(__WEBPACK_AMD_DEFINE_ARRAY__ = [
|
|
6565
|
-
__webpack_require__(
|
|
3541
|
+
__webpack_require__(32137)
|
|
6566
3542
|
], __WEBPACK_AMD_DEFINE_RESULT__ = (function( EvEmitter ) {
|
|
6567
3543
|
return factory( window, EvEmitter );
|
|
6568
3544
|
}).apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__),
|
|
@@ -6918,7 +3894,7 @@ return ImagesLoaded;
|
|
|
6918
3894
|
|
|
6919
3895
|
/***/ }),
|
|
6920
3896
|
|
|
6921
|
-
/***/
|
|
3897
|
+
/***/ 86377:
|
|
6922
3898
|
/***/ (function(module, exports, __webpack_require__) {
|
|
6923
3899
|
|
|
6924
3900
|
var __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;/*!
|
|
@@ -6936,7 +3912,7 @@ var __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;/*!
|
|
|
6936
3912
|
if ( true ) {
|
|
6937
3913
|
// AMD
|
|
6938
3914
|
!(__WEBPACK_AMD_DEFINE_ARRAY__ = [
|
|
6939
|
-
__webpack_require__(
|
|
3915
|
+
__webpack_require__(52475)
|
|
6940
3916
|
], __WEBPACK_AMD_DEFINE_RESULT__ = (function( Unipointer ) {
|
|
6941
3917
|
return factory( window, Unipointer );
|
|
6942
3918
|
}).apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__),
|
|
@@ -7197,7 +4173,7 @@ return Unidragger;
|
|
|
7197
4173
|
|
|
7198
4174
|
/***/ }),
|
|
7199
4175
|
|
|
7200
|
-
/***/
|
|
4176
|
+
/***/ 52475:
|
|
7201
4177
|
/***/ (function(module, exports, __webpack_require__) {
|
|
7202
4178
|
|
|
7203
4179
|
var __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;/*!
|
|
@@ -7214,7 +4190,7 @@ var __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;/*!
|
|
|
7214
4190
|
if ( true ) {
|
|
7215
4191
|
// AMD
|
|
7216
4192
|
!(__WEBPACK_AMD_DEFINE_ARRAY__ = [
|
|
7217
|
-
__webpack_require__(
|
|
4193
|
+
__webpack_require__(32137)
|
|
7218
4194
|
], __WEBPACK_AMD_DEFINE_RESULT__ = (function( EvEmitter ) {
|
|
7219
4195
|
return factory( window, EvEmitter );
|
|
7220
4196
|
}).apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__),
|
|
@@ -7545,18 +4521,6 @@ return Unipointer;
|
|
|
7545
4521
|
/******/ };
|
|
7546
4522
|
/******/ }();
|
|
7547
4523
|
/******/
|
|
7548
|
-
/******/ /* webpack/runtime/global */
|
|
7549
|
-
/******/ !function() {
|
|
7550
|
-
/******/ __webpack_require__.g = (function() {
|
|
7551
|
-
/******/ if (typeof globalThis === 'object') return globalThis;
|
|
7552
|
-
/******/ try {
|
|
7553
|
-
/******/ return this || new Function('return this')();
|
|
7554
|
-
/******/ } catch (e) {
|
|
7555
|
-
/******/ if (typeof window === 'object') return window;
|
|
7556
|
-
/******/ }
|
|
7557
|
-
/******/ })();
|
|
7558
|
-
/******/ }();
|
|
7559
|
-
/******/
|
|
7560
4524
|
/******/ /* webpack/runtime/hasOwnProperty shorthand */
|
|
7561
4525
|
/******/ !function() {
|
|
7562
4526
|
/******/ __webpack_require__.o = function(obj, prop) { return Object.prototype.hasOwnProperty.call(obj, prop); }
|
|
@@ -7568,45 +4532,18 @@ var __webpack_exports__ = {};
|
|
|
7568
4532
|
!function() {
|
|
7569
4533
|
"use strict";
|
|
7570
4534
|
|
|
7571
|
-
// EXTERNAL MODULE: ./node_modules/core-js/modules/es.array.find.js
|
|
7572
|
-
var es_array_find = __webpack_require__(69826);
|
|
7573
|
-
// EXTERNAL MODULE: ./node_modules/core-js/modules/es.function.name.js
|
|
7574
|
-
var es_function_name = __webpack_require__(68309);
|
|
7575
|
-
// EXTERNAL MODULE: ./node_modules/core-js/modules/es.regexp.exec.js
|
|
7576
|
-
var es_regexp_exec = __webpack_require__(74916);
|
|
7577
|
-
// EXTERNAL MODULE: ./node_modules/core-js/modules/es.string.replace.js
|
|
7578
|
-
var es_string_replace = __webpack_require__(15306);
|
|
7579
|
-
// EXTERNAL MODULE: ./node_modules/core-js/modules/es.array.join.js
|
|
7580
|
-
var es_array_join = __webpack_require__(69600);
|
|
7581
|
-
// EXTERNAL MODULE: ./node_modules/core-js/modules/es.array.map.js
|
|
7582
|
-
var es_array_map = __webpack_require__(21249);
|
|
7583
|
-
// EXTERNAL MODULE: ./node_modules/core-js/modules/es.array.from.js
|
|
7584
|
-
var es_array_from = __webpack_require__(91038);
|
|
7585
|
-
// EXTERNAL MODULE: ./node_modules/core-js/modules/es.string.iterator.js
|
|
7586
|
-
var es_string_iterator = __webpack_require__(78783);
|
|
7587
4535
|
;// CONCATENATED MODULE: ./assets/components/atoms/upload/upload.js
|
|
7588
|
-
|
|
7589
|
-
|
|
7590
|
-
|
|
7591
|
-
|
|
7592
|
-
|
|
7593
|
-
|
|
7594
|
-
|
|
7595
|
-
|
|
7596
|
-
|
|
7597
4536
|
/* globals $ */
|
|
7598
|
-
/* harmony default export */ var upload = (
|
|
4537
|
+
/* harmony default export */ var upload = (() => {
|
|
7599
4538
|
$('.upload').find('input[type="file"]').each(function () {
|
|
7600
|
-
|
|
7601
|
-
|
|
7602
|
-
$input.on('change',
|
|
7603
|
-
|
|
7604
|
-
|
|
4539
|
+
const $input = $(this);
|
|
4540
|
+
const $preview = $input.next().next('.upload-preview');
|
|
4541
|
+
$input.on('change', () => {
|
|
4542
|
+
const files = $input[0].files;
|
|
4543
|
+
let previewContent = files[0].name;
|
|
7605
4544
|
|
|
7606
4545
|
if (files.length > 1) {
|
|
7607
|
-
previewContent =
|
|
7608
|
-
return "<li>".concat(file.name, "</li>");
|
|
7609
|
-
}).join().replace(/,/g, ''), "</ul>");
|
|
4546
|
+
previewContent = `<ul>${Array.from(files).map(file => `<li>${file.name}</li>`).join().replace(/,/g, '')}</ul>`;
|
|
7610
4547
|
}
|
|
7611
4548
|
|
|
7612
4549
|
$preview.html(previewContent);
|
|
@@ -7615,20 +4552,20 @@ var es_string_iterator = __webpack_require__(78783);
|
|
|
7615
4552
|
});
|
|
7616
4553
|
;// CONCATENATED MODULE: ./assets/components/molecules/breadcrumb/breadcrumb.js
|
|
7617
4554
|
/* globals $ */
|
|
7618
|
-
/* harmony default export */ var breadcrumb = (
|
|
7619
|
-
|
|
7620
|
-
|
|
4555
|
+
/* harmony default export */ var breadcrumb = (() => {
|
|
4556
|
+
const expandBreadcrumb = $('.btn-expand-links');
|
|
4557
|
+
const breadcrumbDropToggle = $('.dropdown-toggle'); // add class 'has-expanded-links'
|
|
7621
4558
|
|
|
7622
|
-
expandBreadcrumb.on('click',
|
|
4559
|
+
expandBreadcrumb.on('click', () => {
|
|
7623
4560
|
$('.breadcrumb-wrapper .breadcrumb').addClass('has-expanded-links');
|
|
7624
4561
|
}); // improve dropdown position
|
|
7625
4562
|
|
|
7626
|
-
breadcrumbDropToggle.on('click',
|
|
7627
|
-
|
|
7628
|
-
|
|
7629
|
-
|
|
7630
|
-
|
|
7631
|
-
|
|
4563
|
+
breadcrumbDropToggle.on('click', e => {
|
|
4564
|
+
const btnPos = $(e.currentTarget).offset().left;
|
|
4565
|
+
const documentWitdh = $(document).width();
|
|
4566
|
+
const dropdown = $(e.currentTarget).siblings('.dropdown-menu');
|
|
4567
|
+
const dropdownWidth = dropdown.width();
|
|
4568
|
+
const btnOffset = documentWitdh - btnPos; // remove class 'open-left' from all .dropdown-menu elements
|
|
7632
4569
|
|
|
7633
4570
|
$('.dropdown-menu').removeClass('open-left'); // add the class back if the dropdown is too close to the right side of the window
|
|
7634
4571
|
|
|
@@ -7639,7 +4576,7 @@ var es_string_iterator = __webpack_require__(78783);
|
|
|
7639
4576
|
});
|
|
7640
4577
|
;// CONCATENATED MODULE: ./assets/components/molecules/datepicker/datepicker.js
|
|
7641
4578
|
/* globals $ */
|
|
7642
|
-
/* harmony default export */ var datepicker = (
|
|
4579
|
+
/* harmony default export */ var datepicker = (() => {
|
|
7643
4580
|
$('.datepicker').pickadate({
|
|
7644
4581
|
monthsFull: ['Janvier', 'Février', 'Mars', 'Avril', 'Mai', 'Juin', 'Juillet', 'Août', 'Septembre', 'Octobre', 'Novembre', 'Décembre'],
|
|
7645
4582
|
monthsShort: ['Jan', 'Fév', 'Mar', 'Avr', 'Mai', 'Jui', 'Jui', 'Aoû', 'Sep', 'Oct', 'Nov', 'Déc'],
|
|
@@ -7656,28 +4593,21 @@ var es_string_iterator = __webpack_require__(78783);
|
|
|
7656
4593
|
close: ''
|
|
7657
4594
|
});
|
|
7658
4595
|
});
|
|
7659
|
-
// EXTERNAL MODULE: ./node_modules/core-js/modules/es.array.concat.js
|
|
7660
|
-
var es_array_concat = __webpack_require__(92222);
|
|
7661
|
-
// EXTERNAL MODULE: ./node_modules/core-js/modules/es.array.slice.js
|
|
7662
|
-
var es_array_slice = __webpack_require__(47042);
|
|
7663
4596
|
;// CONCATENATED MODULE: ./assets/components/molecules/datepicker/datepicker-fancy.js
|
|
7664
|
-
|
|
7665
|
-
|
|
7666
|
-
|
|
7667
4597
|
/* globals $ */
|
|
7668
|
-
/* harmony default export */ var datepicker_fancy = (
|
|
4598
|
+
/* harmony default export */ var datepicker_fancy = (() => {
|
|
7669
4599
|
// initialise booleans to enable or disable js mobile features, based on css breakpoints
|
|
7670
|
-
|
|
7671
|
-
|
|
7672
|
-
|
|
7673
|
-
|
|
7674
|
-
|
|
4600
|
+
let isMobile = false;
|
|
4601
|
+
let showLastMonthWeek = false;
|
|
4602
|
+
let initialWeek = false;
|
|
4603
|
+
const now = new Date();
|
|
4604
|
+
const timestamp = new Date(now.getFullYear(), now.getMonth(), now.getDate()) / 1;
|
|
7675
4605
|
/*
|
|
7676
4606
|
* define if all dates in a row are disabled
|
|
7677
4607
|
*/
|
|
7678
4608
|
|
|
7679
4609
|
function isRowDisabled(weekNum, container) {
|
|
7680
|
-
|
|
4610
|
+
const disabledCount = $(`tbody tr:nth-child(${weekNum}) .picker__day--outfocus`, container).length;
|
|
7681
4611
|
|
|
7682
4612
|
if (disabledCount === 7) {
|
|
7683
4613
|
return true;
|
|
@@ -7691,7 +4621,7 @@ var es_array_slice = __webpack_require__(47042);
|
|
|
7691
4621
|
|
|
7692
4622
|
|
|
7693
4623
|
function handlePrevNext(container, selected) {
|
|
7694
|
-
|
|
4624
|
+
let weekNum = $('tr', container).index($('tr:has(.picker__day--selected)', container));
|
|
7695
4625
|
|
|
7696
4626
|
if (initialWeek) {
|
|
7697
4627
|
weekNum = initialWeek;
|
|
@@ -7713,7 +4643,7 @@ var es_array_slice = __webpack_require__(47042);
|
|
|
7713
4643
|
|
|
7714
4644
|
|
|
7715
4645
|
$('tbody', container).attr('data-week', weekNum);
|
|
7716
|
-
$('.picker__nav--next', container).on('click',
|
|
4646
|
+
$('.picker__nav--next', container).on('click', e => {
|
|
7717
4647
|
if (weekNum < 6 && !isRowDisabled(weekNum + 1, container)) {
|
|
7718
4648
|
// if we are not displaying the last row:
|
|
7719
4649
|
// disable built-in behaviour and update data attribute
|
|
@@ -7727,7 +4657,7 @@ var es_array_slice = __webpack_require__(47042);
|
|
|
7727
4657
|
weekNum = 1;
|
|
7728
4658
|
}
|
|
7729
4659
|
});
|
|
7730
|
-
$('.picker__nav--prev', container).on('click',
|
|
4660
|
+
$('.picker__nav--prev', container).on('click', e => {
|
|
7731
4661
|
if (weekNum > 1) {
|
|
7732
4662
|
// if we are not displaying the first row:
|
|
7733
4663
|
// disable built-in behaviour and update visual to show previous week
|
|
@@ -7763,18 +4693,18 @@ var es_array_slice = __webpack_require__(47042);
|
|
|
7763
4693
|
|
|
7764
4694
|
|
|
7765
4695
|
function handleMonthLabels(picker, months) {
|
|
7766
|
-
|
|
4696
|
+
const alreadyHandled = $('.nextMonthLabel', picker.$holder).length > 0;
|
|
7767
4697
|
|
|
7768
4698
|
if (alreadyHandled) {
|
|
7769
4699
|
return true;
|
|
7770
4700
|
}
|
|
7771
4701
|
|
|
7772
|
-
|
|
7773
|
-
|
|
7774
|
-
|
|
7775
|
-
|
|
4702
|
+
const wrapper = picker.component.$node.parent();
|
|
4703
|
+
const next = $('.nextMonthLabel', wrapper);
|
|
4704
|
+
const prev = $('.prevMonthLabel', wrapper);
|
|
4705
|
+
let nextMonthIndex = picker.component.item.view.month + 1;
|
|
7776
4706
|
if (nextMonthIndex === months.length) nextMonthIndex = 0;
|
|
7777
|
-
|
|
4707
|
+
let prevMonthIndex = picker.component.item.view.month - 1;
|
|
7778
4708
|
if (prevMonthIndex < 0) prevMonthIndex = 11;
|
|
7779
4709
|
next.html(months[nextMonthIndex]);
|
|
7780
4710
|
prev.html(months[prevMonthIndex]);
|
|
@@ -7789,9 +4719,9 @@ var es_array_slice = __webpack_require__(47042);
|
|
|
7789
4719
|
function setHighlights(container) {
|
|
7790
4720
|
// we check all displayed dates, and highlight the ones we want to
|
|
7791
4721
|
$('.picker__day--infocus', container).each(function () {
|
|
7792
|
-
|
|
7793
|
-
|
|
7794
|
-
|
|
4722
|
+
const currentTimestamp = $(this).data('pick');
|
|
4723
|
+
const date = new Date(currentTimestamp);
|
|
4724
|
+
const dateString = `${date.getFullYear()}-${`0${date.getMonth() + 1}`.slice(-2)}-${`0${date.getDate()}`.slice(-2)}`; // this is arbitrary. change this with personal logic when needed and add you own class
|
|
7795
4725
|
|
|
7796
4726
|
if (dateString === '2018-03-28') {
|
|
7797
4727
|
$(this).addClass('custom-highlight');
|
|
@@ -7804,11 +4734,11 @@ var es_array_slice = __webpack_require__(47042);
|
|
|
7804
4734
|
|
|
7805
4735
|
|
|
7806
4736
|
$('.datepicker-fancy').each(function () {
|
|
7807
|
-
|
|
7808
|
-
|
|
4737
|
+
const monthsShort = ['Jan', 'Fév', 'Mar', 'Avr', 'Mai', 'Jui', 'Jui', 'Aoû', 'Sep', 'Oct', 'Nov', 'Déc'];
|
|
4738
|
+
const container = $(this).parent();
|
|
7809
4739
|
$(this).pickadate({
|
|
7810
4740
|
monthsFull: ['Janvier', 'Février', 'Mars', 'Avril', 'Mai', 'Juin', 'Juillet', 'Août', 'Septembre', 'Octobre', 'Novembre', 'Décembre'],
|
|
7811
|
-
monthsShort
|
|
4741
|
+
monthsShort,
|
|
7812
4742
|
weekdaysFull: ['Dimanche', 'Lundi', 'Mardi', 'Mercredi', 'Jeudi', 'Vendredi', 'Samedi'],
|
|
7813
4743
|
weekdaysShort: ['Dim', 'Lun', 'Mar', 'Mer', 'Jeu', 'Ven', 'Sam'],
|
|
7814
4744
|
labelMonthNext: 'Prochain mois',
|
|
@@ -7820,7 +4750,8 @@ var es_array_slice = __webpack_require__(47042);
|
|
|
7820
4750
|
today: '',
|
|
7821
4751
|
clear: '',
|
|
7822
4752
|
close: '',
|
|
7823
|
-
|
|
4753
|
+
|
|
4754
|
+
onRender() {
|
|
7824
4755
|
handleMonthLabels(this, monthsShort);
|
|
7825
4756
|
|
|
7826
4757
|
if (isMobile) {
|
|
@@ -7828,11 +4759,12 @@ var es_array_slice = __webpack_require__(47042);
|
|
|
7828
4759
|
handlePrevNext(container);
|
|
7829
4760
|
}
|
|
7830
4761
|
},
|
|
7831
|
-
|
|
4762
|
+
|
|
4763
|
+
onStart() {
|
|
7832
4764
|
selectToday(this);
|
|
7833
4765
|
setHighlights(this); // focus on today's week on start
|
|
7834
4766
|
|
|
7835
|
-
|
|
4767
|
+
const selected = $('tr:has(.picker__day--selected)', container);
|
|
7836
4768
|
|
|
7837
4769
|
if (selected.length > 0) {
|
|
7838
4770
|
initialWeek = $('tr', container).index(selected);
|
|
@@ -7841,12 +4773,13 @@ var es_array_slice = __webpack_require__(47042);
|
|
|
7841
4773
|
|
|
7842
4774
|
isMobile = $('.datepicker-fancy + .picker table').css('display') === 'block';
|
|
7843
4775
|
}
|
|
4776
|
+
|
|
7844
4777
|
});
|
|
7845
4778
|
});
|
|
7846
4779
|
});
|
|
7847
4780
|
;// CONCATENATED MODULE: ./assets/components/atoms/popover/popover.js
|
|
7848
4781
|
/* globals $ */
|
|
7849
|
-
/* harmony default export */ var popover = (
|
|
4782
|
+
/* harmony default export */ var popover = (() => {
|
|
7850
4783
|
$(function () {
|
|
7851
4784
|
$('[data-toggle="popover"]').popover({
|
|
7852
4785
|
placement: 'top',
|
|
@@ -7857,19 +4790,16 @@ var es_array_slice = __webpack_require__(47042);
|
|
|
7857
4790
|
});
|
|
7858
4791
|
});
|
|
7859
4792
|
// EXTERNAL MODULE: ./node_modules/flickity/js/index.js
|
|
7860
|
-
var js = __webpack_require__(
|
|
4793
|
+
var js = __webpack_require__(42522);
|
|
7861
4794
|
var js_default = /*#__PURE__*/__webpack_require__.n(js);
|
|
7862
4795
|
// EXTERNAL MODULE: ./node_modules/flickity-fullscreen/fullscreen.js
|
|
7863
|
-
var fullscreen = __webpack_require__(
|
|
4796
|
+
var fullscreen = __webpack_require__(47777);
|
|
7864
4797
|
// EXTERNAL MODULE: ./node_modules/flickity-as-nav-for/as-nav-for.js
|
|
7865
|
-
var as_nav_for = __webpack_require__(
|
|
4798
|
+
var as_nav_for = __webpack_require__(55839);
|
|
7866
4799
|
// EXTERNAL MODULE: ./node_modules/imagesloaded/imagesloaded.js
|
|
7867
|
-
var imagesloaded = __webpack_require__(
|
|
4800
|
+
var imagesloaded = __webpack_require__(47943);
|
|
7868
4801
|
var imagesloaded_default = /*#__PURE__*/__webpack_require__.n(imagesloaded);
|
|
7869
4802
|
;// CONCATENATED MODULE: ./assets/components/molecules/gallery/gallery.js
|
|
7870
|
-
|
|
7871
|
-
|
|
7872
|
-
|
|
7873
4803
|
/* globals $ */
|
|
7874
4804
|
|
|
7875
4805
|
|
|
@@ -7877,12 +4807,14 @@ var imagesloaded_default = /*#__PURE__*/__webpack_require__.n(imagesloaded);
|
|
|
7877
4807
|
|
|
7878
4808
|
|
|
7879
4809
|
function setFlickityOnGallery($gallery) {
|
|
7880
|
-
|
|
4810
|
+
const $items = $gallery.find('.gallery-item'); // Toggle opacity to avoid load blink
|
|
7881
4811
|
|
|
7882
4812
|
$gallery.addClass('ready'); // Add counter
|
|
7883
4813
|
|
|
7884
4814
|
$items.each(function (i) {
|
|
7885
|
-
$(this).find('figcaption').append(
|
|
4815
|
+
$(this).find('figcaption').append(`
|
|
4816
|
+
<span class="gallery-counter">${i + 1}/${$items.length}</span>
|
|
4817
|
+
`);
|
|
7886
4818
|
}); // Instantiate Flickity gallery
|
|
7887
4819
|
|
|
7888
4820
|
new (js_default())($gallery.get(0), {
|
|
@@ -7895,30 +4827,30 @@ function setFlickityOnGallery($gallery) {
|
|
|
7895
4827
|
$('.flickity-fullscreen-button-view svg path').attr('d', 'M32,11.9h-2.7V6.5H24V3.8h8V11.9z M24,28.2v-2.7h5.3v-5.4H32v8.2H24z M0,20.1h2.7v5.4H8v2.7H0V20.1z M8,3.8v2.7H2.7v5.4H0V3.8H8z');
|
|
7896
4828
|
$('.flickity-fullscreen-button-exit svg path').attr('d', 'M18.1,16l13.4,13.4c0.6,0.6,0.6,1.5,0,2.1c-0.6,0.6-1.5,0.6-2.1,0L16,18.1L2.6,31.6c-0.6,0.6-1.5,0.6-2.1,0c-0.6-0.6-0.6-1.5,0-2.1l0,0L13.9,16L0.4,2.6C-0.1,2-0.1,1,0.4,0.4s1.5-0.6,2.1,0L16,13.9L29.4,0.4c0.6-0.6,1.5-0.6,2.1,0c0.6,0.6,0.6,1.5,0,2.1L18.1,16z'); // Improve prev/next buttons position
|
|
7897
4829
|
|
|
7898
|
-
|
|
7899
|
-
$gallery.find('.flickity-prev-next-button').css('top',
|
|
4830
|
+
const height = $gallery.find('.gallery-item.is-selected img').height();
|
|
4831
|
+
$gallery.find('.flickity-prev-next-button').css('top', `${height / 2}px`);
|
|
7900
4832
|
}
|
|
7901
4833
|
|
|
7902
4834
|
function setFlickityGalleryNav($galleryNav) {
|
|
7903
4835
|
$galleryNav.imagesLoaded().always(function (instance) {
|
|
7904
|
-
|
|
4836
|
+
const target = $galleryNav.data('gallery'); // Toggle opacity to avoid load blink
|
|
7905
4837
|
|
|
7906
4838
|
$galleryNav.addClass('ready'); // Instantiate Flickity nav
|
|
7907
4839
|
|
|
7908
4840
|
new (js_default())($galleryNav.get(0), {
|
|
7909
|
-
asNavFor:
|
|
4841
|
+
asNavFor: `#${target}`,
|
|
7910
4842
|
cellAlign: 'left',
|
|
7911
4843
|
pageDots: false,
|
|
7912
4844
|
prevNextButtons: false,
|
|
7913
4845
|
contain: true
|
|
7914
4846
|
});
|
|
7915
4847
|
}).fail(function () {
|
|
7916
|
-
console.log(
|
|
4848
|
+
console.log(`one image is broken for a gallery nav`);
|
|
7917
4849
|
});
|
|
7918
4850
|
}
|
|
7919
4851
|
|
|
7920
|
-
/* harmony default export */ var gallery = (
|
|
7921
|
-
|
|
4852
|
+
/* harmony default export */ var gallery = (() => {
|
|
4853
|
+
const $galleries = $('.gallery'); // Base gallery logic
|
|
7922
4854
|
|
|
7923
4855
|
if ($galleries.length > 0) {
|
|
7924
4856
|
console.log('starting to gallerynav');
|
|
@@ -7926,7 +4858,7 @@ function setFlickityGalleryNav($galleryNav) {
|
|
|
7926
4858
|
$(this).imagesLoaded().always(function (instance) {
|
|
7927
4859
|
setFlickityOnGallery($($galleries[i])); // once the galary is loaded, try to find any nav linked for the current gallery
|
|
7928
4860
|
|
|
7929
|
-
|
|
4861
|
+
const $galleryNavs = $(`.gallery-nav[data-gallery='${$galleries[i].id}']`);
|
|
7930
4862
|
|
|
7931
4863
|
if ($galleryNavs.length > 0) {
|
|
7932
4864
|
$galleryNavs.each(function (j) {
|
|
@@ -7934,36 +4866,34 @@ function setFlickityGalleryNav($galleryNav) {
|
|
|
7934
4866
|
});
|
|
7935
4867
|
}
|
|
7936
4868
|
}).fail(function () {
|
|
7937
|
-
console.log(
|
|
4869
|
+
console.log(`one image is broken for a gallery`);
|
|
7938
4870
|
});
|
|
7939
4871
|
});
|
|
7940
4872
|
}
|
|
7941
4873
|
});
|
|
7942
4874
|
;// CONCATENATED MODULE: ./assets/components/molecules/social/social.js
|
|
7943
4875
|
/* globals $, ClipboardJS */
|
|
7944
|
-
/* harmony default export */ var social = (
|
|
4876
|
+
/* harmony default export */ var social = (() => {
|
|
7945
4877
|
$('.social-share-copy').each(function () {
|
|
7946
|
-
|
|
7947
|
-
|
|
7948
|
-
|
|
7949
|
-
|
|
7950
|
-
target:
|
|
4878
|
+
const copyBtn = $(this);
|
|
4879
|
+
const baseText = copyBtn.text();
|
|
4880
|
+
const successText = copyBtn.data('success');
|
|
4881
|
+
const clipboard = new ClipboardJS(copyBtn[0], {
|
|
4882
|
+
target: trigger => {
|
|
7951
4883
|
return $(trigger).prev("input")[0];
|
|
7952
4884
|
}
|
|
7953
4885
|
});
|
|
7954
|
-
clipboard.on('success',
|
|
4886
|
+
clipboard.on('success', e => {
|
|
7955
4887
|
$(e.trigger).text(successText);
|
|
7956
|
-
setTimeout(
|
|
7957
|
-
return $(e.trigger).text(baseText);
|
|
7958
|
-
}, 3000);
|
|
4888
|
+
setTimeout(() => $(e.trigger).text(baseText), 3000);
|
|
7959
4889
|
e.clearSelection();
|
|
7960
4890
|
});
|
|
7961
4891
|
});
|
|
7962
4892
|
});
|
|
7963
4893
|
;// CONCATENATED MODULE: ./assets/components/atoms/select/select-multiple.js
|
|
7964
4894
|
/* globals $ */
|
|
7965
|
-
/* harmony default export */ var select_multiple = (
|
|
7966
|
-
$('.select-multiple').each(
|
|
4895
|
+
/* harmony default export */ var select_multiple = (() => {
|
|
4896
|
+
$('.select-multiple').each((index, element) => {
|
|
7967
4897
|
$(element).multipleSelect({
|
|
7968
4898
|
placeholder: $(element).attr('data-placeholder') || '',
|
|
7969
4899
|
width: '100%'
|
|
@@ -7972,36 +4902,30 @@ function setFlickityGalleryNav($galleryNav) {
|
|
|
7972
4902
|
});
|
|
7973
4903
|
;// CONCATENATED MODULE: ./assets/components/atoms/tag/tag-input.js
|
|
7974
4904
|
/* globals $ */
|
|
7975
|
-
/* harmony default export */ var tag_input = (
|
|
4905
|
+
/* harmony default export */ var tag_input = (() => {
|
|
7976
4906
|
$('.tag-input').selectize({
|
|
7977
4907
|
plugins: ['remove_button'],
|
|
7978
4908
|
render: {
|
|
7979
|
-
item:
|
|
7980
|
-
return "<div class=\"tag tag-primary\">".concat(escape(data.text), "</div>");
|
|
7981
|
-
}
|
|
4909
|
+
item: (data, escape) => `<div class="tag tag-primary">${escape(data.text)}</div>`
|
|
7982
4910
|
},
|
|
7983
|
-
create:
|
|
7984
|
-
|
|
7985
|
-
|
|
7986
|
-
|
|
7987
|
-
};
|
|
7988
|
-
}
|
|
4911
|
+
create: input => ({
|
|
4912
|
+
value: input,
|
|
4913
|
+
text: input
|
|
4914
|
+
})
|
|
7989
4915
|
});
|
|
7990
4916
|
});
|
|
7991
4917
|
;// CONCATENATED MODULE: ./assets/components/organisms/card-slider/card-slider.js
|
|
7992
|
-
|
|
7993
|
-
|
|
7994
4918
|
/* globals $ */
|
|
7995
4919
|
|
|
7996
4920
|
|
|
7997
|
-
/* harmony default export */ var card_slider = (
|
|
4921
|
+
/* harmony default export */ var card_slider = (() => {
|
|
7998
4922
|
if ($('.card-slider-wrapper').length > 0) {
|
|
7999
4923
|
// Mobile width corresponds to SM breakpoint from Bootstrap.
|
|
8000
|
-
|
|
8001
|
-
$(".card-slider-wrapper").each(
|
|
8002
|
-
|
|
8003
|
-
|
|
8004
|
-
imagesloaded_default()(cardSlider,
|
|
4924
|
+
const isMobile = $(window).width() < 768;
|
|
4925
|
+
$(".card-slider-wrapper").each((index, cardSliderWrapper) => {
|
|
4926
|
+
let flkty;
|
|
4927
|
+
let cardSlider = $(cardSliderWrapper).find('.card-slider')[0];
|
|
4928
|
+
imagesloaded_default()(cardSlider, () => {
|
|
8005
4929
|
flkty = new (js_default())(cardSlider, {
|
|
8006
4930
|
cellAlign: 'left',
|
|
8007
4931
|
setGallerySize: true,
|
|
@@ -8010,14 +4934,14 @@ function setFlickityGalleryNav($galleryNav) {
|
|
|
8010
4934
|
contain: true,
|
|
8011
4935
|
groupCells: false
|
|
8012
4936
|
});
|
|
8013
|
-
$(cardSliderWrapper).find('#card-slider-prev').on('click',
|
|
4937
|
+
$(cardSliderWrapper).find('#card-slider-prev').on('click', () => {
|
|
8014
4938
|
flkty.previous();
|
|
8015
4939
|
});
|
|
8016
|
-
$(cardSliderWrapper).find('#card-slider-next').on('click',
|
|
4940
|
+
$(cardSliderWrapper).find('#card-slider-next').on('click', () => {
|
|
8017
4941
|
flkty.next();
|
|
8018
4942
|
});
|
|
8019
4943
|
$(cardSliderWrapper).find('.card-slider-cell').css('height', '100%');
|
|
8020
|
-
flkty.on('select',
|
|
4944
|
+
flkty.on('select', () => {
|
|
8021
4945
|
$(cardSliderWrapper).find('.card-slider-btn').removeClass('disabled');
|
|
8022
4946
|
|
|
8023
4947
|
if (flkty.selectedIndex === 0) {
|
|
@@ -8033,7 +4957,7 @@ function setFlickityGalleryNav($galleryNav) {
|
|
|
8033
4957
|
}
|
|
8034
4958
|
});
|
|
8035
4959
|
;// CONCATENATED MODULE: ./assets/icons/svg-icons.js
|
|
8036
|
-
|
|
4960
|
+
const svgIcons = () => {
|
|
8037
4961
|
loadIcons(window.svgPath || 'icons/icons.svg');
|
|
8038
4962
|
loadIcons(window.featherSvgPath || 'icons/feather-sprite.svg');
|
|
8039
4963
|
};
|
|
@@ -8041,13 +4965,13 @@ var svgIcons = function svgIcons() {
|
|
|
8041
4965
|
/* harmony default export */ var svg_icons = (svgIcons);
|
|
8042
4966
|
|
|
8043
4967
|
function loadIcons(svgPath) {
|
|
8044
|
-
|
|
4968
|
+
const ajax = new XMLHttpRequest();
|
|
8045
4969
|
ajax.open('GET', svgPath, true);
|
|
8046
4970
|
ajax.send();
|
|
8047
4971
|
|
|
8048
4972
|
ajax.onload = function (e) {
|
|
8049
4973
|
if (e.target.status === 200) {
|
|
8050
|
-
|
|
4974
|
+
const div = document.createElement('div');
|
|
8051
4975
|
div.setAttribute('style', 'display: none');
|
|
8052
4976
|
div.innerHTML = ajax.responseText;
|
|
8053
4977
|
document.body.insertAdjacentElement('beforeend', div);
|
|
@@ -8056,17 +4980,17 @@ function loadIcons(svgPath) {
|
|
|
8056
4980
|
}
|
|
8057
4981
|
;// CONCATENATED MODULE: ./assets/components/organisms/nav-main/nav-main.js
|
|
8058
4982
|
/* global $ */
|
|
8059
|
-
|
|
4983
|
+
const nav = () => {
|
|
8060
4984
|
// declare classes used to identify current menu and its parents (based on wordpress classes)
|
|
8061
|
-
|
|
8062
|
-
|
|
4985
|
+
const activeClass = 'current-menu-parent';
|
|
4986
|
+
const parentClass = 'current-menu-ancestor'; // toggle mobile navigation
|
|
8063
4987
|
|
|
8064
|
-
|
|
4988
|
+
const toggleMobileMenu = () => {
|
|
8065
4989
|
// handle correct menu display when on level 0 page on mobile
|
|
8066
|
-
|
|
4990
|
+
const firstLeveItem = $('.nav-main .nav-menu>.current-menu-item');
|
|
8067
4991
|
|
|
8068
4992
|
if (firstLeveItem.length > 0) {
|
|
8069
|
-
|
|
4993
|
+
const parent = firstLeveItem.parents()[1];
|
|
8070
4994
|
$(parent).addClass(activeClass);
|
|
8071
4995
|
}
|
|
8072
4996
|
|
|
@@ -8075,12 +4999,11 @@ var nav = function nav() {
|
|
|
8075
4999
|
// Used for the hamburger desktop menu to display current position
|
|
8076
5000
|
|
|
8077
5001
|
|
|
8078
|
-
|
|
8079
|
-
|
|
8080
|
-
var navToggle = $('.nav-toggle');
|
|
5002
|
+
const toggleDesktopMenu = (mustOpen = false) => {
|
|
5003
|
+
const navToggle = $('.nav-toggle');
|
|
8081
5004
|
navToggle.toggleClass('open');
|
|
8082
|
-
|
|
8083
|
-
|
|
5005
|
+
const offsetX = navToggle.offset().left + navToggle.outerWidth(true);
|
|
5006
|
+
const offsetY = navToggle.offset().top - $(window).scrollTop();
|
|
8084
5007
|
$('.nav-main').css('top', offsetY);
|
|
8085
5008
|
$('body').toggleClass('desktop-menu-open');
|
|
8086
5009
|
|
|
@@ -8095,10 +5018,10 @@ var nav = function nav() {
|
|
|
8095
5018
|
|
|
8096
5019
|
$('.nav-main .nav-back a').on('click', function (e) {
|
|
8097
5020
|
e.preventDefault();
|
|
8098
|
-
|
|
8099
|
-
|
|
5021
|
+
const parents = $(this).parents();
|
|
5022
|
+
const parent = parents[2];
|
|
8100
5023
|
$(parent).removeClass(parentClass).removeClass(activeClass);
|
|
8101
|
-
|
|
5024
|
+
const ancestor = parents[4];
|
|
8102
5025
|
$(ancestor).removeClass(parentClass).addClass(activeClass);
|
|
8103
5026
|
});
|
|
8104
5027
|
/*
|
|
@@ -8109,18 +5032,18 @@ var nav = function nav() {
|
|
|
8109
5032
|
|
|
8110
5033
|
$('.nav-main .nav-arrow').on('click', function (e) {
|
|
8111
5034
|
e.preventDefault();
|
|
8112
|
-
|
|
8113
|
-
|
|
5035
|
+
const parents = $(this).parents();
|
|
5036
|
+
const parent = parents[0];
|
|
8114
5037
|
$(parent).addClass(activeClass);
|
|
8115
|
-
|
|
5038
|
+
const ancestor = parents[2];
|
|
8116
5039
|
$(ancestor).addClass(parentClass).removeClass(activeClass);
|
|
8117
5040
|
}); // bind action to mobile menu toggle
|
|
8118
5041
|
|
|
8119
|
-
$('.nav-toggle-mobile').on('click',
|
|
5042
|
+
$('.nav-toggle-mobile').on('click', () => {
|
|
8120
5043
|
toggleMobileMenu();
|
|
8121
5044
|
}); // Bind action to close toggle navigation, when clicking the white overlay
|
|
8122
5045
|
|
|
8123
|
-
$('.overlay').on('click',
|
|
5046
|
+
$('.overlay').on('click', e => {
|
|
8124
5047
|
e.preventDefault();
|
|
8125
5048
|
toggleDesktopMenu();
|
|
8126
5049
|
}); // Bind action to the desktop hamburger (next to breadcrumbs)
|
|
@@ -8131,9 +5054,7 @@ var nav = function nav() {
|
|
|
8131
5054
|
$(this).addClass('is-loading'); // Demo of loading resolution
|
|
8132
5055
|
|
|
8133
5056
|
if ($('#styleguide').length > 0) {
|
|
8134
|
-
setTimeout(
|
|
8135
|
-
return $('.nav-toggle-async').trigger('loadend');
|
|
8136
|
-
}, 700);
|
|
5057
|
+
setTimeout(() => $('.nav-toggle-async').trigger('loadend'), 700);
|
|
8137
5058
|
}
|
|
8138
5059
|
} else {
|
|
8139
5060
|
toggleDesktopMenu(true);
|
|
@@ -8148,15 +5069,13 @@ var nav = function nav() {
|
|
|
8148
5069
|
|
|
8149
5070
|
/* harmony default export */ var nav_main = (nav);
|
|
8150
5071
|
;// CONCATENATED MODULE: ./assets/components/atoms/drawer/drawer.js
|
|
8151
|
-
|
|
8152
|
-
|
|
8153
5072
|
/* global $ */
|
|
8154
|
-
|
|
5073
|
+
const drawer = () => {
|
|
8155
5074
|
$('.drawer-toggle').click(function () {
|
|
8156
|
-
|
|
8157
|
-
|
|
8158
|
-
|
|
8159
|
-
|
|
5075
|
+
const $drawer = $(this).parent('.drawer');
|
|
5076
|
+
const $drawerLink = $drawer.find('.drawer-link');
|
|
5077
|
+
const $drawerToggle = $(this);
|
|
5078
|
+
const breakpoint = 992;
|
|
8160
5079
|
|
|
8161
5080
|
if ($drawer.hasClass('open')) {
|
|
8162
5081
|
$drawer.removeClass('open');
|
|
@@ -8167,7 +5086,7 @@ var drawer = function drawer() {
|
|
|
8167
5086
|
width: $drawerToggle.width()
|
|
8168
5087
|
});
|
|
8169
5088
|
} else {
|
|
8170
|
-
|
|
5089
|
+
let linkWidth = '100%';
|
|
8171
5090
|
|
|
8172
5091
|
if ($(window).width() > breakpoint) {
|
|
8173
5092
|
linkWidth = $drawerLink.find('.text').outerWidth();
|
|
@@ -8187,19 +5106,17 @@ var drawer = function drawer() {
|
|
|
8187
5106
|
/* harmony default export */ var drawer_drawer = (drawer);
|
|
8188
5107
|
;// CONCATENATED MODULE: ./assets/components/molecules/search/search.js
|
|
8189
5108
|
/* global $ */
|
|
8190
|
-
/* harmony default export */ var search = (
|
|
8191
|
-
$('.search').on('shown.bs.dropdown',
|
|
5109
|
+
/* harmony default export */ var search = (() => {
|
|
5110
|
+
$('.search').on('shown.bs.dropdown', () => {
|
|
8192
5111
|
$('.search input[type="text"]').trigger('focus');
|
|
8193
5112
|
});
|
|
8194
5113
|
});
|
|
8195
5114
|
;// CONCATENATED MODULE: ./assets/components/molecules/search/search-mobile.js
|
|
8196
|
-
|
|
8197
|
-
|
|
8198
5115
|
/* global $ */
|
|
8199
|
-
/* harmony default export */ var search_mobile = (
|
|
8200
|
-
$('#search-mobile-toggle').on('click',
|
|
8201
|
-
|
|
8202
|
-
|
|
5116
|
+
/* harmony default export */ var search_mobile = (() => {
|
|
5117
|
+
$('#search-mobile-toggle').on('click', () => {
|
|
5118
|
+
const searchContainer = $('.search-mobile');
|
|
5119
|
+
const searchField = searchContainer.find('.form-control');
|
|
8203
5120
|
searchContainer.toggleClass('show');
|
|
8204
5121
|
$('body').toggleClass('search-open');
|
|
8205
5122
|
|
|
@@ -8207,38 +5124,30 @@ var drawer = function drawer() {
|
|
|
8207
5124
|
searchField.trigger('focus');
|
|
8208
5125
|
}
|
|
8209
5126
|
});
|
|
8210
|
-
$('#search-mobile-close').on('click',
|
|
8211
|
-
|
|
5127
|
+
$('#search-mobile-close').on('click', () => {
|
|
5128
|
+
const searchContainer = $('.search-mobile');
|
|
8212
5129
|
searchContainer.removeClass('show');
|
|
8213
5130
|
$('body').removeClass('search-open');
|
|
8214
5131
|
});
|
|
8215
5132
|
});
|
|
8216
|
-
// EXTERNAL MODULE: ./node_modules/core-js/modules/es.object.to-string.js
|
|
8217
|
-
var es_object_to_string = __webpack_require__(41539);
|
|
8218
|
-
// EXTERNAL MODULE: ./node_modules/core-js/modules/es.regexp.to-string.js
|
|
8219
|
-
var es_regexp_to_string = __webpack_require__(39714);
|
|
8220
5133
|
;// CONCATENATED MODULE: ./assets/components/content-types/coursebook/coursebook.js
|
|
8221
|
-
|
|
8222
|
-
|
|
8223
|
-
|
|
8224
|
-
|
|
8225
5134
|
/* global $ */
|
|
8226
|
-
/* harmony default export */ var coursebook = (
|
|
8227
|
-
|
|
8228
|
-
$('.coursebook-program .tree>li').each(
|
|
5135
|
+
/* harmony default export */ var coursebook = (() => {
|
|
5136
|
+
const id = new Date().getTime().toString(16);
|
|
5137
|
+
$('.coursebook-program .tree>li').each((i, collapse) => {
|
|
8229
5138
|
// identify toggle and target
|
|
8230
|
-
|
|
8231
|
-
|
|
5139
|
+
const toggle = $('.underline a', collapse);
|
|
5140
|
+
const target = $('>ul', collapse); // generate page-unique id
|
|
8232
5141
|
|
|
8233
|
-
|
|
5142
|
+
const itemId = `${id}-${i}`; // set correct attributes
|
|
8234
5143
|
|
|
8235
5144
|
target.addClass('collapse collapse-item collapse-item-desktop');
|
|
8236
5145
|
toggle.addClass('collapse-title collapse-title-desktop collapsed');
|
|
8237
5146
|
target.attr('id', itemId);
|
|
8238
|
-
toggle.attr('data-target',
|
|
5147
|
+
toggle.attr('data-target', `#${itemId}`);
|
|
8239
5148
|
toggle.attr('data-toggle', 'collapse'); // automatically add full width buttons at the end of the collapse
|
|
8240
5149
|
|
|
8241
|
-
|
|
5150
|
+
const link = $('<a></a>');
|
|
8242
5151
|
link.addClass('btn btn-block btn-sm btn-primary my-3');
|
|
8243
5152
|
link.html("Voir le plan d'études");
|
|
8244
5153
|
link.attr('href', toggle.attr('href'));
|
|
@@ -8246,44 +5155,34 @@ var es_regexp_to_string = __webpack_require__(39714);
|
|
|
8246
5155
|
});
|
|
8247
5156
|
});
|
|
8248
5157
|
;// CONCATENATED MODULE: ./assets/components/content-types/study-plan/study-plan.js
|
|
8249
|
-
|
|
8250
|
-
|
|
8251
5158
|
/* global $ */
|
|
8252
|
-
/* harmony default export */ var study_plan = (
|
|
5159
|
+
/* harmony default export */ var study_plan = (() => {
|
|
8253
5160
|
$('.btn-collapse').click(function () {
|
|
8254
|
-
|
|
8255
|
-
|
|
5161
|
+
const parent = $(this).parent(".line");
|
|
5162
|
+
const toggleIcon = $(this).find("span");
|
|
8256
5163
|
parent.toggleClass('open');
|
|
8257
5164
|
toggleIcon.toggleClass('show');
|
|
8258
5165
|
});
|
|
8259
5166
|
});
|
|
8260
|
-
// EXTERNAL MODULE: ./node_modules/core-js/modules/es.string.split.js
|
|
8261
|
-
var es_string_split = __webpack_require__(23123);
|
|
8262
5167
|
;// CONCATENATED MODULE: ./assets/components/organisms/cookie-consent/cookie-consent.js
|
|
8263
|
-
|
|
8264
|
-
|
|
8265
|
-
|
|
8266
|
-
|
|
8267
5168
|
/* globals jQuery */
|
|
8268
|
-
|
|
5169
|
+
let bannerElement;
|
|
8269
5170
|
|
|
8270
5171
|
function cookieConsent(opt_visible) {
|
|
8271
5172
|
if (bannerElement) {
|
|
8272
5173
|
setVisibility(bannerElement, opt_visible);
|
|
8273
5174
|
} else {
|
|
8274
|
-
window.cookieconsent.initialise(get_cookieconsent_config(),
|
|
5175
|
+
window.cookieconsent.initialise(get_cookieconsent_config(), popup => {
|
|
8275
5176
|
bannerElement = popup.element;
|
|
8276
5177
|
setVisibility(bannerElement, opt_visible);
|
|
8277
|
-
},
|
|
8278
|
-
return console.error(err);
|
|
8279
|
-
});
|
|
5178
|
+
}, err => console.error(err));
|
|
8280
5179
|
|
|
8281
|
-
window.cookieconsent.initialise =
|
|
5180
|
+
window.cookieconsent.initialise = () => {};
|
|
8282
5181
|
}
|
|
8283
5182
|
}
|
|
8284
5183
|
|
|
8285
5184
|
jQuery.fn.extend({
|
|
8286
|
-
cookieConsent
|
|
5185
|
+
cookieConsent
|
|
8287
5186
|
});
|
|
8288
5187
|
/* harmony default export */ var cookie_consent = (cookieConsent);
|
|
8289
5188
|
|
|
@@ -8297,7 +5196,7 @@ function setVisibility(cookieBanner, visible) {
|
|
|
8297
5196
|
|
|
8298
5197
|
function get_cookieconsent_config() {
|
|
8299
5198
|
// Translation
|
|
8300
|
-
|
|
5199
|
+
const cookieI18n = {
|
|
8301
5200
|
en: {
|
|
8302
5201
|
msg: 'When you access EPFL websites, we may set cookies on your ' + 'devices and process personal data about you in accordance with ' + 'our <a tabindex="0" class="cc-link" target="_blank" ' + 'href="//go.epfl.ch/privacy-policy">privacy policy</a>. ' + 'You can block cookies by using your browser settings.'
|
|
8303
5202
|
},
|
|
@@ -8309,8 +5208,8 @@ function get_cookieconsent_config() {
|
|
|
8309
5208
|
}
|
|
8310
5209
|
}; // Retrieve language, default 'fr'
|
|
8311
5210
|
|
|
8312
|
-
|
|
8313
|
-
|
|
5211
|
+
const langAttribute = document.documentElement.lang;
|
|
5212
|
+
let lang = langAttribute.substring(0, 2);
|
|
8314
5213
|
|
|
8315
5214
|
if (!cookieI18n[lang]) {
|
|
8316
5215
|
lang = 'fr';
|
|
@@ -8318,20 +5217,20 @@ function get_cookieconsent_config() {
|
|
|
8318
5217
|
// Don't work with google.co.uk for example
|
|
8319
5218
|
|
|
8320
5219
|
|
|
8321
|
-
|
|
8322
|
-
|
|
5220
|
+
let domain_name = 'epfl.ch';
|
|
5221
|
+
const hostame = window.location.hostname;
|
|
8323
5222
|
|
|
8324
5223
|
if (hostame === 'localhost' || hostame === '127.0.0.1') {
|
|
8325
5224
|
domain_name = hostame;
|
|
8326
5225
|
} else {
|
|
8327
|
-
|
|
5226
|
+
const hostParts = hostame.split('.').reverse();
|
|
8328
5227
|
|
|
8329
5228
|
if (hostParts[0] !== undefined && hostParts[1] !== undefined) {
|
|
8330
|
-
domain_name =
|
|
5229
|
+
domain_name = `${hostParts[1]}.${hostParts[0]}`;
|
|
8331
5230
|
}
|
|
8332
5231
|
}
|
|
8333
5232
|
|
|
8334
|
-
|
|
5233
|
+
const config = {
|
|
8335
5234
|
theme: 'classic',
|
|
8336
5235
|
palette: {
|
|
8337
5236
|
popup: {
|
|
@@ -8358,8 +5257,8 @@ function get_cookieconsent_config() {
|
|
|
8358
5257
|
}
|
|
8359
5258
|
;// CONCATENATED MODULE: ./assets/components/organisms/footer/back-to-top-button.js
|
|
8360
5259
|
/* globals $ */
|
|
8361
|
-
/* harmony default export */ var back_to_top_button = (
|
|
8362
|
-
|
|
5260
|
+
/* harmony default export */ var back_to_top_button = (() => {
|
|
5261
|
+
const backToTopBtn = $('#back-to-top');
|
|
8363
5262
|
$(window).scroll(function () {
|
|
8364
5263
|
if ($(window).scrollTop() > 500) {
|
|
8365
5264
|
backToTopBtn.addClass('show');
|
|
@@ -8374,16 +5273,11 @@ function get_cookieconsent_config() {
|
|
|
8374
5273
|
}, '300');
|
|
8375
5274
|
});
|
|
8376
5275
|
});
|
|
8377
|
-
// EXTERNAL MODULE: ./node_modules/core-js/modules/es.string.match.js
|
|
8378
|
-
var es_string_match = __webpack_require__(4723);
|
|
8379
5276
|
;// CONCATENATED MODULE: ./assets/components/anchors.js
|
|
8380
|
-
|
|
8381
|
-
|
|
8382
|
-
|
|
8383
5277
|
/* global $ */
|
|
8384
|
-
/* harmony default export */ var components_anchors = (
|
|
8385
|
-
$('a').on('click',
|
|
8386
|
-
|
|
5278
|
+
/* harmony default export */ var components_anchors = (() => {
|
|
5279
|
+
$('a').on('click', e => {
|
|
5280
|
+
const target_href = $(e.target).attr('href');
|
|
8387
5281
|
|
|
8388
5282
|
if (target_href && target_href.length > 1 && target_href.match('^#')) {
|
|
8389
5283
|
$(e.target)[0].scrollIntoView();
|
|
@@ -8391,25 +5285,25 @@ var es_string_match = __webpack_require__(4723);
|
|
|
8391
5285
|
});
|
|
8392
5286
|
});
|
|
8393
5287
|
;// CONCATENATED MODULE: ./assets/components/atoms/range/range.js
|
|
8394
|
-
/* harmony default export */ var range = (
|
|
5288
|
+
/* harmony default export */ var range = (() => {
|
|
8395
5289
|
// Create colored progress bar for damn webkit browsers >.<
|
|
8396
|
-
|
|
5290
|
+
const rangeSlider = document.querySelector('input[type=range]');
|
|
8397
5291
|
|
|
8398
5292
|
if (rangeSlider) {
|
|
8399
5293
|
rangeSlider.style.setProperty('--val', +rangeSlider.value);
|
|
8400
5294
|
rangeSlider.style.setProperty('--max', +rangeSlider.max);
|
|
8401
5295
|
rangeSlider.style.setProperty('--min', +rangeSlider.min);
|
|
8402
|
-
rangeSlider.addEventListener('input',
|
|
5296
|
+
rangeSlider.addEventListener('input', () => {
|
|
8403
5297
|
rangeSlider.style.setProperty('--val', +rangeSlider.value);
|
|
8404
5298
|
}, false);
|
|
8405
5299
|
}
|
|
8406
5300
|
});
|
|
8407
5301
|
;// CONCATENATED MODULE: ./assets/components/organisms/restauration/restauration.js
|
|
8408
5302
|
/* globals $ */
|
|
8409
|
-
|
|
8410
|
-
/* harmony default export */ var restauration = (
|
|
8411
|
-
|
|
8412
|
-
|
|
5303
|
+
const nutrimenuScore = ['E', 'D-', 'D', 'D+', 'C-', 'C', 'C+', 'B-', 'B', 'B+', 'A-', 'A', 'A+'];
|
|
5304
|
+
/* harmony default export */ var restauration = (() => {
|
|
5305
|
+
const slider = $('#nutrimenu-score');
|
|
5306
|
+
const output = $("output[for='nutrimenu-score']");
|
|
8413
5307
|
|
|
8414
5308
|
if (slider.length > 0 && output.length > 0) {
|
|
8415
5309
|
// eslint-disable-next-line radix
|
|
@@ -8422,10 +5316,10 @@ var nutrimenuScore = ['E', 'D-', 'D', 'D+', 'C-', 'C', 'C+', 'B-', 'B', 'B+', 'A
|
|
|
8422
5316
|
});
|
|
8423
5317
|
;// CONCATENATED MODULE: ./assets/components/pages/lab-homepage/lab-homepage.js
|
|
8424
5318
|
/* globals $, introJs */
|
|
8425
|
-
/* harmony default export */ var lab_homepage = (
|
|
5319
|
+
/* harmony default export */ var lab_homepage = (() => {
|
|
8426
5320
|
if ($('#tour-lab').length > 0) {
|
|
8427
|
-
|
|
8428
|
-
|
|
5321
|
+
const startIntro = () => {
|
|
5322
|
+
const intro = introJs();
|
|
8429
5323
|
intro.setOptions({
|
|
8430
5324
|
buttonClass: 'btn btn-secondary btn-sm mt-4',
|
|
8431
5325
|
tooltipPosition: 'auto',
|
|
@@ -8442,38 +5336,55 @@ var nutrimenuScore = ['E', 'D-', 'D', 'D+', 'C-', 'C', 'C+', 'B-', 'B', 'B+', 'A
|
|
|
8442
5336
|
intro: 'Type a <b>succinct introduction paragraph</b> wrapped inside a <code>.container-grid</code> (the title can also be added here)'
|
|
8443
5337
|
}, {
|
|
8444
5338
|
element: '#tour-projects',
|
|
8445
|
-
intro:
|
|
5339
|
+
intro: `
|
|
5340
|
+
The main objective of a laboratory is to show the projects that are carried out there. In this section, you can use the <a href="#/content-types/research-project" target="_blank">Research project</a> content types to show them. We advise you to put a <b>maximum of 3 projects</b> on the lab’s homepage and then put a link to the page that lists all the projects.
|
|
5341
|
+
`
|
|
8446
5342
|
}, {
|
|
8447
5343
|
element: '#tour-publications',
|
|
8448
|
-
intro:
|
|
5344
|
+
intro: `
|
|
5345
|
+
Laboratories also produce publications. You can list <b>up to 5</b> here with the <a href="#/content-types/publication" target="_blank">Publication</a> component and add a link to the page that lists all the publications.
|
|
5346
|
+
`
|
|
8449
5347
|
}, {
|
|
8450
5348
|
element: '#tour-news',
|
|
8451
|
-
intro:
|
|
5349
|
+
intro: `
|
|
5350
|
+
If you have some news about your laboratory, you can list the latest at this location. We advise you not to list too much (maximum 2) and use the component <a href="#/content-types/news" target="_blank">News</a> content-types (<b>Basic teaser</b>) and add a link to all news page.
|
|
5351
|
+
`
|
|
8452
5352
|
}, {
|
|
8453
5353
|
element: '#tour-partof',
|
|
8454
|
-
intro:
|
|
5354
|
+
intro: `
|
|
5355
|
+
<p>
|
|
5356
|
+
This section is intended to <b>provide the context of the laboratory</b>. It is possible for a laboratory to belong to several institutes and/or faculties. If this is the case, we advise you to use a teaser that brings the visitor to a listing page, rather than putting them all on the lab’s homepage. Laboratories can have themes that categorize them. It is recommended to use component “tag” to list them.
|
|
5357
|
+
</p>
|
|
5358
|
+
<p>
|
|
5359
|
+
For this part, you can use some of the <a href="#/content-types/school" target="_blank">School</a> and <a href="#/content-types/institute" target="_blank">Institute</a> content types. The themes are based on the <a href="#/atoms/tag" target="_blank">tag</a> component.
|
|
5360
|
+
</p>
|
|
5361
|
+
`
|
|
8455
5362
|
}, {
|
|
8456
5363
|
element: '#tour-contact',
|
|
8457
|
-
intro:
|
|
5364
|
+
intro: `
|
|
5365
|
+
<b>Several people may want to contact</b> the laboratory: press, potential collaborators, people interested in your work or simply people who want to know where you are located. That’s why we recommend using the <a href="#/organisms/contact" target="_blank">Contact</a> component (<b>Banner</b>) that gives all this information.
|
|
5366
|
+
`
|
|
8458
5367
|
}, {
|
|
8459
5368
|
element: '#tour-team',
|
|
8460
|
-
intro:
|
|
5369
|
+
intro: `
|
|
5370
|
+
Some visitors may want to ask you questions or <b>see who composes the laboratory's team</b>. It is possible to link to the team page using the <a href="#/content-types/basic-page" target="_blank">Teaser basic page</a> component.
|
|
5371
|
+
`
|
|
8461
5372
|
}, {
|
|
8462
5373
|
element: '#tour-sponsors',
|
|
8463
|
-
intro:
|
|
5374
|
+
intro: `
|
|
5375
|
+
It is possible that you have sponsors. On a second column, you can list them thanks to the <a href="#/molecules/sponsor" target="_blank">Sponsor</a> component.
|
|
5376
|
+
`
|
|
8464
5377
|
}]
|
|
8465
5378
|
});
|
|
8466
5379
|
intro.start();
|
|
8467
5380
|
};
|
|
8468
5381
|
|
|
8469
|
-
$('#tour-start').click(
|
|
8470
|
-
return startIntro();
|
|
8471
|
-
});
|
|
5382
|
+
$('#tour-start').click(() => startIntro());
|
|
8472
5383
|
}
|
|
8473
5384
|
});
|
|
8474
5385
|
;// CONCATENATED MODULE: ./assets/components/guide.js
|
|
8475
5386
|
|
|
8476
|
-
/* harmony default export */ var guide = (
|
|
5387
|
+
/* harmony default export */ var guide = (() => {
|
|
8477
5388
|
lab_homepage();
|
|
8478
5389
|
});
|
|
8479
5390
|
;// CONCATENATED MODULE: ./assets/components/entrypoint.js
|
|
@@ -8502,7 +5413,7 @@ var nutrimenuScore = ['E', 'D-', 'D', 'D+', 'C-', 'C', 'C+', 'B-', 'B', 'B+', 'A
|
|
|
8502
5413
|
|
|
8503
5414
|
|
|
8504
5415
|
jQuery.fn.extend({
|
|
8505
|
-
epflElements
|
|
5416
|
+
epflElements() {
|
|
8506
5417
|
upload();
|
|
8507
5418
|
select_multiple();
|
|
8508
5419
|
tag_input();
|
|
@@ -8528,6 +5439,7 @@ jQuery.fn.extend({
|
|
|
8528
5439
|
guide();
|
|
8529
5440
|
components_anchors();
|
|
8530
5441
|
}
|
|
5442
|
+
|
|
8531
5443
|
}); // Run that once the page is done loading:
|
|
8532
5444
|
|
|
8533
5445
|
jQuery(jQuery.fn.epflElements);
|