babel-source 5.8.27 → 5.8.28
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.
- checksums.yaml +5 -13
- data/lib/babel.js +1319 -1273
- data/lib/babel/polyfill.js +1010 -1155
- data/lib/babel/source.rb +2 -2
- metadata +5 -5
data/lib/babel/polyfill.js
CHANGED
|
@@ -2,77 +2,32 @@
|
|
|
2
2
|
(function (global){
|
|
3
3
|
"use strict";
|
|
4
4
|
|
|
5
|
-
_dereq_(
|
|
5
|
+
_dereq_(181);
|
|
6
6
|
|
|
7
|
-
_dereq_(
|
|
7
|
+
_dereq_(182);
|
|
8
8
|
|
|
9
9
|
if (global._babelPolyfill) {
|
|
10
10
|
throw new Error("only one instance of babel/polyfill is allowed");
|
|
11
11
|
}
|
|
12
12
|
global._babelPolyfill = true;
|
|
13
13
|
}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
|
14
|
-
},{"
|
|
14
|
+
},{"181":181,"182":182}],2:[function(_dereq_,module,exports){
|
|
15
15
|
module.exports = function(it){
|
|
16
16
|
if(typeof it != 'function')throw TypeError(it + ' is not a function!');
|
|
17
17
|
return it;
|
|
18
18
|
};
|
|
19
19
|
},{}],3:[function(_dereq_,module,exports){
|
|
20
|
-
var isObject = _dereq_(
|
|
20
|
+
var isObject = _dereq_(33);
|
|
21
21
|
module.exports = function(it){
|
|
22
22
|
if(!isObject(it))throw TypeError(it + ' is not an object!');
|
|
23
23
|
return it;
|
|
24
24
|
};
|
|
25
|
-
},{"
|
|
26
|
-
// 22.1.3.3 Array.prototype.copyWithin(target, start, end = this.length)
|
|
27
|
-
'use strict';
|
|
28
|
-
var toObject = _dereq_(78)
|
|
29
|
-
, toIndex = _dereq_(74)
|
|
30
|
-
, toLength = _dereq_(77);
|
|
31
|
-
|
|
32
|
-
module.exports = [].copyWithin || function copyWithin(target/*= 0*/, start/*= 0, end = @length*/){
|
|
33
|
-
var O = toObject(this)
|
|
34
|
-
, len = toLength(O.length)
|
|
35
|
-
, to = toIndex(target, len)
|
|
36
|
-
, from = toIndex(start, len)
|
|
37
|
-
, $$ = arguments
|
|
38
|
-
, end = $$.length > 2 ? $$[2] : undefined
|
|
39
|
-
, count = Math.min((end === undefined ? len : toIndex(end, len)) - from, len - to)
|
|
40
|
-
, inc = 1;
|
|
41
|
-
if(from < to && to < from + count){
|
|
42
|
-
inc = -1;
|
|
43
|
-
from += count - 1;
|
|
44
|
-
to += count - 1;
|
|
45
|
-
}
|
|
46
|
-
while(count-- > 0){
|
|
47
|
-
if(from in O)O[to] = O[from];
|
|
48
|
-
else delete O[to];
|
|
49
|
-
to += inc;
|
|
50
|
-
from += inc;
|
|
51
|
-
} return O;
|
|
52
|
-
};
|
|
53
|
-
},{"74":74,"77":77,"78":78}],5:[function(_dereq_,module,exports){
|
|
54
|
-
// 22.1.3.6 Array.prototype.fill(value, start = 0, end = this.length)
|
|
55
|
-
'use strict';
|
|
56
|
-
var toObject = _dereq_(78)
|
|
57
|
-
, toIndex = _dereq_(74)
|
|
58
|
-
, toLength = _dereq_(77);
|
|
59
|
-
module.exports = [].fill || function fill(value /*, start = 0, end = @length */){
|
|
60
|
-
var O = toObject(this, true)
|
|
61
|
-
, length = toLength(O.length)
|
|
62
|
-
, $$ = arguments
|
|
63
|
-
, $$len = $$.length
|
|
64
|
-
, index = toIndex($$len > 1 ? $$[1] : undefined, length)
|
|
65
|
-
, end = $$len > 2 ? $$[2] : undefined
|
|
66
|
-
, endPos = end === undefined ? length : toIndex(end, length);
|
|
67
|
-
while(endPos > index)O[index++] = value;
|
|
68
|
-
return O;
|
|
69
|
-
};
|
|
70
|
-
},{"74":74,"77":77,"78":78}],6:[function(_dereq_,module,exports){
|
|
25
|
+
},{"33":33}],4:[function(_dereq_,module,exports){
|
|
71
26
|
// false -> Array#indexOf
|
|
72
27
|
// true -> Array#includes
|
|
73
|
-
var toIObject = _dereq_(
|
|
74
|
-
, toLength = _dereq_(
|
|
75
|
-
, toIndex = _dereq_(
|
|
28
|
+
var toIObject = _dereq_(71)
|
|
29
|
+
, toLength = _dereq_(72)
|
|
30
|
+
, toIndex = _dereq_(69);
|
|
76
31
|
module.exports = function(IS_INCLUDES){
|
|
77
32
|
return function($this, el, fromIndex){
|
|
78
33
|
var O = toIObject($this)
|
|
@@ -89,7 +44,7 @@ module.exports = function(IS_INCLUDES){
|
|
|
89
44
|
} return !IS_INCLUDES && -1;
|
|
90
45
|
};
|
|
91
46
|
};
|
|
92
|
-
},{"
|
|
47
|
+
},{"69":69,"71":71,"72":72}],5:[function(_dereq_,module,exports){
|
|
93
48
|
// 0 -> Array#forEach
|
|
94
49
|
// 1 -> Array#map
|
|
95
50
|
// 2 -> Array#filter
|
|
@@ -97,21 +52,10 @@ module.exports = function(IS_INCLUDES){
|
|
|
97
52
|
// 4 -> Array#every
|
|
98
53
|
// 5 -> Array#find
|
|
99
54
|
// 6 -> Array#findIndex
|
|
100
|
-
var ctx = _dereq_(
|
|
101
|
-
,
|
|
102
|
-
,
|
|
103
|
-
,
|
|
104
|
-
, toLength = _dereq_(77)
|
|
105
|
-
, isArray = _dereq_(35)
|
|
106
|
-
, SPECIES = _dereq_(81)('species');
|
|
107
|
-
// 9.4.2.3 ArraySpeciesCreate(originalArray, length)
|
|
108
|
-
var ASC = function(original, length){
|
|
109
|
-
var C;
|
|
110
|
-
if(isArray(original) && isObject(C = original.constructor)){
|
|
111
|
-
C = C[SPECIES];
|
|
112
|
-
if(C === null)C = undefined;
|
|
113
|
-
} return new (C === undefined ? Array : C)(length);
|
|
114
|
-
};
|
|
55
|
+
var ctx = _dereq_(14)
|
|
56
|
+
, IObject = _dereq_(30)
|
|
57
|
+
, toObject = _dereq_(73)
|
|
58
|
+
, toLength = _dereq_(72);
|
|
115
59
|
module.exports = function(TYPE){
|
|
116
60
|
var IS_MAP = TYPE == 1
|
|
117
61
|
, IS_FILTER = TYPE == 2
|
|
@@ -125,7 +69,7 @@ module.exports = function(TYPE){
|
|
|
125
69
|
, f = ctx(callbackfn, that, 3)
|
|
126
70
|
, length = toLength(self.length)
|
|
127
71
|
, index = 0
|
|
128
|
-
, result = IS_MAP ?
|
|
72
|
+
, result = IS_MAP ? Array(length) : IS_FILTER ? [] : undefined
|
|
129
73
|
, val, res;
|
|
130
74
|
for(;length > index; index++)if(NO_HOLES || index in self){
|
|
131
75
|
val = self[index];
|
|
@@ -143,44 +87,31 @@ module.exports = function(TYPE){
|
|
|
143
87
|
return IS_FIND_INDEX ? -1 : IS_SOME || IS_EVERY ? IS_EVERY : result;
|
|
144
88
|
};
|
|
145
89
|
};
|
|
146
|
-
},{"
|
|
90
|
+
},{"14":14,"30":30,"72":72,"73":73}],6:[function(_dereq_,module,exports){
|
|
147
91
|
// 19.1.2.1 Object.assign(target, source, ...)
|
|
148
|
-
var
|
|
149
|
-
,
|
|
150
|
-
,
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
var
|
|
155
|
-
,
|
|
156
|
-
,
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
K.split('').forEach(function(k){ B[k] = k; });
|
|
161
|
-
return a({}, A)[S] != 7 || Object.keys(a({}, B)).join('') != K;
|
|
162
|
-
}) ? function assign(target, source){ // eslint-disable-line no-unused-vars
|
|
163
|
-
var T = toObject(target)
|
|
164
|
-
, $$ = arguments
|
|
165
|
-
, $$len = $$.length
|
|
166
|
-
, index = 1
|
|
167
|
-
, getKeys = $.getKeys
|
|
168
|
-
, getSymbols = $.getSymbols
|
|
169
|
-
, isEnum = $.isEnum;
|
|
170
|
-
while($$len > index){
|
|
171
|
-
var S = IObject($$[index++])
|
|
172
|
-
, keys = getSymbols ? getKeys(S).concat(getSymbols(S)) : getKeys(S)
|
|
92
|
+
var toObject = _dereq_(73)
|
|
93
|
+
, IObject = _dereq_(30)
|
|
94
|
+
, enumKeys = _dereq_(18);
|
|
95
|
+
/* eslint-disable no-unused-vars */
|
|
96
|
+
module.exports = Object.assign || function assign(target, source){
|
|
97
|
+
/* eslint-enable no-unused-vars */
|
|
98
|
+
var T = toObject(target)
|
|
99
|
+
, l = arguments.length
|
|
100
|
+
, i = 1;
|
|
101
|
+
while(l > i){
|
|
102
|
+
var S = IObject(arguments[i++])
|
|
103
|
+
, keys = enumKeys(S)
|
|
173
104
|
, length = keys.length
|
|
174
105
|
, j = 0
|
|
175
106
|
, key;
|
|
176
|
-
while(length > j)
|
|
107
|
+
while(length > j)T[key = keys[j++]] = S[key];
|
|
177
108
|
}
|
|
178
109
|
return T;
|
|
179
|
-
}
|
|
180
|
-
},{"
|
|
110
|
+
};
|
|
111
|
+
},{"18":18,"30":30,"73":73}],7:[function(_dereq_,module,exports){
|
|
181
112
|
// getting tag from 19.1.3.6 Object.prototype.toString()
|
|
182
|
-
var cof = _dereq_(
|
|
183
|
-
, TAG = _dereq_(
|
|
113
|
+
var cof = _dereq_(8)
|
|
114
|
+
, TAG = _dereq_(76)('toStringTag')
|
|
184
115
|
// ES3 wrong here
|
|
185
116
|
, ARG = cof(function(){ return arguments; }()) == 'Arguments';
|
|
186
117
|
|
|
@@ -194,27 +125,27 @@ module.exports = function(it){
|
|
|
194
125
|
// ES3 arguments fallback
|
|
195
126
|
: (B = cof(O)) == 'Object' && typeof O.callee == 'function' ? 'Arguments' : B;
|
|
196
127
|
};
|
|
197
|
-
},{"
|
|
128
|
+
},{"76":76,"8":8}],8:[function(_dereq_,module,exports){
|
|
198
129
|
var toString = {}.toString;
|
|
199
130
|
|
|
200
131
|
module.exports = function(it){
|
|
201
132
|
return toString.call(it).slice(8, -1);
|
|
202
133
|
};
|
|
203
|
-
},{}],
|
|
134
|
+
},{}],9:[function(_dereq_,module,exports){
|
|
204
135
|
'use strict';
|
|
205
|
-
var $ = _dereq_(
|
|
206
|
-
, hide = _dereq_(
|
|
207
|
-
, ctx = _dereq_(
|
|
208
|
-
, species = _dereq_(
|
|
209
|
-
, strictNew = _dereq_(
|
|
210
|
-
, defined = _dereq_(
|
|
211
|
-
, forOf = _dereq_(
|
|
212
|
-
, step = _dereq_(
|
|
213
|
-
, ID = _dereq_(
|
|
214
|
-
, $has = _dereq_(
|
|
215
|
-
, isObject = _dereq_(
|
|
136
|
+
var $ = _dereq_(41)
|
|
137
|
+
, hide = _dereq_(27)
|
|
138
|
+
, ctx = _dereq_(14)
|
|
139
|
+
, species = _dereq_(59)
|
|
140
|
+
, strictNew = _dereq_(60)
|
|
141
|
+
, defined = _dereq_(16)
|
|
142
|
+
, forOf = _dereq_(23)
|
|
143
|
+
, step = _dereq_(39)
|
|
144
|
+
, ID = _dereq_(74)('id')
|
|
145
|
+
, $has = _dereq_(26)
|
|
146
|
+
, isObject = _dereq_(33)
|
|
216
147
|
, isExtensible = Object.isExtensible || isObject
|
|
217
|
-
, SUPPORT_DESC = _dereq_(
|
|
148
|
+
, SUPPORT_DESC = _dereq_(66)
|
|
218
149
|
, SIZE = SUPPORT_DESC ? '_s' : 'size'
|
|
219
150
|
, id = 0;
|
|
220
151
|
|
|
@@ -252,7 +183,7 @@ module.exports = {
|
|
|
252
183
|
that[SIZE] = 0; // size
|
|
253
184
|
if(iterable != undefined)forOf(iterable, IS_MAP, that[ADDER], that);
|
|
254
185
|
});
|
|
255
|
-
_dereq_(
|
|
186
|
+
_dereq_(46)(C.prototype, {
|
|
256
187
|
// 23.1.3.1 Map.prototype.clear()
|
|
257
188
|
// 23.2.3.2 Set.prototype.clear()
|
|
258
189
|
clear: function clear(){
|
|
@@ -284,7 +215,7 @@ module.exports = {
|
|
|
284
215
|
// 23.2.3.6 Set.prototype.forEach(callbackfn, thisArg = undefined)
|
|
285
216
|
// 23.1.3.5 Map.prototype.forEach(callbackfn, thisArg = undefined)
|
|
286
217
|
forEach: function forEach(callbackfn /*, that = undefined */){
|
|
287
|
-
var f = ctx(callbackfn, arguments
|
|
218
|
+
var f = ctx(callbackfn, arguments[1], 3)
|
|
288
219
|
, entry;
|
|
289
220
|
while(entry = entry ? entry.n : this._f){
|
|
290
221
|
f(entry.v, entry.k, this);
|
|
@@ -332,7 +263,7 @@ module.exports = {
|
|
|
332
263
|
setStrong: function(C, NAME, IS_MAP){
|
|
333
264
|
// add .keys, .values, .entries, [@@iterator]
|
|
334
265
|
// 23.1.3.4, 23.1.3.8, 23.1.3.11, 23.1.3.12, 23.2.3.5, 23.2.3.8, 23.2.3.10, 23.2.3.11
|
|
335
|
-
_dereq_(
|
|
266
|
+
_dereq_(37)(C, NAME, function(iterated, kind){
|
|
336
267
|
this._t = iterated; // target
|
|
337
268
|
this._k = kind; // kind
|
|
338
269
|
this._l = undefined; // previous
|
|
@@ -356,13 +287,13 @@ module.exports = {
|
|
|
356
287
|
|
|
357
288
|
// add [@@species], 23.1.2.2, 23.2.2.2
|
|
358
289
|
species(C);
|
|
359
|
-
species(_dereq_(
|
|
290
|
+
species(_dereq_(13)[NAME]); // for wrapper
|
|
360
291
|
}
|
|
361
292
|
};
|
|
362
|
-
},{"
|
|
293
|
+
},{"13":13,"14":14,"16":16,"23":23,"26":26,"27":27,"33":33,"37":37,"39":39,"41":41,"46":46,"59":59,"60":60,"66":66,"74":74}],10:[function(_dereq_,module,exports){
|
|
363
294
|
// https://github.com/DavidBruant/Map-Set.prototype.toJSON
|
|
364
|
-
var forOf = _dereq_(
|
|
365
|
-
, classof = _dereq_(
|
|
295
|
+
var forOf = _dereq_(23)
|
|
296
|
+
, classof = _dereq_(7);
|
|
366
297
|
module.exports = function(NAME){
|
|
367
298
|
return function toJSON(){
|
|
368
299
|
if(classof(this) != NAME)throw TypeError(NAME + "#toJSON isn't generic");
|
|
@@ -371,16 +302,16 @@ module.exports = function(NAME){
|
|
|
371
302
|
return arr;
|
|
372
303
|
};
|
|
373
304
|
};
|
|
374
|
-
},{"
|
|
305
|
+
},{"23":23,"7":7}],11:[function(_dereq_,module,exports){
|
|
375
306
|
'use strict';
|
|
376
|
-
var hide = _dereq_(
|
|
307
|
+
var hide = _dereq_(27)
|
|
377
308
|
, anObject = _dereq_(3)
|
|
378
|
-
, strictNew = _dereq_(
|
|
379
|
-
, forOf = _dereq_(
|
|
380
|
-
, method = _dereq_(
|
|
381
|
-
, WEAK = _dereq_(
|
|
382
|
-
, isObject = _dereq_(
|
|
383
|
-
, $has = _dereq_(
|
|
309
|
+
, strictNew = _dereq_(60)
|
|
310
|
+
, forOf = _dereq_(23)
|
|
311
|
+
, method = _dereq_(5)
|
|
312
|
+
, WEAK = _dereq_(74)('weak')
|
|
313
|
+
, isObject = _dereq_(33)
|
|
314
|
+
, $has = _dereq_(26)
|
|
384
315
|
, isExtensible = Object.isExtensible || isObject
|
|
385
316
|
, find = method(5)
|
|
386
317
|
, findIndex = method(6)
|
|
@@ -428,7 +359,7 @@ module.exports = {
|
|
|
428
359
|
that._l = undefined; // leak store for frozen objects
|
|
429
360
|
if(iterable != undefined)forOf(iterable, IS_MAP, that[ADDER], that);
|
|
430
361
|
});
|
|
431
|
-
_dereq_(
|
|
362
|
+
_dereq_(46)(C.prototype, {
|
|
432
363
|
// 23.3.3.2 WeakMap.prototype.delete(key)
|
|
433
364
|
// 23.4.3.3 WeakSet.prototype.delete(value)
|
|
434
365
|
'delete': function(key){
|
|
@@ -457,12 +388,13 @@ module.exports = {
|
|
|
457
388
|
frozenStore: frozenStore,
|
|
458
389
|
WEAK: WEAK
|
|
459
390
|
};
|
|
460
|
-
},{"26":26,"
|
|
391
|
+
},{"23":23,"26":26,"27":27,"3":3,"33":33,"46":46,"5":5,"60":60,"74":74}],12:[function(_dereq_,module,exports){
|
|
461
392
|
'use strict';
|
|
462
|
-
var global = _dereq_(
|
|
463
|
-
, $def = _dereq_(
|
|
464
|
-
,
|
|
465
|
-
,
|
|
393
|
+
var global = _dereq_(25)
|
|
394
|
+
, $def = _dereq_(15)
|
|
395
|
+
, BUGGY = _dereq_(34)
|
|
396
|
+
, forOf = _dereq_(23)
|
|
397
|
+
, strictNew = _dereq_(60);
|
|
466
398
|
|
|
467
399
|
module.exports = function(NAME, wrapper, methods, common, IS_MAP, IS_WEAK){
|
|
468
400
|
var Base = global[NAME]
|
|
@@ -472,7 +404,7 @@ module.exports = function(NAME, wrapper, methods, common, IS_MAP, IS_WEAK){
|
|
|
472
404
|
, O = {};
|
|
473
405
|
var fixMethod = function(KEY){
|
|
474
406
|
var fn = proto[KEY];
|
|
475
|
-
_dereq_(
|
|
407
|
+
_dereq_(53)(proto, KEY,
|
|
476
408
|
KEY == 'delete' ? function(a){ return fn.call(this, a === 0 ? 0 : a); }
|
|
477
409
|
: KEY == 'has' ? function has(a){ return fn.call(this, a === 0 ? 0 : a); }
|
|
478
410
|
: KEY == 'get' ? function get(a){ return fn.call(this, a === 0 ? 0 : a); }
|
|
@@ -480,18 +412,16 @@ module.exports = function(NAME, wrapper, methods, common, IS_MAP, IS_WEAK){
|
|
|
480
412
|
: function set(a, b){ fn.call(this, a === 0 ? 0 : a, b); return this; }
|
|
481
413
|
);
|
|
482
414
|
};
|
|
483
|
-
if(typeof C != 'function' || !(IS_WEAK || proto.forEach &&
|
|
484
|
-
new C().entries().next();
|
|
485
|
-
}))){
|
|
415
|
+
if(typeof C != 'function' || !(IS_WEAK || !BUGGY && proto.forEach && proto.entries)){
|
|
486
416
|
// create collection constructor
|
|
487
417
|
C = common.getConstructor(wrapper, NAME, IS_MAP, ADDER);
|
|
488
|
-
_dereq_(
|
|
418
|
+
_dereq_(46)(C.prototype, methods);
|
|
489
419
|
} else {
|
|
490
420
|
var inst = new C
|
|
491
421
|
, chain = inst[ADDER](IS_WEAK ? {} : -0, 1)
|
|
492
422
|
, buggyZero;
|
|
493
423
|
// wrap for init collections from iterable
|
|
494
|
-
if(!_dereq_(
|
|
424
|
+
if(!_dereq_(38)(function(iter){ new C(iter); })){ // eslint-disable-line no-new
|
|
495
425
|
C = wrapper(function(target, iterable){
|
|
496
426
|
strictNew(target, C, NAME);
|
|
497
427
|
var that = new Base;
|
|
@@ -516,7 +446,7 @@ module.exports = function(NAME, wrapper, methods, common, IS_MAP, IS_WEAK){
|
|
|
516
446
|
if(IS_WEAK && proto.clear)delete proto.clear;
|
|
517
447
|
}
|
|
518
448
|
|
|
519
|
-
_dereq_(
|
|
449
|
+
_dereq_(67)(C, NAME);
|
|
520
450
|
|
|
521
451
|
O[NAME] = C;
|
|
522
452
|
$def($def.G + $def.W + $def.F * (C != Base), O);
|
|
@@ -525,10 +455,10 @@ module.exports = function(NAME, wrapper, methods, common, IS_MAP, IS_WEAK){
|
|
|
525
455
|
|
|
526
456
|
return C;
|
|
527
457
|
};
|
|
528
|
-
},{"
|
|
529
|
-
var core = module.exports = {
|
|
458
|
+
},{"15":15,"23":23,"25":25,"34":34,"38":38,"46":46,"53":53,"60":60,"67":67}],13:[function(_dereq_,module,exports){
|
|
459
|
+
var core = module.exports = {};
|
|
530
460
|
if(typeof __e == 'number')__e = core; // eslint-disable-line no-undef
|
|
531
|
-
},{}],
|
|
461
|
+
},{}],14:[function(_dereq_,module,exports){
|
|
532
462
|
// optional / simple context binding
|
|
533
463
|
var aFunction = _dereq_(2);
|
|
534
464
|
module.exports = function(fn, that, length){
|
|
@@ -544,16 +474,15 @@ module.exports = function(fn, that, length){
|
|
|
544
474
|
case 3: return function(a, b, c){
|
|
545
475
|
return fn.call(that, a, b, c);
|
|
546
476
|
};
|
|
547
|
-
}
|
|
548
|
-
|
|
549
|
-
|
|
550
|
-
};
|
|
477
|
+
} return function(/* ...args */){
|
|
478
|
+
return fn.apply(that, arguments);
|
|
479
|
+
};
|
|
551
480
|
};
|
|
552
|
-
},{"2":2}],
|
|
553
|
-
var global = _dereq_(
|
|
554
|
-
, core = _dereq_(
|
|
555
|
-
, hide = _dereq_(
|
|
556
|
-
, $redef = _dereq_(
|
|
481
|
+
},{"2":2}],15:[function(_dereq_,module,exports){
|
|
482
|
+
var global = _dereq_(25)
|
|
483
|
+
, core = _dereq_(13)
|
|
484
|
+
, hide = _dereq_(27)
|
|
485
|
+
, $redef = _dereq_(53)
|
|
557
486
|
, PROTOTYPE = 'prototype';
|
|
558
487
|
var ctx = function(fn, that){
|
|
559
488
|
return function(){
|
|
@@ -592,23 +521,23 @@ $def.P = 8; // proto
|
|
|
592
521
|
$def.B = 16; // bind
|
|
593
522
|
$def.W = 32; // wrap
|
|
594
523
|
module.exports = $def;
|
|
595
|
-
},{"
|
|
524
|
+
},{"13":13,"25":25,"27":27,"53":53}],16:[function(_dereq_,module,exports){
|
|
596
525
|
// 7.2.1 RequireObjectCoercible(argument)
|
|
597
526
|
module.exports = function(it){
|
|
598
527
|
if(it == undefined)throw TypeError("Can't call method on " + it);
|
|
599
528
|
return it;
|
|
600
529
|
};
|
|
601
|
-
},{}],
|
|
602
|
-
var isObject = _dereq_(
|
|
603
|
-
, document = _dereq_(
|
|
530
|
+
},{}],17:[function(_dereq_,module,exports){
|
|
531
|
+
var isObject = _dereq_(33)
|
|
532
|
+
, document = _dereq_(25).document
|
|
604
533
|
// in old IE typeof document.createElement is 'object'
|
|
605
534
|
, is = isObject(document) && isObject(document.createElement);
|
|
606
535
|
module.exports = function(it){
|
|
607
536
|
return is ? document.createElement(it) : {};
|
|
608
537
|
};
|
|
609
|
-
},{"
|
|
538
|
+
},{"25":25,"33":33}],18:[function(_dereq_,module,exports){
|
|
610
539
|
// all enumerable object keys, includes symbols
|
|
611
|
-
var $ = _dereq_(
|
|
540
|
+
var $ = _dereq_(41);
|
|
612
541
|
module.exports = function(it){
|
|
613
542
|
var keys = $.getKeys(it)
|
|
614
543
|
, getSymbols = $.getSymbols;
|
|
@@ -621,24 +550,12 @@ module.exports = function(it){
|
|
|
621
550
|
}
|
|
622
551
|
return keys;
|
|
623
552
|
};
|
|
624
|
-
},{"
|
|
553
|
+
},{"41":41}],19:[function(_dereq_,module,exports){
|
|
625
554
|
// 20.2.2.14 Math.expm1(x)
|
|
626
555
|
module.exports = Math.expm1 || function expm1(x){
|
|
627
556
|
return (x = +x) == 0 ? x : x > -1e-6 && x < 1e-6 ? x + x * x / 2 : Math.exp(x) - 1;
|
|
628
557
|
};
|
|
629
|
-
},{}],
|
|
630
|
-
module.exports = function(KEY){
|
|
631
|
-
var re = /./;
|
|
632
|
-
try {
|
|
633
|
-
'/./'[KEY](re);
|
|
634
|
-
} catch(e){
|
|
635
|
-
try {
|
|
636
|
-
re[_dereq_(81)('match')] = false;
|
|
637
|
-
return !'/./'[KEY](re);
|
|
638
|
-
} catch(f){ /* empty */ }
|
|
639
|
-
} return true;
|
|
640
|
-
};
|
|
641
|
-
},{"81":81}],23:[function(_dereq_,module,exports){
|
|
558
|
+
},{}],20:[function(_dereq_,module,exports){
|
|
642
559
|
module.exports = function(exec){
|
|
643
560
|
try {
|
|
644
561
|
return !!exec();
|
|
@@ -646,19 +563,19 @@ module.exports = function(exec){
|
|
|
646
563
|
return true;
|
|
647
564
|
}
|
|
648
565
|
};
|
|
649
|
-
},{}],
|
|
566
|
+
},{}],21:[function(_dereq_,module,exports){
|
|
650
567
|
'use strict';
|
|
651
568
|
module.exports = function(KEY, length, exec){
|
|
652
|
-
var defined = _dereq_(
|
|
653
|
-
, SYMBOL = _dereq_(
|
|
569
|
+
var defined = _dereq_(16)
|
|
570
|
+
, SYMBOL = _dereq_(76)(KEY)
|
|
654
571
|
, original = ''[KEY];
|
|
655
|
-
if(_dereq_(
|
|
572
|
+
if(_dereq_(20)(function(){
|
|
656
573
|
var O = {};
|
|
657
574
|
O[SYMBOL] = function(){ return 7; };
|
|
658
575
|
return ''[KEY](O) != 7;
|
|
659
576
|
})){
|
|
660
|
-
_dereq_(
|
|
661
|
-
_dereq_(
|
|
577
|
+
_dereq_(53)(String.prototype, KEY, exec(defined, SYMBOL, original));
|
|
578
|
+
_dereq_(27)(RegExp.prototype, SYMBOL, length == 2
|
|
662
579
|
// 21.2.5.8 RegExp.prototype[@@replace](string, replaceValue)
|
|
663
580
|
// 21.2.5.11 RegExp.prototype[@@split](string, limit)
|
|
664
581
|
? function(string, arg){ return original.call(string, this, arg); }
|
|
@@ -668,7 +585,7 @@ module.exports = function(KEY, length, exec){
|
|
|
668
585
|
);
|
|
669
586
|
}
|
|
670
587
|
};
|
|
671
|
-
},{"
|
|
588
|
+
},{"16":16,"20":20,"27":27,"53":53,"76":76}],22:[function(_dereq_,module,exports){
|
|
672
589
|
'use strict';
|
|
673
590
|
// 21.2.5.3 get RegExp.prototype.flags
|
|
674
591
|
var anObject = _dereq_(3);
|
|
@@ -682,13 +599,13 @@ module.exports = function(){
|
|
|
682
599
|
if(that.sticky)result += 'y';
|
|
683
600
|
return result;
|
|
684
601
|
};
|
|
685
|
-
},{"3":3}],
|
|
686
|
-
var ctx = _dereq_(
|
|
687
|
-
, call = _dereq_(
|
|
688
|
-
, isArrayIter = _dereq_(
|
|
602
|
+
},{"3":3}],23:[function(_dereq_,module,exports){
|
|
603
|
+
var ctx = _dereq_(14)
|
|
604
|
+
, call = _dereq_(35)
|
|
605
|
+
, isArrayIter = _dereq_(31)
|
|
689
606
|
, anObject = _dereq_(3)
|
|
690
|
-
, toLength = _dereq_(
|
|
691
|
-
, getIterFn = _dereq_(
|
|
607
|
+
, toLength = _dereq_(72)
|
|
608
|
+
, getIterFn = _dereq_(77);
|
|
692
609
|
module.exports = function(iterable, entries, fn, that){
|
|
693
610
|
var iterFn = getIterFn(iterable)
|
|
694
611
|
, f = ctx(fn, that, entries ? 2 : 1)
|
|
@@ -702,11 +619,11 @@ module.exports = function(iterable, entries, fn, that){
|
|
|
702
619
|
call(iterator, f, step.value, entries);
|
|
703
620
|
}
|
|
704
621
|
};
|
|
705
|
-
},{"
|
|
622
|
+
},{"14":14,"3":3,"31":31,"35":35,"72":72,"77":77}],24:[function(_dereq_,module,exports){
|
|
706
623
|
// fallback for IE11 buggy Object.getOwnPropertyNames with iframe and window
|
|
707
624
|
var toString = {}.toString
|
|
708
|
-
, toIObject = _dereq_(
|
|
709
|
-
, getNames = _dereq_(
|
|
625
|
+
, toIObject = _dereq_(71)
|
|
626
|
+
, getNames = _dereq_(41).getNames;
|
|
710
627
|
|
|
711
628
|
var windowNames = typeof window == 'object' && Object.getOwnPropertyNames
|
|
712
629
|
? Object.getOwnPropertyNames(window) : [];
|
|
@@ -723,28 +640,27 @@ module.exports.get = function getOwnPropertyNames(it){
|
|
|
723
640
|
if(windowNames && toString.call(it) == '[object Window]')return getWindowNames(it);
|
|
724
641
|
return getNames(toIObject(it));
|
|
725
642
|
};
|
|
726
|
-
},{"
|
|
727
|
-
|
|
728
|
-
|
|
729
|
-
? window : typeof self != 'undefined' && self.Math == Math ? self : Function('return this')();
|
|
643
|
+
},{"41":41,"71":71}],25:[function(_dereq_,module,exports){
|
|
644
|
+
var global = typeof self != 'undefined' && self.Math == Math ? self : Function('return this')();
|
|
645
|
+
module.exports = global;
|
|
730
646
|
if(typeof __g == 'number')__g = global; // eslint-disable-line no-undef
|
|
731
|
-
},{}],
|
|
647
|
+
},{}],26:[function(_dereq_,module,exports){
|
|
732
648
|
var hasOwnProperty = {}.hasOwnProperty;
|
|
733
649
|
module.exports = function(it, key){
|
|
734
650
|
return hasOwnProperty.call(it, key);
|
|
735
651
|
};
|
|
736
|
-
},{}],
|
|
737
|
-
var $ = _dereq_(
|
|
738
|
-
, createDesc = _dereq_(
|
|
739
|
-
module.exports = _dereq_(
|
|
652
|
+
},{}],27:[function(_dereq_,module,exports){
|
|
653
|
+
var $ = _dereq_(41)
|
|
654
|
+
, createDesc = _dereq_(52);
|
|
655
|
+
module.exports = _dereq_(66) ? function(object, key, value){
|
|
740
656
|
return $.setDesc(object, key, createDesc(1, value));
|
|
741
657
|
} : function(object, key, value){
|
|
742
658
|
object[key] = value;
|
|
743
659
|
return object;
|
|
744
660
|
};
|
|
745
|
-
},{"
|
|
746
|
-
module.exports = _dereq_(
|
|
747
|
-
},{"
|
|
661
|
+
},{"41":41,"52":52,"66":66}],28:[function(_dereq_,module,exports){
|
|
662
|
+
module.exports = _dereq_(25).document && document.documentElement;
|
|
663
|
+
},{"25":25}],29:[function(_dereq_,module,exports){
|
|
748
664
|
// fast apply, http://jsperf.lnkit.com/fast-apply/5
|
|
749
665
|
module.exports = function(fn, args, that){
|
|
750
666
|
var un = that === undefined;
|
|
@@ -761,46 +677,35 @@ module.exports = function(fn, args, that){
|
|
|
761
677
|
: fn.call(that, args[0], args[1], args[2], args[3]);
|
|
762
678
|
} return fn.apply(that, args);
|
|
763
679
|
};
|
|
764
|
-
},{}],
|
|
765
|
-
// fallback for non-array-like ES3
|
|
766
|
-
var cof = _dereq_(
|
|
767
|
-
module.exports = Object('z')
|
|
680
|
+
},{}],30:[function(_dereq_,module,exports){
|
|
681
|
+
// indexed object, fallback for non-array-like ES3 strings
|
|
682
|
+
var cof = _dereq_(8);
|
|
683
|
+
module.exports = 0 in Object('z') ? Object : function(it){
|
|
768
684
|
return cof(it) == 'String' ? it.split('') : Object(it);
|
|
769
685
|
};
|
|
770
|
-
},{"
|
|
686
|
+
},{"8":8}],31:[function(_dereq_,module,exports){
|
|
771
687
|
// check on default Array iterator
|
|
772
|
-
var Iterators = _dereq_(
|
|
773
|
-
, ITERATOR = _dereq_(
|
|
688
|
+
var Iterators = _dereq_(40)
|
|
689
|
+
, ITERATOR = _dereq_(76)('iterator');
|
|
774
690
|
module.exports = function(it){
|
|
775
691
|
return (Iterators.Array || Array.prototype[ITERATOR]) === it;
|
|
776
692
|
};
|
|
777
|
-
},{"
|
|
778
|
-
// 7.2.2 IsArray(argument)
|
|
779
|
-
var cof = _dereq_(10);
|
|
780
|
-
module.exports = Array.isArray || function(arg){
|
|
781
|
-
return cof(arg) == 'Array';
|
|
782
|
-
};
|
|
783
|
-
},{"10":10}],36:[function(_dereq_,module,exports){
|
|
693
|
+
},{"40":40,"76":76}],32:[function(_dereq_,module,exports){
|
|
784
694
|
// 20.1.2.3 Number.isInteger(number)
|
|
785
|
-
var isObject = _dereq_(
|
|
695
|
+
var isObject = _dereq_(33)
|
|
786
696
|
, floor = Math.floor;
|
|
787
697
|
module.exports = function isInteger(it){
|
|
788
698
|
return !isObject(it) && isFinite(it) && floor(it) === it;
|
|
789
699
|
};
|
|
790
|
-
},{"
|
|
791
|
-
|
|
792
|
-
return typeof it === 'object' ? it !== null : typeof it === 'function';
|
|
793
|
-
};
|
|
794
|
-
},{}],38:[function(_dereq_,module,exports){
|
|
795
|
-
// 7.2.8 IsRegExp(argument)
|
|
796
|
-
var isObject = _dereq_(37)
|
|
797
|
-
, cof = _dereq_(10)
|
|
798
|
-
, MATCH = _dereq_(81)('match');
|
|
700
|
+
},{"33":33}],33:[function(_dereq_,module,exports){
|
|
701
|
+
// http://jsperf.com/core-js-isobject
|
|
799
702
|
module.exports = function(it){
|
|
800
|
-
|
|
801
|
-
return isObject(it) && ((isRegExp = it[MATCH]) !== undefined ? !!isRegExp : cof(it) == 'RegExp');
|
|
703
|
+
return it !== null && (typeof it == 'object' || typeof it == 'function');
|
|
802
704
|
};
|
|
803
|
-
},{
|
|
705
|
+
},{}],34:[function(_dereq_,module,exports){
|
|
706
|
+
// Safari has buggy iterators w/o `next`
|
|
707
|
+
module.exports = 'keys' in [] && !('next' in [].keys());
|
|
708
|
+
},{}],35:[function(_dereq_,module,exports){
|
|
804
709
|
// call something on iterator step with safe closing on error
|
|
805
710
|
var anObject = _dereq_(3);
|
|
806
711
|
module.exports = function(iterator, fn, value, entries){
|
|
@@ -813,34 +718,33 @@ module.exports = function(iterator, fn, value, entries){
|
|
|
813
718
|
throw e;
|
|
814
719
|
}
|
|
815
720
|
};
|
|
816
|
-
},{"3":3}],
|
|
721
|
+
},{"3":3}],36:[function(_dereq_,module,exports){
|
|
817
722
|
'use strict';
|
|
818
|
-
var $ = _dereq_(
|
|
723
|
+
var $ = _dereq_(41)
|
|
819
724
|
, IteratorPrototype = {};
|
|
820
725
|
|
|
821
726
|
// 25.1.2.1.1 %IteratorPrototype%[@@iterator]()
|
|
822
|
-
_dereq_(
|
|
727
|
+
_dereq_(27)(IteratorPrototype, _dereq_(76)('iterator'), function(){ return this; });
|
|
823
728
|
|
|
824
729
|
module.exports = function(Constructor, NAME, next){
|
|
825
|
-
Constructor.prototype = $.create(IteratorPrototype, {next: _dereq_(
|
|
826
|
-
_dereq_(
|
|
730
|
+
Constructor.prototype = $.create(IteratorPrototype, {next: _dereq_(52)(1,next)});
|
|
731
|
+
_dereq_(67)(Constructor, NAME + ' Iterator');
|
|
827
732
|
};
|
|
828
|
-
},{"
|
|
733
|
+
},{"27":27,"41":41,"52":52,"67":67,"76":76}],37:[function(_dereq_,module,exports){
|
|
829
734
|
'use strict';
|
|
830
|
-
var LIBRARY = _dereq_(
|
|
831
|
-
, $def = _dereq_(
|
|
832
|
-
, $redef = _dereq_(
|
|
833
|
-
, hide = _dereq_(
|
|
834
|
-
, has = _dereq_(
|
|
835
|
-
, SYMBOL_ITERATOR = _dereq_(
|
|
836
|
-
, Iterators = _dereq_(
|
|
837
|
-
, BUGGY = !([].keys && 'next' in [].keys()) // Safari has buggy iterators w/o `next`
|
|
735
|
+
var LIBRARY = _dereq_(43)
|
|
736
|
+
, $def = _dereq_(15)
|
|
737
|
+
, $redef = _dereq_(53)
|
|
738
|
+
, hide = _dereq_(27)
|
|
739
|
+
, has = _dereq_(26)
|
|
740
|
+
, SYMBOL_ITERATOR = _dereq_(76)('iterator')
|
|
741
|
+
, Iterators = _dereq_(40)
|
|
838
742
|
, FF_ITERATOR = '@@iterator'
|
|
839
743
|
, KEYS = 'keys'
|
|
840
744
|
, VALUES = 'values';
|
|
841
745
|
var returnThis = function(){ return this; };
|
|
842
746
|
module.exports = function(Base, NAME, Constructor, next, DEFAULT, IS_SET, FORCE){
|
|
843
|
-
_dereq_(
|
|
747
|
+
_dereq_(36)(Constructor, NAME, next);
|
|
844
748
|
var createMethod = function(kind){
|
|
845
749
|
switch(kind){
|
|
846
750
|
case KEYS: return function keys(){ return new Constructor(this, kind); };
|
|
@@ -854,9 +758,9 @@ module.exports = function(Base, NAME, Constructor, next, DEFAULT, IS_SET, FORCE)
|
|
|
854
758
|
, methods, key;
|
|
855
759
|
// Fix native
|
|
856
760
|
if(_native){
|
|
857
|
-
var IteratorPrototype = _dereq_(
|
|
761
|
+
var IteratorPrototype = _dereq_(41).getProto(_default.call(new Base));
|
|
858
762
|
// Set @@toStringTag to native iterators
|
|
859
|
-
_dereq_(
|
|
763
|
+
_dereq_(67)(IteratorPrototype, TAG, true);
|
|
860
764
|
// FF fix
|
|
861
765
|
if(!LIBRARY && has(proto, FF_ITERATOR))hide(IteratorPrototype, SYMBOL_ITERATOR, returnThis);
|
|
862
766
|
}
|
|
@@ -867,25 +771,25 @@ module.exports = function(Base, NAME, Constructor, next, DEFAULT, IS_SET, FORCE)
|
|
|
867
771
|
Iterators[TAG] = returnThis;
|
|
868
772
|
if(DEFAULT){
|
|
869
773
|
methods = {
|
|
870
|
-
values: DEFAULT == VALUES ? _default : createMethod(VALUES),
|
|
871
774
|
keys: IS_SET ? _default : createMethod(KEYS),
|
|
775
|
+
values: DEFAULT == VALUES ? _default : createMethod(VALUES),
|
|
872
776
|
entries: DEFAULT != VALUES ? _default : createMethod('entries')
|
|
873
777
|
};
|
|
874
778
|
if(FORCE)for(key in methods){
|
|
875
779
|
if(!(key in proto))$redef(proto, key, methods[key]);
|
|
876
|
-
} else $def($def.P + $def.F *
|
|
780
|
+
} else $def($def.P + $def.F * _dereq_(34), NAME, methods);
|
|
877
781
|
}
|
|
878
782
|
};
|
|
879
|
-
},{"
|
|
880
|
-
var SYMBOL_ITERATOR = _dereq_(
|
|
783
|
+
},{"15":15,"26":26,"27":27,"34":34,"36":36,"40":40,"41":41,"43":43,"53":53,"67":67,"76":76}],38:[function(_dereq_,module,exports){
|
|
784
|
+
var SYMBOL_ITERATOR = _dereq_(76)('iterator')
|
|
881
785
|
, SAFE_CLOSING = false;
|
|
882
786
|
try {
|
|
883
787
|
var riter = [7][SYMBOL_ITERATOR]();
|
|
884
788
|
riter['return'] = function(){ SAFE_CLOSING = true; };
|
|
885
789
|
Array.from(riter, function(){ throw 2; });
|
|
886
790
|
} catch(e){ /* empty */ }
|
|
887
|
-
module.exports = function(exec
|
|
888
|
-
if(!
|
|
791
|
+
module.exports = function(exec){
|
|
792
|
+
if(!SAFE_CLOSING)return false;
|
|
889
793
|
var safe = false;
|
|
890
794
|
try {
|
|
891
795
|
var arr = [7]
|
|
@@ -896,13 +800,13 @@ module.exports = function(exec, skipClosing){
|
|
|
896
800
|
} catch(e){ /* empty */ }
|
|
897
801
|
return safe;
|
|
898
802
|
};
|
|
899
|
-
},{"
|
|
803
|
+
},{"76":76}],39:[function(_dereq_,module,exports){
|
|
900
804
|
module.exports = function(done, value){
|
|
901
805
|
return {value: value, done: !!done};
|
|
902
806
|
};
|
|
903
|
-
},{}],
|
|
807
|
+
},{}],40:[function(_dereq_,module,exports){
|
|
904
808
|
module.exports = {};
|
|
905
|
-
},{}],
|
|
809
|
+
},{}],41:[function(_dereq_,module,exports){
|
|
906
810
|
var $Object = Object;
|
|
907
811
|
module.exports = {
|
|
908
812
|
create: $Object.create,
|
|
@@ -916,9 +820,9 @@ module.exports = {
|
|
|
916
820
|
getSymbols: $Object.getOwnPropertySymbols,
|
|
917
821
|
each: [].forEach
|
|
918
822
|
};
|
|
919
|
-
},{}],
|
|
920
|
-
var $ = _dereq_(
|
|
921
|
-
, toIObject = _dereq_(
|
|
823
|
+
},{}],42:[function(_dereq_,module,exports){
|
|
824
|
+
var $ = _dereq_(41)
|
|
825
|
+
, toIObject = _dereq_(71);
|
|
922
826
|
module.exports = function(object, el){
|
|
923
827
|
var O = toIObject(object)
|
|
924
828
|
, keys = $.getKeys(O)
|
|
@@ -927,117 +831,105 @@ module.exports = function(object, el){
|
|
|
927
831
|
, key;
|
|
928
832
|
while(length > index)if(O[key = keys[index++]] === el)return key;
|
|
929
833
|
};
|
|
930
|
-
},{"
|
|
834
|
+
},{"41":41,"71":71}],43:[function(_dereq_,module,exports){
|
|
931
835
|
module.exports = false;
|
|
932
|
-
},{}],
|
|
933
|
-
// 20.2.2.20 Math.log1p(x)
|
|
934
|
-
module.exports = Math.log1p || function log1p(x){
|
|
935
|
-
return (x = +x) > -1e-8 && x < 1e-8 ? x - x * x / 2 : Math.log(1 + x);
|
|
936
|
-
};
|
|
937
|
-
},{}],49:[function(_dereq_,module,exports){
|
|
938
|
-
var global = _dereq_(28)
|
|
939
|
-
, macrotask = _dereq_(73).set
|
|
940
|
-
, Observer = global.MutationObserver || global.WebKitMutationObserver
|
|
941
|
-
, process = global.process
|
|
942
|
-
, isNode = _dereq_(10)(process) == 'process'
|
|
943
|
-
, head, last, notify;
|
|
944
|
-
|
|
945
|
-
var flush = function(){
|
|
946
|
-
var parent, domain;
|
|
947
|
-
if(isNode && (parent = process.domain)){
|
|
948
|
-
process.domain = null;
|
|
949
|
-
parent.exit();
|
|
950
|
-
}
|
|
951
|
-
while(head){
|
|
952
|
-
domain = head.domain;
|
|
953
|
-
if(domain)domain.enter();
|
|
954
|
-
head.fn.call(); // <- currently we use it only for Promise - try / catch not required
|
|
955
|
-
if(domain)domain.exit();
|
|
956
|
-
head = head.next;
|
|
957
|
-
} last = undefined;
|
|
958
|
-
if(parent)parent.enter();
|
|
836
|
+
},{}],44:[function(_dereq_,module,exports){
|
|
837
|
+
// 20.2.2.20 Math.log1p(x)
|
|
838
|
+
module.exports = Math.log1p || function log1p(x){
|
|
839
|
+
return (x = +x) > -1e-8 && x < 1e-8 ? x - x * x / 2 : Math.log(1 + x);
|
|
959
840
|
};
|
|
960
|
-
|
|
961
|
-
|
|
962
|
-
|
|
963
|
-
|
|
964
|
-
|
|
965
|
-
|
|
966
|
-
|
|
967
|
-
|
|
968
|
-
|
|
969
|
-
|
|
970
|
-
|
|
971
|
-
|
|
972
|
-
|
|
973
|
-
|
|
974
|
-
//
|
|
975
|
-
|
|
976
|
-
|
|
977
|
-
|
|
978
|
-
|
|
979
|
-
//
|
|
980
|
-
} else {
|
|
981
|
-
|
|
982
|
-
|
|
983
|
-
|
|
984
|
-
|
|
985
|
-
|
|
986
|
-
|
|
987
|
-
|
|
988
|
-
|
|
989
|
-
|
|
990
|
-
|
|
991
|
-
|
|
992
|
-
|
|
993
|
-
|
|
841
|
+
},{}],45:[function(_dereq_,module,exports){
|
|
842
|
+
var global = _dereq_(25)
|
|
843
|
+
, macrotask = _dereq_(68).set
|
|
844
|
+
, Observer = global.MutationObserver || global.WebKitMutationObserver
|
|
845
|
+
, process = global.process
|
|
846
|
+
, head, last, notify;
|
|
847
|
+
|
|
848
|
+
function flush(){
|
|
849
|
+
while(head){
|
|
850
|
+
head.fn.call(); // <- currently we use it only for Promise - try / catch not required
|
|
851
|
+
head = head.next;
|
|
852
|
+
} last = undefined;
|
|
853
|
+
}
|
|
854
|
+
|
|
855
|
+
// Node.js
|
|
856
|
+
if(_dereq_(8)(process) == 'process'){
|
|
857
|
+
notify = function(){
|
|
858
|
+
process.nextTick(flush);
|
|
859
|
+
};
|
|
860
|
+
// browsers with MutationObserver
|
|
861
|
+
} else if(Observer){
|
|
862
|
+
var toggle = 1
|
|
863
|
+
, node = document.createTextNode('');
|
|
864
|
+
new Observer(flush).observe(node, {characterData: true}); // eslint-disable-line no-new
|
|
865
|
+
notify = function(){
|
|
866
|
+
node.data = toggle = -toggle;
|
|
867
|
+
};
|
|
868
|
+
// for other environments - macrotask based on:
|
|
869
|
+
// - setImmediate
|
|
870
|
+
// - MessageChannel
|
|
871
|
+
// - window.postMessag
|
|
872
|
+
// - onreadystatechange
|
|
873
|
+
// - setTimeout
|
|
874
|
+
} else {
|
|
875
|
+
notify = function(){
|
|
876
|
+
// strange IE + webpack dev server bug - use .call(global)
|
|
877
|
+
macrotask.call(global, flush);
|
|
878
|
+
};
|
|
879
|
+
}
|
|
880
|
+
|
|
881
|
+
module.exports = function asap(fn){
|
|
882
|
+
var task = {fn: fn, next: undefined};
|
|
883
|
+
if(last)last.next = task;
|
|
884
|
+
if(!head){
|
|
885
|
+
head = task;
|
|
886
|
+
notify();
|
|
887
|
+
} last = task;
|
|
994
888
|
};
|
|
995
|
-
},{"
|
|
996
|
-
var $redef = _dereq_(
|
|
889
|
+
},{"25":25,"68":68,"8":8}],46:[function(_dereq_,module,exports){
|
|
890
|
+
var $redef = _dereq_(53);
|
|
997
891
|
module.exports = function(target, src){
|
|
998
892
|
for(var key in src)$redef(target, key, src[key]);
|
|
999
893
|
return target;
|
|
1000
894
|
};
|
|
1001
|
-
},{"
|
|
895
|
+
},{"53":53}],47:[function(_dereq_,module,exports){
|
|
1002
896
|
// most Object methods by ES6 should accept primitives
|
|
1003
897
|
module.exports = function(KEY, exec){
|
|
1004
|
-
var $def = _dereq_(
|
|
1005
|
-
, fn = (_dereq_(
|
|
898
|
+
var $def = _dereq_(15)
|
|
899
|
+
, fn = (_dereq_(13).Object || {})[KEY] || Object[KEY]
|
|
1006
900
|
, exp = {};
|
|
1007
901
|
exp[KEY] = exec(fn);
|
|
1008
|
-
$def($def.S + $def.F * _dereq_(
|
|
902
|
+
$def($def.S + $def.F * _dereq_(20)(function(){ fn(1); }), 'Object', exp);
|
|
1009
903
|
};
|
|
1010
|
-
},{"
|
|
1011
|
-
var $ = _dereq_(
|
|
1012
|
-
, toIObject = _dereq_(
|
|
1013
|
-
, isEnum = $.isEnum;
|
|
904
|
+
},{"13":13,"15":15,"20":20}],48:[function(_dereq_,module,exports){
|
|
905
|
+
var $ = _dereq_(41)
|
|
906
|
+
, toIObject = _dereq_(71);
|
|
1014
907
|
module.exports = function(isEntries){
|
|
1015
908
|
return function(it){
|
|
1016
909
|
var O = toIObject(it)
|
|
1017
910
|
, keys = $.getKeys(O)
|
|
1018
911
|
, length = keys.length
|
|
1019
912
|
, i = 0
|
|
1020
|
-
, result =
|
|
913
|
+
, result = Array(length)
|
|
1021
914
|
, key;
|
|
1022
|
-
while(length > i)
|
|
1023
|
-
|
|
1024
|
-
|
|
915
|
+
if(isEntries)while(length > i)result[i] = [key = keys[i++], O[key]];
|
|
916
|
+
else while(length > i)result[i] = O[keys[i++]];
|
|
917
|
+
return result;
|
|
1025
918
|
};
|
|
1026
919
|
};
|
|
1027
|
-
},{"
|
|
920
|
+
},{"41":41,"71":71}],49:[function(_dereq_,module,exports){
|
|
1028
921
|
// all object keys, includes non-enumerable and symbols
|
|
1029
|
-
var $ = _dereq_(
|
|
1030
|
-
, anObject = _dereq_(3)
|
|
1031
|
-
|
|
1032
|
-
module.exports = Reflect && Reflect.ownKeys || function ownKeys(it){
|
|
922
|
+
var $ = _dereq_(41)
|
|
923
|
+
, anObject = _dereq_(3);
|
|
924
|
+
module.exports = function ownKeys(it){
|
|
1033
925
|
var keys = $.getNames(anObject(it))
|
|
1034
926
|
, getSymbols = $.getSymbols;
|
|
1035
927
|
return getSymbols ? keys.concat(getSymbols(it)) : keys;
|
|
1036
928
|
};
|
|
1037
|
-
},{"
|
|
929
|
+
},{"3":3,"41":41}],50:[function(_dereq_,module,exports){
|
|
1038
930
|
'use strict';
|
|
1039
|
-
var path = _dereq_(
|
|
1040
|
-
, invoke = _dereq_(
|
|
931
|
+
var path = _dereq_(51)
|
|
932
|
+
, invoke = _dereq_(29)
|
|
1041
933
|
, aFunction = _dereq_(2);
|
|
1042
934
|
module.exports = function(/* ...pargs */){
|
|
1043
935
|
var fn = aFunction(this)
|
|
@@ -1048,20 +940,19 @@ module.exports = function(/* ...pargs */){
|
|
|
1048
940
|
, holder = false;
|
|
1049
941
|
while(length > i)if((pargs[i] = arguments[i++]) === _)holder = true;
|
|
1050
942
|
return function(/* ...args */){
|
|
1051
|
-
var that
|
|
1052
|
-
,
|
|
1053
|
-
, $$len = $$.length
|
|
943
|
+
var that = this
|
|
944
|
+
, _length = arguments.length
|
|
1054
945
|
, j = 0, k = 0, args;
|
|
1055
|
-
if(!holder &&
|
|
946
|
+
if(!holder && !_length)return invoke(fn, pargs, that);
|
|
1056
947
|
args = pargs.slice();
|
|
1057
|
-
if(holder)for(;length > j; j++)if(args[j] === _)args[j] =
|
|
1058
|
-
while(
|
|
948
|
+
if(holder)for(;length > j; j++)if(args[j] === _)args[j] = arguments[k++];
|
|
949
|
+
while(_length > k)args.push(arguments[k++]);
|
|
1059
950
|
return invoke(fn, args, that);
|
|
1060
951
|
};
|
|
1061
952
|
};
|
|
1062
|
-
},{"2":2,"
|
|
1063
|
-
module.exports = _dereq_(
|
|
1064
|
-
},{"
|
|
953
|
+
},{"2":2,"29":29,"51":51}],51:[function(_dereq_,module,exports){
|
|
954
|
+
module.exports = _dereq_(25);
|
|
955
|
+
},{"25":25}],52:[function(_dereq_,module,exports){
|
|
1065
956
|
module.exports = function(bitmap, value){
|
|
1066
957
|
return {
|
|
1067
958
|
enumerable : !(bitmap & 1),
|
|
@@ -1070,24 +961,24 @@ module.exports = function(bitmap, value){
|
|
|
1070
961
|
value : value
|
|
1071
962
|
};
|
|
1072
963
|
};
|
|
1073
|
-
},{}],
|
|
964
|
+
},{}],53:[function(_dereq_,module,exports){
|
|
1074
965
|
// add fake Function#toString
|
|
1075
966
|
// for correct work wrapped methods / constructors with methods like LoDash isNative
|
|
1076
|
-
var global = _dereq_(
|
|
1077
|
-
, hide = _dereq_(
|
|
1078
|
-
, SRC = _dereq_(
|
|
967
|
+
var global = _dereq_(25)
|
|
968
|
+
, hide = _dereq_(27)
|
|
969
|
+
, SRC = _dereq_(74)('src')
|
|
1079
970
|
, TO_STRING = 'toString'
|
|
1080
971
|
, $toString = Function[TO_STRING]
|
|
1081
972
|
, TPL = ('' + $toString).split(TO_STRING);
|
|
1082
973
|
|
|
1083
|
-
_dereq_(
|
|
974
|
+
_dereq_(13).inspectSource = function(it){
|
|
1084
975
|
return $toString.call(it);
|
|
1085
976
|
};
|
|
1086
977
|
|
|
1087
978
|
(module.exports = function(O, key, val, safe){
|
|
1088
979
|
if(typeof val == 'function'){
|
|
1089
|
-
|
|
1090
|
-
|
|
980
|
+
hide(val, SRC, O[key] ? '' + O[key] : TPL.join(String(key)));
|
|
981
|
+
if(!('name' in val))val.name = key;
|
|
1091
982
|
}
|
|
1092
983
|
if(O === global){
|
|
1093
984
|
O[key] = val;
|
|
@@ -1098,7 +989,7 @@ _dereq_(15).inspectSource = function(it){
|
|
|
1098
989
|
})(Function.prototype, TO_STRING, function toString(){
|
|
1099
990
|
return typeof this == 'function' && this[SRC] || $toString.call(this);
|
|
1100
991
|
});
|
|
1101
|
-
},{"
|
|
992
|
+
},{"13":13,"25":25,"27":27,"74":74}],54:[function(_dereq_,module,exports){
|
|
1102
993
|
module.exports = function(regExp, replace){
|
|
1103
994
|
var replacer = replace === Object(replace) ? function(part){
|
|
1104
995
|
return replace[part];
|
|
@@ -1107,78 +998,69 @@ module.exports = function(regExp, replace){
|
|
|
1107
998
|
return String(it).replace(regExp, replacer);
|
|
1108
999
|
};
|
|
1109
1000
|
};
|
|
1110
|
-
},{}],
|
|
1001
|
+
},{}],55:[function(_dereq_,module,exports){
|
|
1111
1002
|
module.exports = Object.is || function is(x, y){
|
|
1112
1003
|
return x === y ? x !== 0 || 1 / x === 1 / y : x != x && y != y;
|
|
1113
1004
|
};
|
|
1114
|
-
},{}],
|
|
1005
|
+
},{}],56:[function(_dereq_,module,exports){
|
|
1115
1006
|
// Works with __proto__ only. Old v8 can't work with null proto objects.
|
|
1116
1007
|
/* eslint-disable no-proto */
|
|
1117
|
-
var getDesc = _dereq_(
|
|
1118
|
-
, isObject = _dereq_(
|
|
1008
|
+
var getDesc = _dereq_(41).getDesc
|
|
1009
|
+
, isObject = _dereq_(33)
|
|
1119
1010
|
, anObject = _dereq_(3);
|
|
1120
1011
|
var check = function(O, proto){
|
|
1121
1012
|
anObject(O);
|
|
1122
1013
|
if(!isObject(proto) && proto !== null)throw TypeError(proto + ": can't set as prototype!");
|
|
1123
1014
|
};
|
|
1124
1015
|
module.exports = {
|
|
1125
|
-
set: Object.setPrototypeOf || ('__proto__' in {}
|
|
1126
|
-
function(
|
|
1127
|
-
|
|
1128
|
-
|
|
1129
|
-
|
|
1130
|
-
buggy =
|
|
1131
|
-
|
|
1132
|
-
|
|
1133
|
-
|
|
1134
|
-
|
|
1135
|
-
|
|
1136
|
-
|
|
1137
|
-
}
|
|
1138
|
-
|
|
1016
|
+
set: Object.setPrototypeOf || ('__proto__' in {} // eslint-disable-line
|
|
1017
|
+
? function(buggy, set){
|
|
1018
|
+
try {
|
|
1019
|
+
set = _dereq_(14)(Function.call, getDesc(Object.prototype, '__proto__').set, 2);
|
|
1020
|
+
set({}, []);
|
|
1021
|
+
} catch(e){ buggy = true; }
|
|
1022
|
+
return function setPrototypeOf(O, proto){
|
|
1023
|
+
check(O, proto);
|
|
1024
|
+
if(buggy)O.__proto__ = proto;
|
|
1025
|
+
else set(O, proto);
|
|
1026
|
+
return O;
|
|
1027
|
+
};
|
|
1028
|
+
}()
|
|
1029
|
+
: undefined),
|
|
1139
1030
|
check: check
|
|
1140
1031
|
};
|
|
1141
|
-
},{"
|
|
1142
|
-
var global = _dereq_(
|
|
1032
|
+
},{"14":14,"3":3,"33":33,"41":41}],57:[function(_dereq_,module,exports){
|
|
1033
|
+
var global = _dereq_(25)
|
|
1143
1034
|
, SHARED = '__core-js_shared__'
|
|
1144
1035
|
, store = global[SHARED] || (global[SHARED] = {});
|
|
1145
1036
|
module.exports = function(key){
|
|
1146
1037
|
return store[key] || (store[key] = {});
|
|
1147
1038
|
};
|
|
1148
|
-
},{"
|
|
1039
|
+
},{"25":25}],58:[function(_dereq_,module,exports){
|
|
1149
1040
|
// 20.2.2.28 Math.sign(x)
|
|
1150
1041
|
module.exports = Math.sign || function sign(x){
|
|
1151
1042
|
return (x = +x) == 0 || x != x ? x : x < 0 ? -1 : 1;
|
|
1152
1043
|
};
|
|
1153
|
-
},{}],
|
|
1154
|
-
// 7.3.20 SpeciesConstructor(O, defaultConstructor)
|
|
1155
|
-
var anObject = _dereq_(3)
|
|
1156
|
-
, aFunction = _dereq_(2)
|
|
1157
|
-
, SPECIES = _dereq_(81)('species');
|
|
1158
|
-
module.exports = function(O, D){
|
|
1159
|
-
var C = anObject(O).constructor, S;
|
|
1160
|
-
return C === undefined || (S = anObject(C)[SPECIES]) == undefined ? D : aFunction(S);
|
|
1161
|
-
};
|
|
1162
|
-
},{"2":2,"3":3,"81":81}],64:[function(_dereq_,module,exports){
|
|
1044
|
+
},{}],59:[function(_dereq_,module,exports){
|
|
1163
1045
|
'use strict';
|
|
1164
|
-
var $ = _dereq_(
|
|
1165
|
-
, SPECIES = _dereq_(
|
|
1046
|
+
var $ = _dereq_(41)
|
|
1047
|
+
, SPECIES = _dereq_(76)('species');
|
|
1166
1048
|
module.exports = function(C){
|
|
1167
|
-
if(_dereq_(
|
|
1049
|
+
if(_dereq_(66) && !(SPECIES in C))$.setDesc(C, SPECIES, {
|
|
1168
1050
|
configurable: true,
|
|
1169
1051
|
get: function(){ return this; }
|
|
1170
1052
|
});
|
|
1171
1053
|
};
|
|
1172
|
-
},{"
|
|
1054
|
+
},{"41":41,"66":66,"76":76}],60:[function(_dereq_,module,exports){
|
|
1173
1055
|
module.exports = function(it, Constructor, name){
|
|
1174
1056
|
if(!(it instanceof Constructor))throw TypeError(name + ": use the 'new' operator!");
|
|
1175
1057
|
return it;
|
|
1176
1058
|
};
|
|
1177
|
-
},{}],
|
|
1059
|
+
},{}],61:[function(_dereq_,module,exports){
|
|
1178
1060
|
// true -> String#at
|
|
1179
1061
|
// false -> String#codePointAt
|
|
1180
|
-
var toInteger = _dereq_(
|
|
1181
|
-
, defined = _dereq_(
|
|
1062
|
+
var toInteger = _dereq_(70)
|
|
1063
|
+
, defined = _dereq_(16);
|
|
1182
1064
|
module.exports = function(TO_STRING){
|
|
1183
1065
|
return function(that, pos){
|
|
1184
1066
|
var s = String(defined(that))
|
|
@@ -1193,20 +1075,20 @@ module.exports = function(TO_STRING){
|
|
|
1193
1075
|
: TO_STRING ? s.slice(i, i + 2) : (a - 0xd800 << 10) + (b - 0xdc00) + 0x10000;
|
|
1194
1076
|
};
|
|
1195
1077
|
};
|
|
1196
|
-
},{"
|
|
1078
|
+
},{"16":16,"70":70}],62:[function(_dereq_,module,exports){
|
|
1197
1079
|
// helper for String#{startsWith, endsWith, includes}
|
|
1198
|
-
var
|
|
1199
|
-
,
|
|
1080
|
+
var defined = _dereq_(16)
|
|
1081
|
+
, cof = _dereq_(8);
|
|
1200
1082
|
|
|
1201
1083
|
module.exports = function(that, searchString, NAME){
|
|
1202
|
-
if(
|
|
1084
|
+
if(cof(searchString) == 'RegExp')throw TypeError('String#' + NAME + " doesn't accept regex!");
|
|
1203
1085
|
return String(defined(that));
|
|
1204
1086
|
};
|
|
1205
|
-
},{"
|
|
1087
|
+
},{"16":16,"8":8}],63:[function(_dereq_,module,exports){
|
|
1206
1088
|
// https://github.com/ljharb/proposal-string-pad-left-right
|
|
1207
|
-
var toLength = _dereq_(
|
|
1208
|
-
, repeat = _dereq_(
|
|
1209
|
-
, defined = _dereq_(
|
|
1089
|
+
var toLength = _dereq_(72)
|
|
1090
|
+
, repeat = _dereq_(64)
|
|
1091
|
+
, defined = _dereq_(16);
|
|
1210
1092
|
|
|
1211
1093
|
module.exports = function(that, maxLength, fillString, left){
|
|
1212
1094
|
var S = String(defined(that))
|
|
@@ -1217,13 +1099,15 @@ module.exports = function(that, maxLength, fillString, left){
|
|
|
1217
1099
|
if(fillStr == '')fillStr = ' ';
|
|
1218
1100
|
var fillLen = intMaxLength - stringLength
|
|
1219
1101
|
, stringFiller = repeat.call(fillStr, Math.ceil(fillLen / fillStr.length));
|
|
1220
|
-
if(stringFiller.length > fillLen)stringFiller =
|
|
1102
|
+
if(stringFiller.length > fillLen)stringFiller = left
|
|
1103
|
+
? stringFiller.slice(stringFiller.length - fillLen)
|
|
1104
|
+
: stringFiller.slice(0, fillLen);
|
|
1221
1105
|
return left ? stringFiller + S : S + stringFiller;
|
|
1222
1106
|
};
|
|
1223
|
-
},{"
|
|
1107
|
+
},{"16":16,"64":64,"72":72}],64:[function(_dereq_,module,exports){
|
|
1224
1108
|
'use strict';
|
|
1225
|
-
var toInteger = _dereq_(
|
|
1226
|
-
, defined = _dereq_(
|
|
1109
|
+
var toInteger = _dereq_(70)
|
|
1110
|
+
, defined = _dereq_(16);
|
|
1227
1111
|
|
|
1228
1112
|
module.exports = function repeat(count){
|
|
1229
1113
|
var str = String(defined(this))
|
|
@@ -1233,7 +1117,7 @@ module.exports = function repeat(count){
|
|
|
1233
1117
|
for(;n > 0; (n >>>= 1) && (str += str))if(n & 1)res += str;
|
|
1234
1118
|
return res;
|
|
1235
1119
|
};
|
|
1236
|
-
},{"
|
|
1120
|
+
},{"16":16,"70":70}],65:[function(_dereq_,module,exports){
|
|
1237
1121
|
// 1 -> String#trimLeft
|
|
1238
1122
|
// 2 -> String#trimRight
|
|
1239
1123
|
// 3 -> String#trim
|
|
@@ -1244,8 +1128,8 @@ var trim = function(string, TYPE){
|
|
|
1244
1128
|
return string;
|
|
1245
1129
|
};
|
|
1246
1130
|
|
|
1247
|
-
var $def = _dereq_(
|
|
1248
|
-
, defined = _dereq_(
|
|
1131
|
+
var $def = _dereq_(15)
|
|
1132
|
+
, defined = _dereq_(16)
|
|
1249
1133
|
, spaces = '\x09\x0A\x0B\x0C\x0D\x20\xA0\u1680\u180E\u2000\u2001\u2002\u2003' +
|
|
1250
1134
|
'\u2004\u2005\u2006\u2007\u2008\u2009\u200A\u202F\u205F\u3000\u2028\u2029\uFEFF'
|
|
1251
1135
|
, space = '[' + spaces + ']'
|
|
@@ -1256,30 +1140,30 @@ var $def = _dereq_(17)
|
|
|
1256
1140
|
module.exports = function(KEY, exec){
|
|
1257
1141
|
var exp = {};
|
|
1258
1142
|
exp[KEY] = exec(trim);
|
|
1259
|
-
$def($def.P + $def.F * _dereq_(
|
|
1143
|
+
$def($def.P + $def.F * _dereq_(20)(function(){
|
|
1260
1144
|
return !!spaces[KEY]() || non[KEY]() != non;
|
|
1261
1145
|
}), 'String', exp);
|
|
1262
1146
|
};
|
|
1263
|
-
},{"
|
|
1147
|
+
},{"15":15,"16":16,"20":20}],66:[function(_dereq_,module,exports){
|
|
1264
1148
|
// Thank's IE8 for his funny defineProperty
|
|
1265
|
-
module.exports = !_dereq_(
|
|
1149
|
+
module.exports = !_dereq_(20)(function(){
|
|
1266
1150
|
return Object.defineProperty({}, 'a', {get: function(){ return 7; }}).a != 7;
|
|
1267
1151
|
});
|
|
1268
|
-
},{"
|
|
1269
|
-
var
|
|
1270
|
-
,
|
|
1271
|
-
, TAG
|
|
1152
|
+
},{"20":20}],67:[function(_dereq_,module,exports){
|
|
1153
|
+
var has = _dereq_(26)
|
|
1154
|
+
, hide = _dereq_(27)
|
|
1155
|
+
, TAG = _dereq_(76)('toStringTag');
|
|
1272
1156
|
|
|
1273
1157
|
module.exports = function(it, tag, stat){
|
|
1274
|
-
if(it && !has(it = stat ? it : it.prototype, TAG))
|
|
1158
|
+
if(it && !has(it = stat ? it : it.prototype, TAG))hide(it, TAG, tag);
|
|
1275
1159
|
};
|
|
1276
|
-
},{"
|
|
1160
|
+
},{"26":26,"27":27,"76":76}],68:[function(_dereq_,module,exports){
|
|
1277
1161
|
'use strict';
|
|
1278
|
-
var ctx = _dereq_(
|
|
1279
|
-
, invoke = _dereq_(
|
|
1280
|
-
, html = _dereq_(
|
|
1281
|
-
, cel = _dereq_(
|
|
1282
|
-
, global = _dereq_(
|
|
1162
|
+
var ctx = _dereq_(14)
|
|
1163
|
+
, invoke = _dereq_(29)
|
|
1164
|
+
, html = _dereq_(28)
|
|
1165
|
+
, cel = _dereq_(17)
|
|
1166
|
+
, global = _dereq_(25)
|
|
1283
1167
|
, process = global.process
|
|
1284
1168
|
, setTask = global.setImmediate
|
|
1285
1169
|
, clearTask = global.clearImmediate
|
|
@@ -1314,7 +1198,7 @@ if(!setTask || !clearTask){
|
|
|
1314
1198
|
delete queue[id];
|
|
1315
1199
|
};
|
|
1316
1200
|
// Node.js 0.8-
|
|
1317
|
-
if(_dereq_(
|
|
1201
|
+
if(_dereq_(8)(process) == 'process'){
|
|
1318
1202
|
defer = function(id){
|
|
1319
1203
|
process.nextTick(ctx(run, id, 1));
|
|
1320
1204
|
};
|
|
@@ -1326,7 +1210,7 @@ if(!setTask || !clearTask){
|
|
|
1326
1210
|
defer = ctx(port.postMessage, port, 1);
|
|
1327
1211
|
// Browsers with postMessage, skip WebWorkers
|
|
1328
1212
|
// IE8 has postMessage, but it's sync & typeof its postMessage is 'object'
|
|
1329
|
-
} else if(global.addEventListener && typeof postMessage == 'function' && !global.
|
|
1213
|
+
} else if(global.addEventListener && typeof postMessage == 'function' && !global.importScript){
|
|
1330
1214
|
defer = function(id){
|
|
1331
1215
|
global.postMessage(id + '', '*');
|
|
1332
1216
|
};
|
|
@@ -1350,93 +1234,91 @@ module.exports = {
|
|
|
1350
1234
|
set: setTask,
|
|
1351
1235
|
clear: clearTask
|
|
1352
1236
|
};
|
|
1353
|
-
},{"
|
|
1354
|
-
var toInteger = _dereq_(
|
|
1237
|
+
},{"14":14,"17":17,"25":25,"28":28,"29":29,"8":8}],69:[function(_dereq_,module,exports){
|
|
1238
|
+
var toInteger = _dereq_(70)
|
|
1355
1239
|
, max = Math.max
|
|
1356
1240
|
, min = Math.min;
|
|
1357
1241
|
module.exports = function(index, length){
|
|
1358
1242
|
index = toInteger(index);
|
|
1359
1243
|
return index < 0 ? max(index + length, 0) : min(index, length);
|
|
1360
1244
|
};
|
|
1361
|
-
},{"
|
|
1245
|
+
},{"70":70}],70:[function(_dereq_,module,exports){
|
|
1362
1246
|
// 7.1.4 ToInteger
|
|
1363
1247
|
var ceil = Math.ceil
|
|
1364
1248
|
, floor = Math.floor;
|
|
1365
1249
|
module.exports = function(it){
|
|
1366
1250
|
return isNaN(it = +it) ? 0 : (it > 0 ? floor : ceil)(it);
|
|
1367
1251
|
};
|
|
1368
|
-
},{}],
|
|
1369
|
-
// to indexed object, toObject with fallback for non-array-like ES3 strings
|
|
1370
|
-
var IObject = _dereq_(
|
|
1371
|
-
, defined = _dereq_(
|
|
1372
|
-
module.exports = function(it){
|
|
1373
|
-
return IObject(defined(it));
|
|
1252
|
+
},{}],71:[function(_dereq_,module,exports){
|
|
1253
|
+
// to indexed object, toObject with fallback for non-array-like ES3 strings
|
|
1254
|
+
var IObject = _dereq_(30)
|
|
1255
|
+
, defined = _dereq_(16);
|
|
1256
|
+
module.exports = function(it){
|
|
1257
|
+
return IObject(defined(it));
|
|
1374
1258
|
};
|
|
1375
|
-
},{"
|
|
1259
|
+
},{"16":16,"30":30}],72:[function(_dereq_,module,exports){
|
|
1376
1260
|
// 7.1.15 ToLength
|
|
1377
|
-
var toInteger = _dereq_(
|
|
1261
|
+
var toInteger = _dereq_(70)
|
|
1378
1262
|
, min = Math.min;
|
|
1379
1263
|
module.exports = function(it){
|
|
1380
1264
|
return it > 0 ? min(toInteger(it), 0x1fffffffffffff) : 0; // pow(2, 53) - 1 == 9007199254740991
|
|
1381
1265
|
};
|
|
1382
|
-
},{"
|
|
1266
|
+
},{"70":70}],73:[function(_dereq_,module,exports){
|
|
1383
1267
|
// 7.1.13 ToObject(argument)
|
|
1384
|
-
var defined = _dereq_(
|
|
1268
|
+
var defined = _dereq_(16);
|
|
1385
1269
|
module.exports = function(it){
|
|
1386
1270
|
return Object(defined(it));
|
|
1387
1271
|
};
|
|
1388
|
-
},{"
|
|
1272
|
+
},{"16":16}],74:[function(_dereq_,module,exports){
|
|
1389
1273
|
var id = 0
|
|
1390
1274
|
, px = Math.random();
|
|
1391
1275
|
module.exports = function(key){
|
|
1392
1276
|
return 'Symbol('.concat(key === undefined ? '' : key, ')_', (++id + px).toString(36));
|
|
1393
1277
|
};
|
|
1394
|
-
},{}],
|
|
1278
|
+
},{}],75:[function(_dereq_,module,exports){
|
|
1395
1279
|
// 22.1.3.31 Array.prototype[@@unscopables]
|
|
1396
|
-
var UNSCOPABLES = _dereq_(
|
|
1397
|
-
if(
|
|
1280
|
+
var UNSCOPABLES = _dereq_(76)('unscopables');
|
|
1281
|
+
if(!(UNSCOPABLES in []))_dereq_(27)(Array.prototype, UNSCOPABLES, {});
|
|
1398
1282
|
module.exports = function(key){
|
|
1399
1283
|
[][UNSCOPABLES][key] = true;
|
|
1400
1284
|
};
|
|
1401
|
-
},{"
|
|
1402
|
-
var store = _dereq_(
|
|
1403
|
-
, Symbol = _dereq_(
|
|
1285
|
+
},{"27":27,"76":76}],76:[function(_dereq_,module,exports){
|
|
1286
|
+
var store = _dereq_(57)('wks')
|
|
1287
|
+
, Symbol = _dereq_(25).Symbol;
|
|
1404
1288
|
module.exports = function(name){
|
|
1405
1289
|
return store[name] || (store[name] =
|
|
1406
|
-
Symbol && Symbol[name] || (Symbol || _dereq_(
|
|
1290
|
+
Symbol && Symbol[name] || (Symbol || _dereq_(74))('Symbol.' + name));
|
|
1407
1291
|
};
|
|
1408
|
-
},{"
|
|
1409
|
-
var classof = _dereq_(
|
|
1410
|
-
, ITERATOR = _dereq_(
|
|
1411
|
-
, Iterators = _dereq_(
|
|
1412
|
-
module.exports = _dereq_(
|
|
1413
|
-
if(it != undefined)return it[ITERATOR]
|
|
1414
|
-
|| it['@@iterator']
|
|
1415
|
-
|| Iterators[classof(it)];
|
|
1292
|
+
},{"25":25,"57":57,"74":74}],77:[function(_dereq_,module,exports){
|
|
1293
|
+
var classof = _dereq_(7)
|
|
1294
|
+
, ITERATOR = _dereq_(76)('iterator')
|
|
1295
|
+
, Iterators = _dereq_(40);
|
|
1296
|
+
module.exports = _dereq_(13).getIteratorMethod = function(it){
|
|
1297
|
+
if(it != undefined)return it[ITERATOR] || it['@@iterator'] || Iterators[classof(it)];
|
|
1416
1298
|
};
|
|
1417
|
-
},{"
|
|
1299
|
+
},{"13":13,"40":40,"7":7,"76":76}],78:[function(_dereq_,module,exports){
|
|
1418
1300
|
'use strict';
|
|
1419
|
-
var $ = _dereq_(
|
|
1420
|
-
, SUPPORT_DESC = _dereq_(
|
|
1421
|
-
, createDesc = _dereq_(
|
|
1422
|
-
, html = _dereq_(
|
|
1423
|
-
, cel = _dereq_(
|
|
1424
|
-
, has = _dereq_(
|
|
1425
|
-
, cof = _dereq_(
|
|
1426
|
-
, $def = _dereq_(
|
|
1427
|
-
, invoke = _dereq_(
|
|
1428
|
-
, arrayMethod = _dereq_(
|
|
1429
|
-
, IE_PROTO = _dereq_(
|
|
1430
|
-
, isObject = _dereq_(
|
|
1301
|
+
var $ = _dereq_(41)
|
|
1302
|
+
, SUPPORT_DESC = _dereq_(66)
|
|
1303
|
+
, createDesc = _dereq_(52)
|
|
1304
|
+
, html = _dereq_(28)
|
|
1305
|
+
, cel = _dereq_(17)
|
|
1306
|
+
, has = _dereq_(26)
|
|
1307
|
+
, cof = _dereq_(8)
|
|
1308
|
+
, $def = _dereq_(15)
|
|
1309
|
+
, invoke = _dereq_(29)
|
|
1310
|
+
, arrayMethod = _dereq_(5)
|
|
1311
|
+
, IE_PROTO = _dereq_(74)('__proto__')
|
|
1312
|
+
, isObject = _dereq_(33)
|
|
1431
1313
|
, anObject = _dereq_(3)
|
|
1432
1314
|
, aFunction = _dereq_(2)
|
|
1433
|
-
, toObject = _dereq_(
|
|
1434
|
-
, toIObject = _dereq_(
|
|
1435
|
-
, toInteger = _dereq_(
|
|
1436
|
-
, toIndex = _dereq_(
|
|
1437
|
-
, toLength = _dereq_(
|
|
1438
|
-
, IObject = _dereq_(
|
|
1439
|
-
, fails = _dereq_(
|
|
1315
|
+
, toObject = _dereq_(73)
|
|
1316
|
+
, toIObject = _dereq_(71)
|
|
1317
|
+
, toInteger = _dereq_(70)
|
|
1318
|
+
, toIndex = _dereq_(69)
|
|
1319
|
+
, toLength = _dereq_(72)
|
|
1320
|
+
, IObject = _dereq_(30)
|
|
1321
|
+
, fails = _dereq_(20)
|
|
1440
1322
|
, ObjectProto = Object.prototype
|
|
1441
1323
|
, A = []
|
|
1442
1324
|
, _slice = A.slice
|
|
@@ -1444,7 +1326,7 @@ var $ = _dereq_(45)
|
|
|
1444
1326
|
, defineProperty = $.setDesc
|
|
1445
1327
|
, getOwnDescriptor = $.getDesc
|
|
1446
1328
|
, defineProperties = $.setDescs
|
|
1447
|
-
, $indexOf = _dereq_(
|
|
1329
|
+
, $indexOf = _dereq_(4)(false)
|
|
1448
1330
|
, factories = {}
|
|
1449
1331
|
, IE8_DOM_DEFINE;
|
|
1450
1332
|
|
|
@@ -1605,7 +1487,7 @@ $def($def.P + $def.F * (IObject != Object), 'Array', {
|
|
|
1605
1487
|
});
|
|
1606
1488
|
|
|
1607
1489
|
// 22.1.2.2 / 15.4.3.2 Array.isArray(arg)
|
|
1608
|
-
$def($def.S, 'Array', {isArray:
|
|
1490
|
+
$def($def.S, 'Array', {isArray: function(arg){ return cof(arg) == 'Array'; }});
|
|
1609
1491
|
|
|
1610
1492
|
var createArrayReduce = function(isRight){
|
|
1611
1493
|
return function(callbackfn, memo){
|
|
@@ -1690,81 +1572,113 @@ $def($def.P + $def.F * brokenDate, 'Date', {
|
|
|
1690
1572
|
':' + lz(d.getUTCSeconds()) + '.' + (m > 99 ? m : '0' + lz(m)) + 'Z';
|
|
1691
1573
|
}
|
|
1692
1574
|
});
|
|
1693
|
-
},{"
|
|
1694
|
-
// 22.1.3.3 Array.prototype.copyWithin(target, start, end = this.length)
|
|
1575
|
+
},{"15":15,"17":17,"2":2,"20":20,"26":26,"28":28,"29":29,"3":3,"30":30,"33":33,"4":4,"41":41,"5":5,"52":52,"66":66,"69":69,"70":70,"71":71,"72":72,"73":73,"74":74,"8":8}],79:[function(_dereq_,module,exports){
|
|
1695
1576
|
'use strict';
|
|
1696
|
-
var $def
|
|
1697
|
-
|
|
1698
|
-
|
|
1699
|
-
|
|
1700
|
-
|
|
1701
|
-
|
|
1702
|
-
|
|
1703
|
-
var
|
|
1704
|
-
|
|
1705
|
-
|
|
1706
|
-
|
|
1707
|
-
|
|
1708
|
-
|
|
1577
|
+
var $def = _dereq_(15)
|
|
1578
|
+
, toObject = _dereq_(73)
|
|
1579
|
+
, toIndex = _dereq_(69)
|
|
1580
|
+
, toLength = _dereq_(72);
|
|
1581
|
+
$def($def.P, 'Array', {
|
|
1582
|
+
// 22.1.3.3 Array.prototype.copyWithin(target, start, end = this.length)
|
|
1583
|
+
copyWithin: function copyWithin(target/* = 0 */, start /* = 0, end = @length */){
|
|
1584
|
+
var O = toObject(this)
|
|
1585
|
+
, len = toLength(O.length)
|
|
1586
|
+
, to = toIndex(target, len)
|
|
1587
|
+
, from = toIndex(start, len)
|
|
1588
|
+
, end = arguments[2]
|
|
1589
|
+
, fin = end === undefined ? len : toIndex(end, len)
|
|
1590
|
+
, count = Math.min(fin - from, len - to)
|
|
1591
|
+
, inc = 1;
|
|
1592
|
+
if(from < to && to < from + count){
|
|
1593
|
+
inc = -1;
|
|
1594
|
+
from = from + count - 1;
|
|
1595
|
+
to = to + count - 1;
|
|
1596
|
+
}
|
|
1597
|
+
while(count-- > 0){
|
|
1598
|
+
if(from in O)O[to] = O[from];
|
|
1599
|
+
else delete O[to];
|
|
1600
|
+
to += inc;
|
|
1601
|
+
from += inc;
|
|
1602
|
+
} return O;
|
|
1603
|
+
}
|
|
1604
|
+
});
|
|
1605
|
+
_dereq_(75)('copyWithin');
|
|
1606
|
+
},{"15":15,"69":69,"72":72,"73":73,"75":75}],80:[function(_dereq_,module,exports){
|
|
1607
|
+
'use strict';
|
|
1608
|
+
var $def = _dereq_(15)
|
|
1609
|
+
, toObject = _dereq_(73)
|
|
1610
|
+
, toIndex = _dereq_(69)
|
|
1611
|
+
, toLength = _dereq_(72);
|
|
1612
|
+
$def($def.P, 'Array', {
|
|
1613
|
+
// 22.1.3.6 Array.prototype.fill(value, start = 0, end = this.length)
|
|
1614
|
+
fill: function fill(value /*, start = 0, end = @length */){
|
|
1615
|
+
var O = toObject(this, true)
|
|
1616
|
+
, length = toLength(O.length)
|
|
1617
|
+
, index = toIndex(arguments[1], length)
|
|
1618
|
+
, end = arguments[2]
|
|
1619
|
+
, endPos = end === undefined ? length : toIndex(end, length);
|
|
1620
|
+
while(endPos > index)O[index++] = value;
|
|
1621
|
+
return O;
|
|
1622
|
+
}
|
|
1623
|
+
});
|
|
1624
|
+
_dereq_(75)('fill');
|
|
1625
|
+
},{"15":15,"69":69,"72":72,"73":73,"75":75}],81:[function(_dereq_,module,exports){
|
|
1709
1626
|
'use strict';
|
|
1710
1627
|
// 22.1.3.9 Array.prototype.findIndex(predicate, thisArg = undefined)
|
|
1711
1628
|
var KEY = 'findIndex'
|
|
1712
|
-
, $def = _dereq_(
|
|
1629
|
+
, $def = _dereq_(15)
|
|
1713
1630
|
, forced = true
|
|
1714
|
-
, $find = _dereq_(
|
|
1631
|
+
, $find = _dereq_(5)(6);
|
|
1715
1632
|
// Shouldn't skip holes
|
|
1716
1633
|
if(KEY in [])Array(1)[KEY](function(){ forced = false; });
|
|
1717
1634
|
$def($def.P + $def.F * forced, 'Array', {
|
|
1718
1635
|
findIndex: function findIndex(callbackfn/*, that = undefined */){
|
|
1719
|
-
return $find(this, callbackfn, arguments
|
|
1636
|
+
return $find(this, callbackfn, arguments[1]);
|
|
1720
1637
|
}
|
|
1721
1638
|
});
|
|
1722
|
-
_dereq_(
|
|
1723
|
-
},{"
|
|
1639
|
+
_dereq_(75)(KEY);
|
|
1640
|
+
},{"15":15,"5":5,"75":75}],82:[function(_dereq_,module,exports){
|
|
1724
1641
|
'use strict';
|
|
1725
1642
|
// 22.1.3.8 Array.prototype.find(predicate, thisArg = undefined)
|
|
1726
1643
|
var KEY = 'find'
|
|
1727
|
-
, $def = _dereq_(
|
|
1644
|
+
, $def = _dereq_(15)
|
|
1728
1645
|
, forced = true
|
|
1729
|
-
, $find = _dereq_(
|
|
1646
|
+
, $find = _dereq_(5)(5);
|
|
1730
1647
|
// Shouldn't skip holes
|
|
1731
1648
|
if(KEY in [])Array(1)[KEY](function(){ forced = false; });
|
|
1732
1649
|
$def($def.P + $def.F * forced, 'Array', {
|
|
1733
1650
|
find: function find(callbackfn/*, that = undefined */){
|
|
1734
|
-
return $find(this, callbackfn, arguments
|
|
1651
|
+
return $find(this, callbackfn, arguments[1]);
|
|
1735
1652
|
}
|
|
1736
1653
|
});
|
|
1737
|
-
_dereq_(
|
|
1738
|
-
},{"
|
|
1654
|
+
_dereq_(75)(KEY);
|
|
1655
|
+
},{"15":15,"5":5,"75":75}],83:[function(_dereq_,module,exports){
|
|
1739
1656
|
'use strict';
|
|
1740
|
-
var ctx = _dereq_(
|
|
1741
|
-
, $def = _dereq_(
|
|
1742
|
-
, toObject = _dereq_(
|
|
1743
|
-
, call = _dereq_(
|
|
1744
|
-
, isArrayIter = _dereq_(
|
|
1745
|
-
, toLength = _dereq_(
|
|
1746
|
-
, getIterFn = _dereq_(
|
|
1747
|
-
$def($def.S + $def.F * !_dereq_(
|
|
1657
|
+
var ctx = _dereq_(14)
|
|
1658
|
+
, $def = _dereq_(15)
|
|
1659
|
+
, toObject = _dereq_(73)
|
|
1660
|
+
, call = _dereq_(35)
|
|
1661
|
+
, isArrayIter = _dereq_(31)
|
|
1662
|
+
, toLength = _dereq_(72)
|
|
1663
|
+
, getIterFn = _dereq_(77);
|
|
1664
|
+
$def($def.S + $def.F * !_dereq_(38)(function(iter){ Array.from(iter); }), 'Array', {
|
|
1748
1665
|
// 22.1.2.1 Array.from(arrayLike, mapfn = undefined, thisArg = undefined)
|
|
1749
1666
|
from: function from(arrayLike/*, mapfn = undefined, thisArg = undefined*/){
|
|
1750
1667
|
var O = toObject(arrayLike)
|
|
1751
1668
|
, C = typeof this == 'function' ? this : Array
|
|
1752
|
-
,
|
|
1753
|
-
, $$len = $$.length
|
|
1754
|
-
, mapfn = $$len > 1 ? $$[1] : undefined
|
|
1669
|
+
, mapfn = arguments[1]
|
|
1755
1670
|
, mapping = mapfn !== undefined
|
|
1756
1671
|
, index = 0
|
|
1757
1672
|
, iterFn = getIterFn(O)
|
|
1758
1673
|
, length, result, step, iterator;
|
|
1759
|
-
if(mapping)mapfn = ctx(mapfn,
|
|
1674
|
+
if(mapping)mapfn = ctx(mapfn, arguments[2], 2);
|
|
1760
1675
|
// if object isn't iterable or it's array with default iterator - use simple case
|
|
1761
1676
|
if(iterFn != undefined && !(C == Array && isArrayIter(iterFn))){
|
|
1762
1677
|
for(iterator = iterFn.call(O), result = new C; !(step = iterator.next()).done; index++){
|
|
1763
1678
|
result[index] = mapping ? call(iterator, mapfn, [step.value, index], true) : step.value;
|
|
1764
1679
|
}
|
|
1765
1680
|
} else {
|
|
1766
|
-
length = toLength(O.length);
|
|
1767
|
-
for(result = new C(length); length > index; index++){
|
|
1681
|
+
for(result = new C(length = toLength(O.length)); length > index; index++){
|
|
1768
1682
|
result[index] = mapping ? mapfn(O[index], index) : O[index];
|
|
1769
1683
|
}
|
|
1770
1684
|
}
|
|
@@ -1772,19 +1686,18 @@ $def($def.S + $def.F * !_dereq_(42)(function(iter){ Array.from(iter); }), 'Array
|
|
|
1772
1686
|
return result;
|
|
1773
1687
|
}
|
|
1774
1688
|
});
|
|
1775
|
-
|
|
1776
|
-
},{"16":16,"17":17,"34":34,"39":39,"42":42,"77":77,"78":78,"82":82}],89:[function(_dereq_,module,exports){
|
|
1689
|
+
},{"14":14,"15":15,"31":31,"35":35,"38":38,"72":72,"73":73,"77":77}],84:[function(_dereq_,module,exports){
|
|
1777
1690
|
'use strict';
|
|
1778
|
-
var setUnscope = _dereq_(
|
|
1779
|
-
, step = _dereq_(
|
|
1780
|
-
, Iterators = _dereq_(
|
|
1781
|
-
, toIObject = _dereq_(
|
|
1691
|
+
var setUnscope = _dereq_(75)
|
|
1692
|
+
, step = _dereq_(39)
|
|
1693
|
+
, Iterators = _dereq_(40)
|
|
1694
|
+
, toIObject = _dereq_(71);
|
|
1782
1695
|
|
|
1783
1696
|
// 22.1.3.4 Array.prototype.entries()
|
|
1784
1697
|
// 22.1.3.13 Array.prototype.keys()
|
|
1785
1698
|
// 22.1.3.29 Array.prototype.values()
|
|
1786
1699
|
// 22.1.3.30 Array.prototype[@@iterator]()
|
|
1787
|
-
_dereq_(
|
|
1700
|
+
_dereq_(37)(Array, 'Array', function(iterated, kind){
|
|
1788
1701
|
this._t = toIObject(iterated); // target
|
|
1789
1702
|
this._i = 0; // next index
|
|
1790
1703
|
this._k = kind; // kind
|
|
@@ -1808,33 +1721,27 @@ Iterators.Arguments = Iterators.Array;
|
|
|
1808
1721
|
setUnscope('keys');
|
|
1809
1722
|
setUnscope('values');
|
|
1810
1723
|
setUnscope('entries');
|
|
1811
|
-
},{"
|
|
1724
|
+
},{"37":37,"39":39,"40":40,"71":71,"75":75}],85:[function(_dereq_,module,exports){
|
|
1812
1725
|
'use strict';
|
|
1813
|
-
var $def = _dereq_(
|
|
1814
|
-
|
|
1815
|
-
// WebKit Array.of isn't generic
|
|
1816
|
-
$def($def.S + $def.F * _dereq_(23)(function(){
|
|
1817
|
-
function F(){}
|
|
1818
|
-
return !(Array.of.call(F) instanceof F);
|
|
1819
|
-
}), 'Array', {
|
|
1726
|
+
var $def = _dereq_(15);
|
|
1727
|
+
$def($def.S, 'Array', {
|
|
1820
1728
|
// 22.1.2.3 Array.of( ...items)
|
|
1821
1729
|
of: function of(/* ...args */){
|
|
1822
1730
|
var index = 0
|
|
1823
|
-
,
|
|
1824
|
-
,
|
|
1825
|
-
|
|
1826
|
-
|
|
1827
|
-
result.length = $$len;
|
|
1731
|
+
, length = arguments.length
|
|
1732
|
+
, result = new (typeof this == 'function' ? this : Array)(length);
|
|
1733
|
+
while(length > index)result[index] = arguments[index++];
|
|
1734
|
+
result.length = length;
|
|
1828
1735
|
return result;
|
|
1829
1736
|
}
|
|
1830
1737
|
});
|
|
1831
|
-
},{"
|
|
1832
|
-
_dereq_(
|
|
1833
|
-
},{"
|
|
1738
|
+
},{"15":15}],86:[function(_dereq_,module,exports){
|
|
1739
|
+
_dereq_(59)(Array);
|
|
1740
|
+
},{"59":59}],87:[function(_dereq_,module,exports){
|
|
1834
1741
|
'use strict';
|
|
1835
|
-
var $ = _dereq_(
|
|
1836
|
-
, isObject = _dereq_(
|
|
1837
|
-
, HAS_INSTANCE = _dereq_(
|
|
1742
|
+
var $ = _dereq_(41)
|
|
1743
|
+
, isObject = _dereq_(33)
|
|
1744
|
+
, HAS_INSTANCE = _dereq_(76)('hasInstance')
|
|
1838
1745
|
, FunctionProto = Function.prototype;
|
|
1839
1746
|
// 19.2.3.6 Function.prototype[@@hasInstance](V)
|
|
1840
1747
|
if(!(HAS_INSTANCE in FunctionProto))$.setDesc(FunctionProto, HAS_INSTANCE, {value: function(O){
|
|
@@ -1844,15 +1751,15 @@ if(!(HAS_INSTANCE in FunctionProto))$.setDesc(FunctionProto, HAS_INSTANCE, {valu
|
|
|
1844
1751
|
while(O = $.getProto(O))if(this.prototype === O)return true;
|
|
1845
1752
|
return false;
|
|
1846
1753
|
}});
|
|
1847
|
-
},{"
|
|
1848
|
-
var setDesc = _dereq_(
|
|
1849
|
-
, createDesc = _dereq_(
|
|
1850
|
-
, has = _dereq_(
|
|
1754
|
+
},{"33":33,"41":41,"76":76}],88:[function(_dereq_,module,exports){
|
|
1755
|
+
var setDesc = _dereq_(41).setDesc
|
|
1756
|
+
, createDesc = _dereq_(52)
|
|
1757
|
+
, has = _dereq_(26)
|
|
1851
1758
|
, FProto = Function.prototype
|
|
1852
1759
|
, nameRE = /^\s*function ([^ (]*)/
|
|
1853
1760
|
, NAME = 'name';
|
|
1854
1761
|
// 19.2.4.2 name
|
|
1855
|
-
NAME in FProto || _dereq_(
|
|
1762
|
+
NAME in FProto || _dereq_(66) && setDesc(FProto, NAME, {
|
|
1856
1763
|
configurable: true,
|
|
1857
1764
|
get: function(){
|
|
1858
1765
|
var match = ('' + this).match(nameRE)
|
|
@@ -1861,13 +1768,13 @@ NAME in FProto || _dereq_(71) && setDesc(FProto, NAME, {
|
|
|
1861
1768
|
return name;
|
|
1862
1769
|
}
|
|
1863
1770
|
});
|
|
1864
|
-
},{"
|
|
1771
|
+
},{"26":26,"41":41,"52":52,"66":66}],89:[function(_dereq_,module,exports){
|
|
1865
1772
|
'use strict';
|
|
1866
|
-
var strong = _dereq_(
|
|
1773
|
+
var strong = _dereq_(9);
|
|
1867
1774
|
|
|
1868
1775
|
// 23.1 Map Objects
|
|
1869
|
-
_dereq_(
|
|
1870
|
-
return function Map(){ return get(this, arguments
|
|
1776
|
+
_dereq_(12)('Map', function(get){
|
|
1777
|
+
return function Map(){ return get(this, arguments[0]); };
|
|
1871
1778
|
}, {
|
|
1872
1779
|
// 23.1.3.6 Map.prototype.get(key)
|
|
1873
1780
|
get: function get(key){
|
|
@@ -1879,14 +1786,14 @@ _dereq_(14)('Map', function(get){
|
|
|
1879
1786
|
return strong.def(this, key === 0 ? 0 : key, value);
|
|
1880
1787
|
}
|
|
1881
1788
|
}, strong, true);
|
|
1882
|
-
},{"
|
|
1789
|
+
},{"12":12,"9":9}],90:[function(_dereq_,module,exports){
|
|
1883
1790
|
// 20.2.2.3 Math.acosh(x)
|
|
1884
|
-
var $def = _dereq_(
|
|
1885
|
-
, log1p = _dereq_(
|
|
1791
|
+
var $def = _dereq_(15)
|
|
1792
|
+
, log1p = _dereq_(44)
|
|
1886
1793
|
, sqrt = Math.sqrt
|
|
1887
1794
|
, $acosh = Math.acosh;
|
|
1888
1795
|
|
|
1889
|
-
// V8 bug https://code.google.com/p/v8/issues/detail?id=3509
|
|
1796
|
+
// V8 bug https://code.google.com/p/v8/issues/detail?id=3509
|
|
1890
1797
|
$def($def.S + $def.F * !($acosh && Math.floor($acosh(Number.MAX_VALUE)) == 710), 'Math', {
|
|
1891
1798
|
acosh: function acosh(x){
|
|
1892
1799
|
return (x = +x) < 1 ? NaN : x > 94906265.62425156
|
|
@@ -1894,46 +1801,46 @@ $def($def.S + $def.F * !($acosh && Math.floor($acosh(Number.MAX_VALUE)) == 710),
|
|
|
1894
1801
|
: log1p(x - 1 + sqrt(x - 1) * sqrt(x + 1));
|
|
1895
1802
|
}
|
|
1896
1803
|
});
|
|
1897
|
-
},{"
|
|
1804
|
+
},{"15":15,"44":44}],91:[function(_dereq_,module,exports){
|
|
1898
1805
|
// 20.2.2.5 Math.asinh(x)
|
|
1899
|
-
var $def = _dereq_(
|
|
1806
|
+
var $def = _dereq_(15);
|
|
1900
1807
|
|
|
1901
1808
|
function asinh(x){
|
|
1902
1809
|
return !isFinite(x = +x) || x == 0 ? x : x < 0 ? -asinh(-x) : Math.log(x + Math.sqrt(x * x + 1));
|
|
1903
1810
|
}
|
|
1904
1811
|
|
|
1905
1812
|
$def($def.S, 'Math', {asinh: asinh});
|
|
1906
|
-
},{"
|
|
1813
|
+
},{"15":15}],92:[function(_dereq_,module,exports){
|
|
1907
1814
|
// 20.2.2.7 Math.atanh(x)
|
|
1908
|
-
var $def = _dereq_(
|
|
1815
|
+
var $def = _dereq_(15);
|
|
1909
1816
|
|
|
1910
1817
|
$def($def.S, 'Math', {
|
|
1911
1818
|
atanh: function atanh(x){
|
|
1912
1819
|
return (x = +x) == 0 ? x : Math.log((1 + x) / (1 - x)) / 2;
|
|
1913
1820
|
}
|
|
1914
1821
|
});
|
|
1915
|
-
},{"
|
|
1822
|
+
},{"15":15}],93:[function(_dereq_,module,exports){
|
|
1916
1823
|
// 20.2.2.9 Math.cbrt(x)
|
|
1917
|
-
var $def = _dereq_(
|
|
1918
|
-
, sign = _dereq_(
|
|
1824
|
+
var $def = _dereq_(15)
|
|
1825
|
+
, sign = _dereq_(58);
|
|
1919
1826
|
|
|
1920
1827
|
$def($def.S, 'Math', {
|
|
1921
1828
|
cbrt: function cbrt(x){
|
|
1922
1829
|
return sign(x = +x) * Math.pow(Math.abs(x), 1 / 3);
|
|
1923
1830
|
}
|
|
1924
1831
|
});
|
|
1925
|
-
},{"
|
|
1832
|
+
},{"15":15,"58":58}],94:[function(_dereq_,module,exports){
|
|
1926
1833
|
// 20.2.2.11 Math.clz32(x)
|
|
1927
|
-
var $def = _dereq_(
|
|
1834
|
+
var $def = _dereq_(15);
|
|
1928
1835
|
|
|
1929
1836
|
$def($def.S, 'Math', {
|
|
1930
1837
|
clz32: function clz32(x){
|
|
1931
1838
|
return (x >>>= 0) ? 31 - Math.floor(Math.log(x + 0.5) * Math.LOG2E) : 32;
|
|
1932
1839
|
}
|
|
1933
1840
|
});
|
|
1934
|
-
},{"
|
|
1841
|
+
},{"15":15}],95:[function(_dereq_,module,exports){
|
|
1935
1842
|
// 20.2.2.12 Math.cosh(x)
|
|
1936
|
-
var $def = _dereq_(
|
|
1843
|
+
var $def = _dereq_(15)
|
|
1937
1844
|
, exp = Math.exp;
|
|
1938
1845
|
|
|
1939
1846
|
$def($def.S, 'Math', {
|
|
@@ -1941,15 +1848,15 @@ $def($def.S, 'Math', {
|
|
|
1941
1848
|
return (exp(x = +x) + exp(-x)) / 2;
|
|
1942
1849
|
}
|
|
1943
1850
|
});
|
|
1944
|
-
},{"
|
|
1851
|
+
},{"15":15}],96:[function(_dereq_,module,exports){
|
|
1945
1852
|
// 20.2.2.14 Math.expm1(x)
|
|
1946
|
-
var $def = _dereq_(
|
|
1853
|
+
var $def = _dereq_(15);
|
|
1947
1854
|
|
|
1948
|
-
$def($def.S, 'Math', {expm1: _dereq_(
|
|
1949
|
-
},{"
|
|
1855
|
+
$def($def.S, 'Math', {expm1: _dereq_(19)});
|
|
1856
|
+
},{"15":15,"19":19}],97:[function(_dereq_,module,exports){
|
|
1950
1857
|
// 20.2.2.16 Math.fround(x)
|
|
1951
|
-
var $def = _dereq_(
|
|
1952
|
-
, sign = _dereq_(
|
|
1858
|
+
var $def = _dereq_(15)
|
|
1859
|
+
, sign = _dereq_(58)
|
|
1953
1860
|
, pow = Math.pow
|
|
1954
1861
|
, EPSILON = pow(2, -52)
|
|
1955
1862
|
, EPSILON32 = pow(2, -23)
|
|
@@ -1973,21 +1880,20 @@ $def($def.S, 'Math', {
|
|
|
1973
1880
|
return $sign * result;
|
|
1974
1881
|
}
|
|
1975
1882
|
});
|
|
1976
|
-
},{"
|
|
1883
|
+
},{"15":15,"58":58}],98:[function(_dereq_,module,exports){
|
|
1977
1884
|
// 20.2.2.17 Math.hypot([value1[, value2[, … ]]])
|
|
1978
|
-
var $def = _dereq_(
|
|
1885
|
+
var $def = _dereq_(15)
|
|
1979
1886
|
, abs = Math.abs;
|
|
1980
1887
|
|
|
1981
1888
|
$def($def.S, 'Math', {
|
|
1982
1889
|
hypot: function hypot(value1, value2){ // eslint-disable-line no-unused-vars
|
|
1983
|
-
var sum
|
|
1984
|
-
, i
|
|
1985
|
-
,
|
|
1986
|
-
,
|
|
1987
|
-
, larg = 0
|
|
1890
|
+
var sum = 0
|
|
1891
|
+
, i = 0
|
|
1892
|
+
, len = arguments.length
|
|
1893
|
+
, larg = 0
|
|
1988
1894
|
, arg, div;
|
|
1989
|
-
while(i <
|
|
1990
|
-
arg = abs(
|
|
1895
|
+
while(i < len){
|
|
1896
|
+
arg = abs(arguments[i++]);
|
|
1991
1897
|
if(larg < arg){
|
|
1992
1898
|
div = larg / arg;
|
|
1993
1899
|
sum = sum * div * div + 1;
|
|
@@ -2000,14 +1906,13 @@ $def($def.S, 'Math', {
|
|
|
2000
1906
|
return larg === Infinity ? Infinity : larg * Math.sqrt(sum);
|
|
2001
1907
|
}
|
|
2002
1908
|
});
|
|
2003
|
-
},{"
|
|
1909
|
+
},{"15":15}],99:[function(_dereq_,module,exports){
|
|
2004
1910
|
// 20.2.2.18 Math.imul(x, y)
|
|
2005
|
-
var $def
|
|
2006
|
-
, $imul = Math.imul;
|
|
1911
|
+
var $def = _dereq_(15);
|
|
2007
1912
|
|
|
2008
|
-
//
|
|
2009
|
-
$def($def.S + $def.F * _dereq_(
|
|
2010
|
-
return
|
|
1913
|
+
// WebKit fails with big numbers
|
|
1914
|
+
$def($def.S + $def.F * _dereq_(20)(function(){
|
|
1915
|
+
return Math.imul(0xffffffff, 5) != -5;
|
|
2011
1916
|
}), 'Math', {
|
|
2012
1917
|
imul: function imul(x, y){
|
|
2013
1918
|
var UINT16 = 0xffff
|
|
@@ -2018,54 +1923,51 @@ $def($def.S + $def.F * _dereq_(23)(function(){
|
|
|
2018
1923
|
return 0 | xl * yl + ((UINT16 & xn >>> 16) * yl + xl * (UINT16 & yn >>> 16) << 16 >>> 0);
|
|
2019
1924
|
}
|
|
2020
1925
|
});
|
|
2021
|
-
},{"
|
|
1926
|
+
},{"15":15,"20":20}],100:[function(_dereq_,module,exports){
|
|
2022
1927
|
// 20.2.2.21 Math.log10(x)
|
|
2023
|
-
var $def = _dereq_(
|
|
1928
|
+
var $def = _dereq_(15);
|
|
2024
1929
|
|
|
2025
1930
|
$def($def.S, 'Math', {
|
|
2026
1931
|
log10: function log10(x){
|
|
2027
1932
|
return Math.log(x) / Math.LN10;
|
|
2028
1933
|
}
|
|
2029
1934
|
});
|
|
2030
|
-
},{"
|
|
1935
|
+
},{"15":15}],101:[function(_dereq_,module,exports){
|
|
2031
1936
|
// 20.2.2.20 Math.log1p(x)
|
|
2032
|
-
var $def = _dereq_(
|
|
1937
|
+
var $def = _dereq_(15);
|
|
2033
1938
|
|
|
2034
|
-
$def($def.S, 'Math', {log1p: _dereq_(
|
|
2035
|
-
},{"
|
|
1939
|
+
$def($def.S, 'Math', {log1p: _dereq_(44)});
|
|
1940
|
+
},{"15":15,"44":44}],102:[function(_dereq_,module,exports){
|
|
2036
1941
|
// 20.2.2.22 Math.log2(x)
|
|
2037
|
-
var $def = _dereq_(
|
|
1942
|
+
var $def = _dereq_(15);
|
|
2038
1943
|
|
|
2039
1944
|
$def($def.S, 'Math', {
|
|
2040
1945
|
log2: function log2(x){
|
|
2041
1946
|
return Math.log(x) / Math.LN2;
|
|
2042
1947
|
}
|
|
2043
1948
|
});
|
|
2044
|
-
},{"
|
|
1949
|
+
},{"15":15}],103:[function(_dereq_,module,exports){
|
|
2045
1950
|
// 20.2.2.28 Math.sign(x)
|
|
2046
|
-
var $def = _dereq_(
|
|
1951
|
+
var $def = _dereq_(15);
|
|
2047
1952
|
|
|
2048
|
-
$def($def.S, 'Math', {sign: _dereq_(
|
|
2049
|
-
},{"
|
|
1953
|
+
$def($def.S, 'Math', {sign: _dereq_(58)});
|
|
1954
|
+
},{"15":15,"58":58}],104:[function(_dereq_,module,exports){
|
|
2050
1955
|
// 20.2.2.30 Math.sinh(x)
|
|
2051
|
-
var $def = _dereq_(
|
|
2052
|
-
, expm1 = _dereq_(
|
|
1956
|
+
var $def = _dereq_(15)
|
|
1957
|
+
, expm1 = _dereq_(19)
|
|
2053
1958
|
, exp = Math.exp;
|
|
2054
1959
|
|
|
2055
|
-
|
|
2056
|
-
$def($def.S + $def.F * _dereq_(23)(function(){
|
|
2057
|
-
return !Math.sinh(-2e-17) != -2e-17;
|
|
2058
|
-
}), 'Math', {
|
|
1960
|
+
$def($def.S, 'Math', {
|
|
2059
1961
|
sinh: function sinh(x){
|
|
2060
1962
|
return Math.abs(x = +x) < 1
|
|
2061
1963
|
? (expm1(x) - expm1(-x)) / 2
|
|
2062
1964
|
: (exp(x - 1) - exp(-x - 1)) * (Math.E / 2);
|
|
2063
1965
|
}
|
|
2064
1966
|
});
|
|
2065
|
-
},{"
|
|
1967
|
+
},{"15":15,"19":19}],105:[function(_dereq_,module,exports){
|
|
2066
1968
|
// 20.2.2.33 Math.tanh(x)
|
|
2067
|
-
var $def = _dereq_(
|
|
2068
|
-
, expm1 = _dereq_(
|
|
1969
|
+
var $def = _dereq_(15)
|
|
1970
|
+
, expm1 = _dereq_(19)
|
|
2069
1971
|
, exp = Math.exp;
|
|
2070
1972
|
|
|
2071
1973
|
$def($def.S, 'Math', {
|
|
@@ -2075,23 +1977,23 @@ $def($def.S, 'Math', {
|
|
|
2075
1977
|
return a == Infinity ? 1 : b == Infinity ? -1 : (a - b) / (exp(x) + exp(-x));
|
|
2076
1978
|
}
|
|
2077
1979
|
});
|
|
2078
|
-
},{"
|
|
1980
|
+
},{"15":15,"19":19}],106:[function(_dereq_,module,exports){
|
|
2079
1981
|
// 20.2.2.34 Math.trunc(x)
|
|
2080
|
-
var $def = _dereq_(
|
|
1982
|
+
var $def = _dereq_(15);
|
|
2081
1983
|
|
|
2082
1984
|
$def($def.S, 'Math', {
|
|
2083
1985
|
trunc: function trunc(it){
|
|
2084
1986
|
return (it > 0 ? Math.floor : Math.ceil)(it);
|
|
2085
1987
|
}
|
|
2086
1988
|
});
|
|
2087
|
-
},{"
|
|
1989
|
+
},{"15":15}],107:[function(_dereq_,module,exports){
|
|
2088
1990
|
'use strict';
|
|
2089
|
-
var $ = _dereq_(
|
|
2090
|
-
, global = _dereq_(
|
|
2091
|
-
, has = _dereq_(
|
|
2092
|
-
, cof = _dereq_(
|
|
2093
|
-
, isObject = _dereq_(
|
|
2094
|
-
, fails = _dereq_(
|
|
1991
|
+
var $ = _dereq_(41)
|
|
1992
|
+
, global = _dereq_(25)
|
|
1993
|
+
, has = _dereq_(26)
|
|
1994
|
+
, cof = _dereq_(8)
|
|
1995
|
+
, isObject = _dereq_(33)
|
|
1996
|
+
, fails = _dereq_(20)
|
|
2095
1997
|
, NUMBER = 'Number'
|
|
2096
1998
|
, $Number = global[NUMBER]
|
|
2097
1999
|
, Base = $Number
|
|
@@ -2122,54 +2024,55 @@ if(!($Number('0o1') && $Number('0b1'))){
|
|
|
2122
2024
|
&& (BROKEN_COF ? fails(function(){ proto.valueOf.call(that); }) : cof(that) != NUMBER)
|
|
2123
2025
|
? new Base(toNumber(it)) : toNumber(it);
|
|
2124
2026
|
};
|
|
2125
|
-
$.each.call(_dereq_(
|
|
2126
|
-
|
|
2127
|
-
|
|
2128
|
-
|
|
2129
|
-
|
|
2130
|
-
|
|
2131
|
-
|
|
2132
|
-
|
|
2133
|
-
|
|
2027
|
+
$.each.call(_dereq_(66) ? $.getNames(Base) : (
|
|
2028
|
+
// ES3:
|
|
2029
|
+
'MAX_VALUE,MIN_VALUE,NaN,NEGATIVE_INFINITY,POSITIVE_INFINITY,' +
|
|
2030
|
+
// ES6 (in case, if modules with ES6 Number statics required before):
|
|
2031
|
+
'EPSILON,isFinite,isInteger,isNaN,isSafeInteger,MAX_SAFE_INTEGER,' +
|
|
2032
|
+
'MIN_SAFE_INTEGER,parseFloat,parseInt,isInteger'
|
|
2033
|
+
).split(','), function(key){
|
|
2034
|
+
if(has(Base, key) && !has($Number, key)){
|
|
2035
|
+
$.setDesc($Number, key, $.getDesc(Base, key));
|
|
2036
|
+
}
|
|
2134
2037
|
}
|
|
2135
|
-
|
|
2038
|
+
);
|
|
2136
2039
|
$Number.prototype = proto;
|
|
2137
2040
|
proto.constructor = $Number;
|
|
2138
|
-
_dereq_(
|
|
2041
|
+
_dereq_(53)(global, NUMBER, $Number);
|
|
2139
2042
|
}
|
|
2140
|
-
},{"
|
|
2043
|
+
},{"20":20,"25":25,"26":26,"33":33,"41":41,"53":53,"66":66,"8":8}],108:[function(_dereq_,module,exports){
|
|
2141
2044
|
// 20.1.2.1 Number.EPSILON
|
|
2142
|
-
var $def = _dereq_(
|
|
2045
|
+
var $def = _dereq_(15);
|
|
2143
2046
|
|
|
2144
2047
|
$def($def.S, 'Number', {EPSILON: Math.pow(2, -52)});
|
|
2145
|
-
},{"
|
|
2048
|
+
},{"15":15}],109:[function(_dereq_,module,exports){
|
|
2146
2049
|
// 20.1.2.2 Number.isFinite(number)
|
|
2147
|
-
var $def = _dereq_(
|
|
2148
|
-
, _isFinite = _dereq_(
|
|
2050
|
+
var $def = _dereq_(15)
|
|
2051
|
+
, _isFinite = _dereq_(25).isFinite;
|
|
2149
2052
|
|
|
2150
2053
|
$def($def.S, 'Number', {
|
|
2151
2054
|
isFinite: function isFinite(it){
|
|
2152
2055
|
return typeof it == 'number' && _isFinite(it);
|
|
2153
2056
|
}
|
|
2154
2057
|
});
|
|
2155
|
-
},{"
|
|
2058
|
+
},{"15":15,"25":25}],110:[function(_dereq_,module,exports){
|
|
2156
2059
|
// 20.1.2.3 Number.isInteger(number)
|
|
2157
|
-
var $def = _dereq_(
|
|
2060
|
+
var $def = _dereq_(15);
|
|
2158
2061
|
|
|
2159
|
-
$def($def.S, 'Number', {isInteger: _dereq_(
|
|
2160
|
-
},{"
|
|
2062
|
+
$def($def.S, 'Number', {isInteger: _dereq_(32)});
|
|
2063
|
+
},{"15":15,"32":32}],111:[function(_dereq_,module,exports){
|
|
2161
2064
|
// 20.1.2.4 Number.isNaN(number)
|
|
2162
|
-
var $def = _dereq_(
|
|
2065
|
+
var $def = _dereq_(15);
|
|
2163
2066
|
|
|
2164
2067
|
$def($def.S, 'Number', {
|
|
2165
2068
|
isNaN: function isNaN(number){
|
|
2166
2069
|
return number != number;
|
|
2167
2070
|
}
|
|
2168
2071
|
});
|
|
2169
|
-
},{"
|
|
2072
|
+
},{"15":15}],112:[function(_dereq_,module,exports){
|
|
2170
2073
|
// 20.1.2.5 Number.isSafeInteger(number)
|
|
2171
|
-
var $def = _dereq_(
|
|
2172
|
-
, isInteger = _dereq_(
|
|
2074
|
+
var $def = _dereq_(15)
|
|
2075
|
+
, isInteger = _dereq_(32)
|
|
2173
2076
|
, abs = Math.abs;
|
|
2174
2077
|
|
|
2175
2078
|
$def($def.S, 'Number', {
|
|
@@ -2177,158 +2080,156 @@ $def($def.S, 'Number', {
|
|
|
2177
2080
|
return isInteger(number) && abs(number) <= 0x1fffffffffffff;
|
|
2178
2081
|
}
|
|
2179
2082
|
});
|
|
2180
|
-
},{"
|
|
2083
|
+
},{"15":15,"32":32}],113:[function(_dereq_,module,exports){
|
|
2181
2084
|
// 20.1.2.6 Number.MAX_SAFE_INTEGER
|
|
2182
|
-
var $def = _dereq_(
|
|
2085
|
+
var $def = _dereq_(15);
|
|
2183
2086
|
|
|
2184
2087
|
$def($def.S, 'Number', {MAX_SAFE_INTEGER: 0x1fffffffffffff});
|
|
2185
|
-
},{"
|
|
2088
|
+
},{"15":15}],114:[function(_dereq_,module,exports){
|
|
2186
2089
|
// 20.1.2.10 Number.MIN_SAFE_INTEGER
|
|
2187
|
-
var $def = _dereq_(
|
|
2090
|
+
var $def = _dereq_(15);
|
|
2188
2091
|
|
|
2189
2092
|
$def($def.S, 'Number', {MIN_SAFE_INTEGER: -0x1fffffffffffff});
|
|
2190
|
-
},{"
|
|
2093
|
+
},{"15":15}],115:[function(_dereq_,module,exports){
|
|
2191
2094
|
// 20.1.2.12 Number.parseFloat(string)
|
|
2192
|
-
var $def = _dereq_(
|
|
2095
|
+
var $def = _dereq_(15);
|
|
2193
2096
|
|
|
2194
2097
|
$def($def.S, 'Number', {parseFloat: parseFloat});
|
|
2195
|
-
},{"
|
|
2098
|
+
},{"15":15}],116:[function(_dereq_,module,exports){
|
|
2196
2099
|
// 20.1.2.13 Number.parseInt(string, radix)
|
|
2197
|
-
var $def = _dereq_(
|
|
2100
|
+
var $def = _dereq_(15);
|
|
2198
2101
|
|
|
2199
2102
|
$def($def.S, 'Number', {parseInt: parseInt});
|
|
2200
|
-
},{"
|
|
2103
|
+
},{"15":15}],117:[function(_dereq_,module,exports){
|
|
2201
2104
|
// 19.1.3.1 Object.assign(target, source)
|
|
2202
|
-
var $def = _dereq_(
|
|
2203
|
-
|
|
2204
|
-
|
|
2205
|
-
},{"17":17,"8":8}],123:[function(_dereq_,module,exports){
|
|
2105
|
+
var $def = _dereq_(15);
|
|
2106
|
+
$def($def.S, 'Object', {assign: _dereq_(6)});
|
|
2107
|
+
},{"15":15,"6":6}],118:[function(_dereq_,module,exports){
|
|
2206
2108
|
// 19.1.2.5 Object.freeze(O)
|
|
2207
|
-
var isObject = _dereq_(
|
|
2109
|
+
var isObject = _dereq_(33);
|
|
2208
2110
|
|
|
2209
|
-
_dereq_(
|
|
2111
|
+
_dereq_(47)('freeze', function($freeze){
|
|
2210
2112
|
return function freeze(it){
|
|
2211
2113
|
return $freeze && isObject(it) ? $freeze(it) : it;
|
|
2212
2114
|
};
|
|
2213
2115
|
});
|
|
2214
|
-
},{"
|
|
2116
|
+
},{"33":33,"47":47}],119:[function(_dereq_,module,exports){
|
|
2215
2117
|
// 19.1.2.6 Object.getOwnPropertyDescriptor(O, P)
|
|
2216
|
-
var toIObject = _dereq_(
|
|
2118
|
+
var toIObject = _dereq_(71);
|
|
2217
2119
|
|
|
2218
|
-
_dereq_(
|
|
2120
|
+
_dereq_(47)('getOwnPropertyDescriptor', function($getOwnPropertyDescriptor){
|
|
2219
2121
|
return function getOwnPropertyDescriptor(it, key){
|
|
2220
2122
|
return $getOwnPropertyDescriptor(toIObject(it), key);
|
|
2221
2123
|
};
|
|
2222
2124
|
});
|
|
2223
|
-
},{"
|
|
2125
|
+
},{"47":47,"71":71}],120:[function(_dereq_,module,exports){
|
|
2224
2126
|
// 19.1.2.7 Object.getOwnPropertyNames(O)
|
|
2225
|
-
_dereq_(
|
|
2226
|
-
return _dereq_(
|
|
2127
|
+
_dereq_(47)('getOwnPropertyNames', function(){
|
|
2128
|
+
return _dereq_(24).get;
|
|
2227
2129
|
});
|
|
2228
|
-
},{"
|
|
2130
|
+
},{"24":24,"47":47}],121:[function(_dereq_,module,exports){
|
|
2229
2131
|
// 19.1.2.9 Object.getPrototypeOf(O)
|
|
2230
|
-
var toObject = _dereq_(
|
|
2132
|
+
var toObject = _dereq_(73);
|
|
2231
2133
|
|
|
2232
|
-
_dereq_(
|
|
2134
|
+
_dereq_(47)('getPrototypeOf', function($getPrototypeOf){
|
|
2233
2135
|
return function getPrototypeOf(it){
|
|
2234
2136
|
return $getPrototypeOf(toObject(it));
|
|
2235
2137
|
};
|
|
2236
2138
|
});
|
|
2237
|
-
},{"
|
|
2139
|
+
},{"47":47,"73":73}],122:[function(_dereq_,module,exports){
|
|
2238
2140
|
// 19.1.2.11 Object.isExtensible(O)
|
|
2239
|
-
var isObject = _dereq_(
|
|
2141
|
+
var isObject = _dereq_(33);
|
|
2240
2142
|
|
|
2241
|
-
_dereq_(
|
|
2143
|
+
_dereq_(47)('isExtensible', function($isExtensible){
|
|
2242
2144
|
return function isExtensible(it){
|
|
2243
2145
|
return isObject(it) ? $isExtensible ? $isExtensible(it) : true : false;
|
|
2244
2146
|
};
|
|
2245
2147
|
});
|
|
2246
|
-
},{"
|
|
2148
|
+
},{"33":33,"47":47}],123:[function(_dereq_,module,exports){
|
|
2247
2149
|
// 19.1.2.12 Object.isFrozen(O)
|
|
2248
|
-
var isObject = _dereq_(
|
|
2150
|
+
var isObject = _dereq_(33);
|
|
2249
2151
|
|
|
2250
|
-
_dereq_(
|
|
2152
|
+
_dereq_(47)('isFrozen', function($isFrozen){
|
|
2251
2153
|
return function isFrozen(it){
|
|
2252
2154
|
return isObject(it) ? $isFrozen ? $isFrozen(it) : false : true;
|
|
2253
2155
|
};
|
|
2254
2156
|
});
|
|
2255
|
-
},{"
|
|
2157
|
+
},{"33":33,"47":47}],124:[function(_dereq_,module,exports){
|
|
2256
2158
|
// 19.1.2.13 Object.isSealed(O)
|
|
2257
|
-
var isObject = _dereq_(
|
|
2159
|
+
var isObject = _dereq_(33);
|
|
2258
2160
|
|
|
2259
|
-
_dereq_(
|
|
2161
|
+
_dereq_(47)('isSealed', function($isSealed){
|
|
2260
2162
|
return function isSealed(it){
|
|
2261
2163
|
return isObject(it) ? $isSealed ? $isSealed(it) : false : true;
|
|
2262
2164
|
};
|
|
2263
2165
|
});
|
|
2264
|
-
},{"
|
|
2166
|
+
},{"33":33,"47":47}],125:[function(_dereq_,module,exports){
|
|
2265
2167
|
// 19.1.3.10 Object.is(value1, value2)
|
|
2266
|
-
var $def = _dereq_(
|
|
2168
|
+
var $def = _dereq_(15);
|
|
2267
2169
|
$def($def.S, 'Object', {
|
|
2268
|
-
is: _dereq_(
|
|
2170
|
+
is: _dereq_(55)
|
|
2269
2171
|
});
|
|
2270
|
-
},{"
|
|
2172
|
+
},{"15":15,"55":55}],126:[function(_dereq_,module,exports){
|
|
2271
2173
|
// 19.1.2.14 Object.keys(O)
|
|
2272
|
-
var toObject = _dereq_(
|
|
2174
|
+
var toObject = _dereq_(73);
|
|
2273
2175
|
|
|
2274
|
-
_dereq_(
|
|
2176
|
+
_dereq_(47)('keys', function($keys){
|
|
2275
2177
|
return function keys(it){
|
|
2276
2178
|
return $keys(toObject(it));
|
|
2277
2179
|
};
|
|
2278
2180
|
});
|
|
2279
|
-
},{"
|
|
2181
|
+
},{"47":47,"73":73}],127:[function(_dereq_,module,exports){
|
|
2280
2182
|
// 19.1.2.15 Object.preventExtensions(O)
|
|
2281
|
-
var isObject = _dereq_(
|
|
2183
|
+
var isObject = _dereq_(33);
|
|
2282
2184
|
|
|
2283
|
-
_dereq_(
|
|
2185
|
+
_dereq_(47)('preventExtensions', function($preventExtensions){
|
|
2284
2186
|
return function preventExtensions(it){
|
|
2285
2187
|
return $preventExtensions && isObject(it) ? $preventExtensions(it) : it;
|
|
2286
2188
|
};
|
|
2287
2189
|
});
|
|
2288
|
-
},{"
|
|
2190
|
+
},{"33":33,"47":47}],128:[function(_dereq_,module,exports){
|
|
2289
2191
|
// 19.1.2.17 Object.seal(O)
|
|
2290
|
-
var isObject = _dereq_(
|
|
2192
|
+
var isObject = _dereq_(33);
|
|
2291
2193
|
|
|
2292
|
-
_dereq_(
|
|
2194
|
+
_dereq_(47)('seal', function($seal){
|
|
2293
2195
|
return function seal(it){
|
|
2294
2196
|
return $seal && isObject(it) ? $seal(it) : it;
|
|
2295
2197
|
};
|
|
2296
2198
|
});
|
|
2297
|
-
},{"
|
|
2199
|
+
},{"33":33,"47":47}],129:[function(_dereq_,module,exports){
|
|
2298
2200
|
// 19.1.3.19 Object.setPrototypeOf(O, proto)
|
|
2299
|
-
var $def = _dereq_(
|
|
2300
|
-
$def($def.S, 'Object', {setPrototypeOf: _dereq_(
|
|
2301
|
-
},{"
|
|
2201
|
+
var $def = _dereq_(15);
|
|
2202
|
+
$def($def.S, 'Object', {setPrototypeOf: _dereq_(56).set});
|
|
2203
|
+
},{"15":15,"56":56}],130:[function(_dereq_,module,exports){
|
|
2302
2204
|
'use strict';
|
|
2303
2205
|
// 19.1.3.6 Object.prototype.toString()
|
|
2304
|
-
var classof = _dereq_(
|
|
2206
|
+
var classof = _dereq_(7)
|
|
2305
2207
|
, test = {};
|
|
2306
|
-
test[_dereq_(
|
|
2208
|
+
test[_dereq_(76)('toStringTag')] = 'z';
|
|
2307
2209
|
if(test + '' != '[object z]'){
|
|
2308
|
-
_dereq_(
|
|
2210
|
+
_dereq_(53)(Object.prototype, 'toString', function toString(){
|
|
2309
2211
|
return '[object ' + classof(this) + ']';
|
|
2310
2212
|
}, true);
|
|
2311
2213
|
}
|
|
2312
|
-
},{"
|
|
2214
|
+
},{"53":53,"7":7,"76":76}],131:[function(_dereq_,module,exports){
|
|
2313
2215
|
'use strict';
|
|
2314
|
-
var $ = _dereq_(
|
|
2315
|
-
, LIBRARY = _dereq_(
|
|
2316
|
-
, global = _dereq_(
|
|
2317
|
-
, ctx = _dereq_(
|
|
2318
|
-
, classof = _dereq_(
|
|
2319
|
-
, $def = _dereq_(
|
|
2320
|
-
, isObject = _dereq_(
|
|
2216
|
+
var $ = _dereq_(41)
|
|
2217
|
+
, LIBRARY = _dereq_(43)
|
|
2218
|
+
, global = _dereq_(25)
|
|
2219
|
+
, ctx = _dereq_(14)
|
|
2220
|
+
, classof = _dereq_(7)
|
|
2221
|
+
, $def = _dereq_(15)
|
|
2222
|
+
, isObject = _dereq_(33)
|
|
2321
2223
|
, anObject = _dereq_(3)
|
|
2322
2224
|
, aFunction = _dereq_(2)
|
|
2323
|
-
, strictNew = _dereq_(
|
|
2324
|
-
, forOf = _dereq_(
|
|
2325
|
-
, setProto = _dereq_(
|
|
2326
|
-
, same = _dereq_(
|
|
2327
|
-
, species = _dereq_(
|
|
2328
|
-
, SPECIES = _dereq_(
|
|
2329
|
-
,
|
|
2330
|
-
,
|
|
2331
|
-
, asap = _dereq_(49)
|
|
2225
|
+
, strictNew = _dereq_(60)
|
|
2226
|
+
, forOf = _dereq_(23)
|
|
2227
|
+
, setProto = _dereq_(56).set
|
|
2228
|
+
, same = _dereq_(55)
|
|
2229
|
+
, species = _dereq_(59)
|
|
2230
|
+
, SPECIES = _dereq_(76)('species')
|
|
2231
|
+
, RECORD = _dereq_(74)('record')
|
|
2232
|
+
, asap = _dereq_(45)
|
|
2332
2233
|
, PROMISE = 'Promise'
|
|
2333
2234
|
, process = global.process
|
|
2334
2235
|
, isNode = classof(process) == 'process'
|
|
@@ -2357,7 +2258,7 @@ var useNative = function(){
|
|
|
2357
2258
|
works = false;
|
|
2358
2259
|
}
|
|
2359
2260
|
// actual V8 bug, https://code.google.com/p/v8/issues/detail?id=4162
|
|
2360
|
-
if(works && _dereq_(
|
|
2261
|
+
if(works && _dereq_(66)){
|
|
2361
2262
|
var thenableThenGotten = false;
|
|
2362
2263
|
P.resolve($.setDesc({}, 'then', {
|
|
2363
2264
|
get: function(){ thenableThenGotten = true; }
|
|
@@ -2414,17 +2315,16 @@ var notify = function(record, isReject){
|
|
|
2414
2315
|
chain.length = 0;
|
|
2415
2316
|
record.n = false;
|
|
2416
2317
|
if(isReject)setTimeout(function(){
|
|
2417
|
-
|
|
2418
|
-
|
|
2419
|
-
|
|
2420
|
-
|
|
2421
|
-
|
|
2422
|
-
|
|
2423
|
-
|
|
2424
|
-
} else if((console = global.console) && console.error){
|
|
2425
|
-
console.error('Unhandled promise rejection', value);
|
|
2318
|
+
asap(function(){
|
|
2319
|
+
if(isUnhandled(record.p)){
|
|
2320
|
+
if(isNode){
|
|
2321
|
+
process.emit('unhandledRejection', value, record.p);
|
|
2322
|
+
} else if(global.console && console.error){
|
|
2323
|
+
console.error('Unhandled promise rejection', value);
|
|
2324
|
+
}
|
|
2426
2325
|
}
|
|
2427
|
-
|
|
2326
|
+
record.a = undefined;
|
|
2327
|
+
});
|
|
2428
2328
|
}, 1);
|
|
2429
2329
|
});
|
|
2430
2330
|
};
|
|
@@ -2497,19 +2397,18 @@ if(!useNative){
|
|
|
2497
2397
|
$reject.call(record, err);
|
|
2498
2398
|
}
|
|
2499
2399
|
};
|
|
2500
|
-
_dereq_(
|
|
2400
|
+
_dereq_(46)(P.prototype, {
|
|
2501
2401
|
// 25.4.5.3 Promise.prototype.then(onFulfilled, onRejected)
|
|
2502
2402
|
then: function then(onFulfilled, onRejected){
|
|
2403
|
+
var S = anObject(anObject(this).constructor)[SPECIES];
|
|
2503
2404
|
var react = {
|
|
2504
2405
|
ok: typeof onFulfilled == 'function' ? onFulfilled : true,
|
|
2505
2406
|
fail: typeof onRejected == 'function' ? onRejected : false
|
|
2506
2407
|
};
|
|
2507
|
-
var promise = react.P = new (
|
|
2508
|
-
react.res = res;
|
|
2509
|
-
react.rej = rej;
|
|
2408
|
+
var promise = react.P = new (S != undefined ? S : P)(function(res, rej){
|
|
2409
|
+
react.res = aFunction(res);
|
|
2410
|
+
react.rej = aFunction(rej);
|
|
2510
2411
|
});
|
|
2511
|
-
aFunction(react.res);
|
|
2512
|
-
aFunction(react.rej);
|
|
2513
2412
|
var record = this[RECORD];
|
|
2514
2413
|
record.c.push(react);
|
|
2515
2414
|
if(record.a)record.a.push(react);
|
|
@@ -2525,9 +2424,9 @@ if(!useNative){
|
|
|
2525
2424
|
|
|
2526
2425
|
// export
|
|
2527
2426
|
$def($def.G + $def.W + $def.F * !useNative, {Promise: P});
|
|
2528
|
-
_dereq_(
|
|
2427
|
+
_dereq_(67)(P, PROMISE);
|
|
2529
2428
|
species(P);
|
|
2530
|
-
species(Wrapper = _dereq_(
|
|
2429
|
+
species(Wrapper = _dereq_(13)[PROMISE]);
|
|
2531
2430
|
|
|
2532
2431
|
// statics
|
|
2533
2432
|
$def($def.S + $def.F * !useNative, PROMISE, {
|
|
@@ -2543,7 +2442,7 @@ $def($def.S + $def.F * (!useNative || testResolve(true)), PROMISE, {
|
|
|
2543
2442
|
? x : new this(function(res){ res(x); });
|
|
2544
2443
|
}
|
|
2545
2444
|
});
|
|
2546
|
-
$def($def.S + $def.F * !(useNative && _dereq_(
|
|
2445
|
+
$def($def.S + $def.F * !(useNative && _dereq_(38)(function(iter){
|
|
2547
2446
|
P.all(iter)['catch'](function(){});
|
|
2548
2447
|
})), PROMISE, {
|
|
2549
2448
|
// 25.4.4.1 Promise.all(iterable)
|
|
@@ -2573,9 +2472,9 @@ $def($def.S + $def.F * !(useNative && _dereq_(42)(function(iter){
|
|
|
2573
2472
|
});
|
|
2574
2473
|
}
|
|
2575
2474
|
});
|
|
2576
|
-
},{"
|
|
2475
|
+
},{"13":13,"14":14,"15":15,"2":2,"23":23,"25":25,"3":3,"33":33,"38":38,"41":41,"43":43,"45":45,"46":46,"55":55,"56":56,"59":59,"60":60,"66":66,"67":67,"7":7,"74":74,"76":76}],132:[function(_dereq_,module,exports){
|
|
2577
2476
|
// 26.1.1 Reflect.apply(target, thisArgument, argumentsList)
|
|
2578
|
-
var $def = _dereq_(
|
|
2477
|
+
var $def = _dereq_(15)
|
|
2579
2478
|
, _apply = Function.apply;
|
|
2580
2479
|
|
|
2581
2480
|
$def($def.S, 'Reflect', {
|
|
@@ -2583,26 +2482,20 @@ $def($def.S, 'Reflect', {
|
|
|
2583
2482
|
return _apply.call(target, thisArgument, argumentsList);
|
|
2584
2483
|
}
|
|
2585
2484
|
});
|
|
2586
|
-
},{"
|
|
2485
|
+
},{"15":15}],133:[function(_dereq_,module,exports){
|
|
2587
2486
|
// 26.1.2 Reflect.construct(target, argumentsList [, newTarget])
|
|
2588
|
-
var $ = _dereq_(
|
|
2589
|
-
, $def = _dereq_(
|
|
2487
|
+
var $ = _dereq_(41)
|
|
2488
|
+
, $def = _dereq_(15)
|
|
2590
2489
|
, aFunction = _dereq_(2)
|
|
2591
2490
|
, anObject = _dereq_(3)
|
|
2592
|
-
, isObject = _dereq_(
|
|
2593
|
-
, bind = Function.bind || _dereq_(
|
|
2594
|
-
|
|
2595
|
-
|
|
2596
|
-
// FF Nightly sets third argument as `new.target`, but does not create `this` from it
|
|
2597
|
-
$def($def.S + $def.F * _dereq_(23)(function(){
|
|
2598
|
-
function F(){}
|
|
2599
|
-
return !(Reflect.construct(function(){}, [], F) instanceof F);
|
|
2600
|
-
}), 'Reflect', {
|
|
2491
|
+
, isObject = _dereq_(33)
|
|
2492
|
+
, bind = Function.bind || _dereq_(13).Function.prototype.bind;
|
|
2493
|
+
|
|
2494
|
+
$def($def.S, 'Reflect', {
|
|
2601
2495
|
construct: function construct(Target, args /*, newTarget*/){
|
|
2602
2496
|
aFunction(Target);
|
|
2603
|
-
|
|
2604
|
-
|
|
2605
|
-
// w/o altered newTarget, optimization for 0-4 arguments
|
|
2497
|
+
if(arguments.length < 3){
|
|
2498
|
+
// w/o newTarget, optimization for 0-4 arguments
|
|
2606
2499
|
if(args != undefined)switch(anObject(args).length){
|
|
2607
2500
|
case 0: return new Target;
|
|
2608
2501
|
case 1: return new Target(args[0]);
|
|
@@ -2610,26 +2503,26 @@ $def($def.S + $def.F * _dereq_(23)(function(){
|
|
|
2610
2503
|
case 3: return new Target(args[0], args[1], args[2]);
|
|
2611
2504
|
case 4: return new Target(args[0], args[1], args[2], args[3]);
|
|
2612
2505
|
}
|
|
2613
|
-
// w/o
|
|
2506
|
+
// w/o newTarget, lot of arguments case
|
|
2614
2507
|
var $args = [null];
|
|
2615
2508
|
$args.push.apply($args, args);
|
|
2616
2509
|
return new (bind.apply(Target, $args));
|
|
2617
2510
|
}
|
|
2618
|
-
// with
|
|
2619
|
-
var proto =
|
|
2511
|
+
// with newTarget, not support built-in constructors
|
|
2512
|
+
var proto = aFunction(arguments[2]).prototype
|
|
2620
2513
|
, instance = $.create(isObject(proto) ? proto : Object.prototype)
|
|
2621
2514
|
, result = Function.apply.call(Target, instance, args);
|
|
2622
2515
|
return isObject(result) ? result : instance;
|
|
2623
2516
|
}
|
|
2624
2517
|
});
|
|
2625
|
-
},{"
|
|
2518
|
+
},{"13":13,"15":15,"2":2,"3":3,"33":33,"41":41}],134:[function(_dereq_,module,exports){
|
|
2626
2519
|
// 26.1.3 Reflect.defineProperty(target, propertyKey, attributes)
|
|
2627
|
-
var $ = _dereq_(
|
|
2628
|
-
, $def = _dereq_(
|
|
2520
|
+
var $ = _dereq_(41)
|
|
2521
|
+
, $def = _dereq_(15)
|
|
2629
2522
|
, anObject = _dereq_(3);
|
|
2630
2523
|
|
|
2631
2524
|
// MS Edge has broken Reflect.defineProperty - throwing instead of returning false
|
|
2632
|
-
$def($def.S + $def.F * _dereq_(
|
|
2525
|
+
$def($def.S + $def.F * _dereq_(20)(function(){
|
|
2633
2526
|
Reflect.defineProperty($.setDesc({}, 1, {value: 1}), 1, {value: 2});
|
|
2634
2527
|
}), 'Reflect', {
|
|
2635
2528
|
defineProperty: function defineProperty(target, propertyKey, attributes){
|
|
@@ -2642,10 +2535,10 @@ $def($def.S + $def.F * _dereq_(23)(function(){
|
|
|
2642
2535
|
}
|
|
2643
2536
|
}
|
|
2644
2537
|
});
|
|
2645
|
-
},{"
|
|
2538
|
+
},{"15":15,"20":20,"3":3,"41":41}],135:[function(_dereq_,module,exports){
|
|
2646
2539
|
// 26.1.4 Reflect.deleteProperty(target, propertyKey)
|
|
2647
|
-
var $def = _dereq_(
|
|
2648
|
-
, getDesc = _dereq_(
|
|
2540
|
+
var $def = _dereq_(15)
|
|
2541
|
+
, getDesc = _dereq_(41).getDesc
|
|
2649
2542
|
, anObject = _dereq_(3);
|
|
2650
2543
|
|
|
2651
2544
|
$def($def.S, 'Reflect', {
|
|
@@ -2654,10 +2547,10 @@ $def($def.S, 'Reflect', {
|
|
|
2654
2547
|
return desc && !desc.configurable ? false : delete target[propertyKey];
|
|
2655
2548
|
}
|
|
2656
2549
|
});
|
|
2657
|
-
},{"
|
|
2550
|
+
},{"15":15,"3":3,"41":41}],136:[function(_dereq_,module,exports){
|
|
2658
2551
|
'use strict';
|
|
2659
2552
|
// 26.1.5 Reflect.enumerate(target)
|
|
2660
|
-
var $def = _dereq_(
|
|
2553
|
+
var $def = _dereq_(15)
|
|
2661
2554
|
, anObject = _dereq_(3);
|
|
2662
2555
|
var Enumerate = function(iterated){
|
|
2663
2556
|
this._t = anObject(iterated); // target
|
|
@@ -2666,7 +2559,7 @@ var Enumerate = function(iterated){
|
|
|
2666
2559
|
, key;
|
|
2667
2560
|
for(key in iterated)keys.push(key);
|
|
2668
2561
|
};
|
|
2669
|
-
_dereq_(
|
|
2562
|
+
_dereq_(36)(Enumerate, 'Object', function(){
|
|
2670
2563
|
var that = this
|
|
2671
2564
|
, keys = that._k
|
|
2672
2565
|
, key;
|
|
@@ -2681,10 +2574,10 @@ $def($def.S, 'Reflect', {
|
|
|
2681
2574
|
return new Enumerate(target);
|
|
2682
2575
|
}
|
|
2683
2576
|
});
|
|
2684
|
-
},{"
|
|
2577
|
+
},{"15":15,"3":3,"36":36}],137:[function(_dereq_,module,exports){
|
|
2685
2578
|
// 26.1.7 Reflect.getOwnPropertyDescriptor(target, propertyKey)
|
|
2686
|
-
var $ = _dereq_(
|
|
2687
|
-
, $def = _dereq_(
|
|
2579
|
+
var $ = _dereq_(41)
|
|
2580
|
+
, $def = _dereq_(15)
|
|
2688
2581
|
, anObject = _dereq_(3);
|
|
2689
2582
|
|
|
2690
2583
|
$def($def.S, 'Reflect', {
|
|
@@ -2692,10 +2585,10 @@ $def($def.S, 'Reflect', {
|
|
|
2692
2585
|
return $.getDesc(anObject(target), propertyKey);
|
|
2693
2586
|
}
|
|
2694
2587
|
});
|
|
2695
|
-
},{"
|
|
2588
|
+
},{"15":15,"3":3,"41":41}],138:[function(_dereq_,module,exports){
|
|
2696
2589
|
// 26.1.8 Reflect.getPrototypeOf(target)
|
|
2697
|
-
var $def = _dereq_(
|
|
2698
|
-
, getProto = _dereq_(
|
|
2590
|
+
var $def = _dereq_(15)
|
|
2591
|
+
, getProto = _dereq_(41).getProto
|
|
2699
2592
|
, anObject = _dereq_(3);
|
|
2700
2593
|
|
|
2701
2594
|
$def($def.S, 'Reflect', {
|
|
@@ -2703,12 +2596,12 @@ $def($def.S, 'Reflect', {
|
|
|
2703
2596
|
return getProto(anObject(target));
|
|
2704
2597
|
}
|
|
2705
2598
|
});
|
|
2706
|
-
},{"
|
|
2599
|
+
},{"15":15,"3":3,"41":41}],139:[function(_dereq_,module,exports){
|
|
2707
2600
|
// 26.1.6 Reflect.get(target, propertyKey [, receiver])
|
|
2708
|
-
var $ = _dereq_(
|
|
2709
|
-
, has = _dereq_(
|
|
2710
|
-
, $def = _dereq_(
|
|
2711
|
-
, isObject = _dereq_(
|
|
2601
|
+
var $ = _dereq_(41)
|
|
2602
|
+
, has = _dereq_(26)
|
|
2603
|
+
, $def = _dereq_(15)
|
|
2604
|
+
, isObject = _dereq_(33)
|
|
2712
2605
|
, anObject = _dereq_(3);
|
|
2713
2606
|
|
|
2714
2607
|
function get(target, propertyKey/*, receiver*/){
|
|
@@ -2724,18 +2617,18 @@ function get(target, propertyKey/*, receiver*/){
|
|
|
2724
2617
|
}
|
|
2725
2618
|
|
|
2726
2619
|
$def($def.S, 'Reflect', {get: get});
|
|
2727
|
-
},{"
|
|
2620
|
+
},{"15":15,"26":26,"3":3,"33":33,"41":41}],140:[function(_dereq_,module,exports){
|
|
2728
2621
|
// 26.1.9 Reflect.has(target, propertyKey)
|
|
2729
|
-
var $def = _dereq_(
|
|
2622
|
+
var $def = _dereq_(15);
|
|
2730
2623
|
|
|
2731
2624
|
$def($def.S, 'Reflect', {
|
|
2732
2625
|
has: function has(target, propertyKey){
|
|
2733
2626
|
return propertyKey in target;
|
|
2734
2627
|
}
|
|
2735
2628
|
});
|
|
2736
|
-
},{"
|
|
2629
|
+
},{"15":15}],141:[function(_dereq_,module,exports){
|
|
2737
2630
|
// 26.1.10 Reflect.isExtensible(target)
|
|
2738
|
-
var $def = _dereq_(
|
|
2631
|
+
var $def = _dereq_(15)
|
|
2739
2632
|
, anObject = _dereq_(3)
|
|
2740
2633
|
, $isExtensible = Object.isExtensible;
|
|
2741
2634
|
|
|
@@ -2745,14 +2638,14 @@ $def($def.S, 'Reflect', {
|
|
|
2745
2638
|
return $isExtensible ? $isExtensible(target) : true;
|
|
2746
2639
|
}
|
|
2747
2640
|
});
|
|
2748
|
-
},{"
|
|
2641
|
+
},{"15":15,"3":3}],142:[function(_dereq_,module,exports){
|
|
2749
2642
|
// 26.1.11 Reflect.ownKeys(target)
|
|
2750
|
-
var $def = _dereq_(
|
|
2643
|
+
var $def = _dereq_(15);
|
|
2751
2644
|
|
|
2752
|
-
$def($def.S, 'Reflect', {ownKeys: _dereq_(
|
|
2753
|
-
},{"
|
|
2645
|
+
$def($def.S, 'Reflect', {ownKeys: _dereq_(49)});
|
|
2646
|
+
},{"15":15,"49":49}],143:[function(_dereq_,module,exports){
|
|
2754
2647
|
// 26.1.12 Reflect.preventExtensions(target)
|
|
2755
|
-
var $def = _dereq_(
|
|
2648
|
+
var $def = _dereq_(15)
|
|
2756
2649
|
, anObject = _dereq_(3)
|
|
2757
2650
|
, $preventExtensions = Object.preventExtensions;
|
|
2758
2651
|
|
|
@@ -2767,10 +2660,10 @@ $def($def.S, 'Reflect', {
|
|
|
2767
2660
|
}
|
|
2768
2661
|
}
|
|
2769
2662
|
});
|
|
2770
|
-
},{"
|
|
2663
|
+
},{"15":15,"3":3}],144:[function(_dereq_,module,exports){
|
|
2771
2664
|
// 26.1.14 Reflect.setPrototypeOf(target, proto)
|
|
2772
|
-
var $def = _dereq_(
|
|
2773
|
-
, setProto = _dereq_(
|
|
2665
|
+
var $def = _dereq_(15)
|
|
2666
|
+
, setProto = _dereq_(56);
|
|
2774
2667
|
|
|
2775
2668
|
if(setProto)$def($def.S, 'Reflect', {
|
|
2776
2669
|
setPrototypeOf: function setPrototypeOf(target, proto){
|
|
@@ -2783,14 +2676,14 @@ if(setProto)$def($def.S, 'Reflect', {
|
|
|
2783
2676
|
}
|
|
2784
2677
|
}
|
|
2785
2678
|
});
|
|
2786
|
-
},{"
|
|
2679
|
+
},{"15":15,"56":56}],145:[function(_dereq_,module,exports){
|
|
2787
2680
|
// 26.1.13 Reflect.set(target, propertyKey, V [, receiver])
|
|
2788
|
-
var $ = _dereq_(
|
|
2789
|
-
, has = _dereq_(
|
|
2790
|
-
, $def = _dereq_(
|
|
2791
|
-
, createDesc = _dereq_(
|
|
2681
|
+
var $ = _dereq_(41)
|
|
2682
|
+
, has = _dereq_(26)
|
|
2683
|
+
, $def = _dereq_(15)
|
|
2684
|
+
, createDesc = _dereq_(52)
|
|
2792
2685
|
, anObject = _dereq_(3)
|
|
2793
|
-
, isObject = _dereq_(
|
|
2686
|
+
, isObject = _dereq_(33);
|
|
2794
2687
|
|
|
2795
2688
|
function set(target, propertyKey, V/*, receiver*/){
|
|
2796
2689
|
var receiver = arguments.length < 4 ? target : arguments[3]
|
|
@@ -2813,55 +2706,59 @@ function set(target, propertyKey, V/*, receiver*/){
|
|
|
2813
2706
|
}
|
|
2814
2707
|
|
|
2815
2708
|
$def($def.S, 'Reflect', {set: set});
|
|
2816
|
-
},{"
|
|
2817
|
-
var $
|
|
2818
|
-
, global
|
|
2819
|
-
,
|
|
2820
|
-
, $flags
|
|
2821
|
-
, $RegExp
|
|
2822
|
-
, Base
|
|
2823
|
-
, proto
|
|
2824
|
-
,
|
|
2825
|
-
|
|
2826
|
-
|
|
2827
|
-
|
|
2828
|
-
|
|
2829
|
-
|
|
2830
|
-
|
|
2831
|
-
|
|
2832
|
-
|
|
2833
|
-
|
|
2834
|
-
|
|
2835
|
-
|
|
2836
|
-
|
|
2837
|
-
|
|
2838
|
-
|
|
2839
|
-
|
|
2840
|
-
|
|
2841
|
-
|
|
2842
|
-
|
|
2843
|
-
|
|
2844
|
-
|
|
2845
|
-
|
|
2846
|
-
|
|
2709
|
+
},{"15":15,"26":26,"3":3,"33":33,"41":41,"52":52}],146:[function(_dereq_,module,exports){
|
|
2710
|
+
var $ = _dereq_(41)
|
|
2711
|
+
, global = _dereq_(25)
|
|
2712
|
+
, cof = _dereq_(8)
|
|
2713
|
+
, $flags = _dereq_(22)
|
|
2714
|
+
, $RegExp = global.RegExp
|
|
2715
|
+
, Base = $RegExp
|
|
2716
|
+
, proto = $RegExp.prototype
|
|
2717
|
+
, re = /a/g
|
|
2718
|
+
// "new" creates a new object
|
|
2719
|
+
, CORRECT_NEW = new $RegExp(re) !== re
|
|
2720
|
+
// RegExp allows a regex with flags as the pattern
|
|
2721
|
+
, ALLOWS_RE_WITH_FLAGS = function(){
|
|
2722
|
+
try {
|
|
2723
|
+
return $RegExp(re, 'i') == '/a/i';
|
|
2724
|
+
} catch(e){ /* empty */ }
|
|
2725
|
+
}();
|
|
2726
|
+
|
|
2727
|
+
if(_dereq_(66)){
|
|
2728
|
+
if(!CORRECT_NEW || !ALLOWS_RE_WITH_FLAGS){
|
|
2729
|
+
$RegExp = function RegExp(pattern, flags){
|
|
2730
|
+
var patternIsRegExp = cof(pattern) == 'RegExp'
|
|
2731
|
+
, flagsIsUndefined = flags === undefined;
|
|
2732
|
+
if(!(this instanceof $RegExp) && patternIsRegExp && flagsIsUndefined)return pattern;
|
|
2733
|
+
return CORRECT_NEW
|
|
2734
|
+
? new Base(patternIsRegExp && !flagsIsUndefined ? pattern.source : pattern, flags)
|
|
2735
|
+
: new Base(patternIsRegExp ? pattern.source : pattern
|
|
2736
|
+
, patternIsRegExp && flagsIsUndefined ? $flags.call(pattern) : flags);
|
|
2737
|
+
};
|
|
2738
|
+
$.each.call($.getNames(Base), function(key){
|
|
2739
|
+
key in $RegExp || $.setDesc($RegExp, key, {
|
|
2740
|
+
configurable: true,
|
|
2741
|
+
get: function(){ return Base[key]; },
|
|
2742
|
+
set: function(it){ Base[key] = it; }
|
|
2743
|
+
});
|
|
2847
2744
|
});
|
|
2848
|
-
|
|
2849
|
-
|
|
2850
|
-
|
|
2851
|
-
|
|
2745
|
+
proto.constructor = $RegExp;
|
|
2746
|
+
$RegExp.prototype = proto;
|
|
2747
|
+
_dereq_(53)(global, 'RegExp', $RegExp);
|
|
2748
|
+
}
|
|
2852
2749
|
}
|
|
2853
2750
|
|
|
2854
|
-
_dereq_(
|
|
2855
|
-
},{"
|
|
2751
|
+
_dereq_(59)($RegExp);
|
|
2752
|
+
},{"22":22,"25":25,"41":41,"53":53,"59":59,"66":66,"8":8}],147:[function(_dereq_,module,exports){
|
|
2856
2753
|
// 21.2.5.3 get RegExp.prototype.flags()
|
|
2857
|
-
var $ = _dereq_(
|
|
2858
|
-
if(_dereq_(
|
|
2754
|
+
var $ = _dereq_(41);
|
|
2755
|
+
if(_dereq_(66) && /./g.flags != 'g')$.setDesc(RegExp.prototype, 'flags', {
|
|
2859
2756
|
configurable: true,
|
|
2860
|
-
get: _dereq_(
|
|
2757
|
+
get: _dereq_(22)
|
|
2861
2758
|
});
|
|
2862
|
-
},{"
|
|
2759
|
+
},{"22":22,"41":41,"66":66}],148:[function(_dereq_,module,exports){
|
|
2863
2760
|
// @@match logic
|
|
2864
|
-
_dereq_(
|
|
2761
|
+
_dereq_(21)('match', 1, function(defined, MATCH){
|
|
2865
2762
|
// 21.1.3.11 String.prototype.match(regexp)
|
|
2866
2763
|
return function match(regexp){
|
|
2867
2764
|
'use strict';
|
|
@@ -2870,9 +2767,9 @@ _dereq_(24)('match', 1, function(defined, MATCH){
|
|
|
2870
2767
|
return fn !== undefined ? fn.call(regexp, O) : new RegExp(regexp)[MATCH](String(O));
|
|
2871
2768
|
};
|
|
2872
2769
|
});
|
|
2873
|
-
},{"
|
|
2770
|
+
},{"21":21}],149:[function(_dereq_,module,exports){
|
|
2874
2771
|
// @@replace logic
|
|
2875
|
-
_dereq_(
|
|
2772
|
+
_dereq_(21)('replace', 2, function(defined, REPLACE, $replace){
|
|
2876
2773
|
// 21.1.3.14 String.prototype.replace(searchValue, replaceValue)
|
|
2877
2774
|
return function replace(searchValue, replaceValue){
|
|
2878
2775
|
'use strict';
|
|
@@ -2883,9 +2780,9 @@ _dereq_(24)('replace', 2, function(defined, REPLACE, $replace){
|
|
|
2883
2780
|
: $replace.call(String(O), searchValue, replaceValue);
|
|
2884
2781
|
};
|
|
2885
2782
|
});
|
|
2886
|
-
},{"
|
|
2783
|
+
},{"21":21}],150:[function(_dereq_,module,exports){
|
|
2887
2784
|
// @@search logic
|
|
2888
|
-
_dereq_(
|
|
2785
|
+
_dereq_(21)('search', 1, function(defined, SEARCH){
|
|
2889
2786
|
// 21.1.3.15 String.prototype.search(regexp)
|
|
2890
2787
|
return function search(regexp){
|
|
2891
2788
|
'use strict';
|
|
@@ -2894,9 +2791,9 @@ _dereq_(24)('search', 1, function(defined, SEARCH){
|
|
|
2894
2791
|
return fn !== undefined ? fn.call(regexp, O) : new RegExp(regexp)[SEARCH](String(O));
|
|
2895
2792
|
};
|
|
2896
2793
|
});
|
|
2897
|
-
},{"
|
|
2794
|
+
},{"21":21}],151:[function(_dereq_,module,exports){
|
|
2898
2795
|
// @@split logic
|
|
2899
|
-
_dereq_(
|
|
2796
|
+
_dereq_(21)('split', 2, function(defined, SPLIT, $split){
|
|
2900
2797
|
// 21.1.3.17 String.prototype.split(separator, limit)
|
|
2901
2798
|
return function split(separator, limit){
|
|
2902
2799
|
'use strict';
|
|
@@ -2907,54 +2804,50 @@ _dereq_(24)('split', 2, function(defined, SPLIT, $split){
|
|
|
2907
2804
|
: $split.call(String(O), separator, limit);
|
|
2908
2805
|
};
|
|
2909
2806
|
});
|
|
2910
|
-
},{"
|
|
2807
|
+
},{"21":21}],152:[function(_dereq_,module,exports){
|
|
2911
2808
|
'use strict';
|
|
2912
|
-
var strong = _dereq_(
|
|
2809
|
+
var strong = _dereq_(9);
|
|
2913
2810
|
|
|
2914
2811
|
// 23.2 Set Objects
|
|
2915
|
-
_dereq_(
|
|
2916
|
-
return function Set(){ return get(this, arguments
|
|
2812
|
+
_dereq_(12)('Set', function(get){
|
|
2813
|
+
return function Set(){ return get(this, arguments[0]); };
|
|
2917
2814
|
}, {
|
|
2918
2815
|
// 23.2.3.1 Set.prototype.add(value)
|
|
2919
2816
|
add: function add(value){
|
|
2920
2817
|
return strong.def(this, value = value === 0 ? 0 : value, value);
|
|
2921
2818
|
}
|
|
2922
2819
|
}, strong);
|
|
2923
|
-
},{"
|
|
2820
|
+
},{"12":12,"9":9}],153:[function(_dereq_,module,exports){
|
|
2924
2821
|
'use strict';
|
|
2925
|
-
var $def = _dereq_(
|
|
2926
|
-
, $at = _dereq_(
|
|
2822
|
+
var $def = _dereq_(15)
|
|
2823
|
+
, $at = _dereq_(61)(false);
|
|
2927
2824
|
$def($def.P, 'String', {
|
|
2928
2825
|
// 21.1.3.3 String.prototype.codePointAt(pos)
|
|
2929
2826
|
codePointAt: function codePointAt(pos){
|
|
2930
2827
|
return $at(this, pos);
|
|
2931
2828
|
}
|
|
2932
2829
|
});
|
|
2933
|
-
},{"
|
|
2934
|
-
// 21.1.3.6 String.prototype.endsWith(searchString [, endPosition])
|
|
2830
|
+
},{"15":15,"61":61}],154:[function(_dereq_,module,exports){
|
|
2935
2831
|
'use strict';
|
|
2936
|
-
var $def
|
|
2937
|
-
, toLength
|
|
2938
|
-
, context
|
|
2939
|
-
, ENDS_WITH = 'endsWith'
|
|
2940
|
-
, $endsWith = ''[ENDS_WITH];
|
|
2832
|
+
var $def = _dereq_(15)
|
|
2833
|
+
, toLength = _dereq_(72)
|
|
2834
|
+
, context = _dereq_(62);
|
|
2941
2835
|
|
|
2942
|
-
|
|
2836
|
+
// should throw error on regex
|
|
2837
|
+
$def($def.P + $def.F * !_dereq_(20)(function(){ 'q'.endsWith(/./); }), 'String', {
|
|
2838
|
+
// 21.1.3.6 String.prototype.endsWith(searchString [, endPosition])
|
|
2943
2839
|
endsWith: function endsWith(searchString /*, endPosition = @length */){
|
|
2944
|
-
var that = context(this, searchString,
|
|
2945
|
-
,
|
|
2946
|
-
, endPosition = $$.length > 1 ? $$[1] : undefined
|
|
2840
|
+
var that = context(this, searchString, 'endsWith')
|
|
2841
|
+
, endPosition = arguments[1]
|
|
2947
2842
|
, len = toLength(that.length)
|
|
2948
2843
|
, end = endPosition === undefined ? len : Math.min(toLength(endPosition), len)
|
|
2949
2844
|
, search = String(searchString);
|
|
2950
|
-
return
|
|
2951
|
-
? $endsWith.call(that, search, end)
|
|
2952
|
-
: that.slice(end - search.length, end) === search;
|
|
2845
|
+
return that.slice(end - search.length, end) === search;
|
|
2953
2846
|
}
|
|
2954
2847
|
});
|
|
2955
|
-
},{"
|
|
2956
|
-
var $def = _dereq_(
|
|
2957
|
-
, toIndex = _dereq_(
|
|
2848
|
+
},{"15":15,"20":20,"62":62,"72":72}],155:[function(_dereq_,module,exports){
|
|
2849
|
+
var $def = _dereq_(15)
|
|
2850
|
+
, toIndex = _dereq_(69)
|
|
2958
2851
|
, fromCharCode = String.fromCharCode
|
|
2959
2852
|
, $fromCodePoint = String.fromCodePoint;
|
|
2960
2853
|
|
|
@@ -2962,13 +2855,12 @@ var $def = _dereq_(17)
|
|
|
2962
2855
|
$def($def.S + $def.F * (!!$fromCodePoint && $fromCodePoint.length != 1), 'String', {
|
|
2963
2856
|
// 21.1.2.2 String.fromCodePoint(...codePoints)
|
|
2964
2857
|
fromCodePoint: function fromCodePoint(x){ // eslint-disable-line no-unused-vars
|
|
2965
|
-
var res
|
|
2966
|
-
,
|
|
2967
|
-
,
|
|
2968
|
-
, i = 0
|
|
2858
|
+
var res = []
|
|
2859
|
+
, len = arguments.length
|
|
2860
|
+
, i = 0
|
|
2969
2861
|
, code;
|
|
2970
|
-
while(
|
|
2971
|
-
code =
|
|
2862
|
+
while(len > i){
|
|
2863
|
+
code = +arguments[i++];
|
|
2972
2864
|
if(toIndex(code, 0x10ffff) !== code)throw RangeError(code + ' is not a valid code point');
|
|
2973
2865
|
res.push(code < 0x10000
|
|
2974
2866
|
? fromCharCode(code)
|
|
@@ -2977,24 +2869,23 @@ $def($def.S + $def.F * (!!$fromCodePoint && $fromCodePoint.length != 1), 'String
|
|
|
2977
2869
|
} return res.join('');
|
|
2978
2870
|
}
|
|
2979
2871
|
});
|
|
2980
|
-
},{"
|
|
2981
|
-
// 21.1.3.7 String.prototype.includes(searchString, position = 0)
|
|
2872
|
+
},{"15":15,"69":69}],156:[function(_dereq_,module,exports){
|
|
2982
2873
|
'use strict';
|
|
2983
|
-
var $def
|
|
2984
|
-
, context
|
|
2985
|
-
, INCLUDES = 'includes';
|
|
2874
|
+
var $def = _dereq_(15)
|
|
2875
|
+
, context = _dereq_(62);
|
|
2986
2876
|
|
|
2987
|
-
$def($def.P
|
|
2877
|
+
$def($def.P, 'String', {
|
|
2878
|
+
// 21.1.3.7 String.prototype.includes(searchString, position = 0)
|
|
2988
2879
|
includes: function includes(searchString /*, position = 0 */){
|
|
2989
|
-
return !!~context(this, searchString,
|
|
2880
|
+
return !!~context(this, searchString, 'includes').indexOf(searchString, arguments[1]);
|
|
2990
2881
|
}
|
|
2991
2882
|
});
|
|
2992
|
-
},{"
|
|
2883
|
+
},{"15":15,"62":62}],157:[function(_dereq_,module,exports){
|
|
2993
2884
|
'use strict';
|
|
2994
|
-
var $at = _dereq_(
|
|
2885
|
+
var $at = _dereq_(61)(true);
|
|
2995
2886
|
|
|
2996
2887
|
// 21.1.3.27 String.prototype[@@iterator]()
|
|
2997
|
-
_dereq_(
|
|
2888
|
+
_dereq_(37)(String, 'String', function(iterated){
|
|
2998
2889
|
this._t = String(iterated); // target
|
|
2999
2890
|
this._i = 0; // next index
|
|
3000
2891
|
// 21.1.5.2.1 %StringIteratorPrototype%.next()
|
|
@@ -3007,89 +2898,80 @@ _dereq_(41)(String, 'String', function(iterated){
|
|
|
3007
2898
|
this._i += point.length;
|
|
3008
2899
|
return {value: point, done: false};
|
|
3009
2900
|
});
|
|
3010
|
-
},{"
|
|
3011
|
-
var $def = _dereq_(
|
|
3012
|
-
, toIObject = _dereq_(
|
|
3013
|
-
, toLength = _dereq_(
|
|
2901
|
+
},{"37":37,"61":61}],158:[function(_dereq_,module,exports){
|
|
2902
|
+
var $def = _dereq_(15)
|
|
2903
|
+
, toIObject = _dereq_(71)
|
|
2904
|
+
, toLength = _dereq_(72);
|
|
3014
2905
|
|
|
3015
2906
|
$def($def.S, 'String', {
|
|
3016
2907
|
// 21.1.2.4 String.raw(callSite, ...substitutions)
|
|
3017
2908
|
raw: function raw(callSite){
|
|
3018
|
-
var tpl
|
|
3019
|
-
, len
|
|
3020
|
-
,
|
|
3021
|
-
,
|
|
3022
|
-
,
|
|
3023
|
-
, i = 0;
|
|
2909
|
+
var tpl = toIObject(callSite.raw)
|
|
2910
|
+
, len = toLength(tpl.length)
|
|
2911
|
+
, sln = arguments.length
|
|
2912
|
+
, res = []
|
|
2913
|
+
, i = 0;
|
|
3024
2914
|
while(len > i){
|
|
3025
2915
|
res.push(String(tpl[i++]));
|
|
3026
|
-
if(i <
|
|
2916
|
+
if(i < sln)res.push(String(arguments[i]));
|
|
3027
2917
|
} return res.join('');
|
|
3028
2918
|
}
|
|
3029
2919
|
});
|
|
3030
|
-
},{"
|
|
3031
|
-
var $def = _dereq_(
|
|
2920
|
+
},{"15":15,"71":71,"72":72}],159:[function(_dereq_,module,exports){
|
|
2921
|
+
var $def = _dereq_(15);
|
|
3032
2922
|
|
|
3033
2923
|
$def($def.P, 'String', {
|
|
3034
2924
|
// 21.1.3.13 String.prototype.repeat(count)
|
|
3035
|
-
repeat: _dereq_(
|
|
2925
|
+
repeat: _dereq_(64)
|
|
3036
2926
|
});
|
|
3037
|
-
},{"
|
|
3038
|
-
// 21.1.3.18 String.prototype.startsWith(searchString [, position ])
|
|
2927
|
+
},{"15":15,"64":64}],160:[function(_dereq_,module,exports){
|
|
3039
2928
|
'use strict';
|
|
3040
|
-
var $def
|
|
3041
|
-
, toLength
|
|
3042
|
-
, context
|
|
3043
|
-
, STARTS_WITH = 'startsWith'
|
|
3044
|
-
, $startsWith = ''[STARTS_WITH];
|
|
2929
|
+
var $def = _dereq_(15)
|
|
2930
|
+
, toLength = _dereq_(72)
|
|
2931
|
+
, context = _dereq_(62);
|
|
3045
2932
|
|
|
3046
|
-
|
|
2933
|
+
// should throw error on regex
|
|
2934
|
+
$def($def.P + $def.F * !_dereq_(20)(function(){ 'q'.startsWith(/./); }), 'String', {
|
|
2935
|
+
// 21.1.3.18 String.prototype.startsWith(searchString [, position ])
|
|
3047
2936
|
startsWith: function startsWith(searchString /*, position = 0 */){
|
|
3048
|
-
var that = context(this, searchString,
|
|
3049
|
-
,
|
|
3050
|
-
, index = toLength(Math.min($$.length > 1 ? $$[1] : undefined, that.length))
|
|
2937
|
+
var that = context(this, searchString, 'startsWith')
|
|
2938
|
+
, index = toLength(Math.min(arguments[1], that.length))
|
|
3051
2939
|
, search = String(searchString);
|
|
3052
|
-
return
|
|
3053
|
-
? $startsWith.call(that, search, index)
|
|
3054
|
-
: that.slice(index, index + search.length) === search;
|
|
2940
|
+
return that.slice(index, index + search.length) === search;
|
|
3055
2941
|
}
|
|
3056
2942
|
});
|
|
3057
|
-
},{"
|
|
2943
|
+
},{"15":15,"20":20,"62":62,"72":72}],161:[function(_dereq_,module,exports){
|
|
3058
2944
|
'use strict';
|
|
3059
2945
|
// 21.1.3.25 String.prototype.trim()
|
|
3060
|
-
_dereq_(
|
|
2946
|
+
_dereq_(65)('trim', function($trim){
|
|
3061
2947
|
return function trim(){
|
|
3062
2948
|
return $trim(this, 3);
|
|
3063
2949
|
};
|
|
3064
2950
|
});
|
|
3065
|
-
},{"
|
|
2951
|
+
},{"65":65}],162:[function(_dereq_,module,exports){
|
|
3066
2952
|
'use strict';
|
|
3067
2953
|
// ECMAScript 6 symbols shim
|
|
3068
|
-
var $ = _dereq_(
|
|
3069
|
-
, global = _dereq_(
|
|
3070
|
-
, has = _dereq_(
|
|
3071
|
-
, SUPPORT_DESC = _dereq_(
|
|
3072
|
-
, $def = _dereq_(
|
|
3073
|
-
, $redef = _dereq_(
|
|
3074
|
-
,
|
|
3075
|
-
,
|
|
3076
|
-
,
|
|
3077
|
-
,
|
|
3078
|
-
,
|
|
3079
|
-
,
|
|
3080
|
-
,
|
|
3081
|
-
, enumKeys = _dereq_(20)
|
|
3082
|
-
, isArray = _dereq_(35)
|
|
2954
|
+
var $ = _dereq_(41)
|
|
2955
|
+
, global = _dereq_(25)
|
|
2956
|
+
, has = _dereq_(26)
|
|
2957
|
+
, SUPPORT_DESC = _dereq_(66)
|
|
2958
|
+
, $def = _dereq_(15)
|
|
2959
|
+
, $redef = _dereq_(53)
|
|
2960
|
+
, shared = _dereq_(57)
|
|
2961
|
+
, setTag = _dereq_(67)
|
|
2962
|
+
, uid = _dereq_(74)
|
|
2963
|
+
, wks = _dereq_(76)
|
|
2964
|
+
, keyOf = _dereq_(42)
|
|
2965
|
+
, $names = _dereq_(24)
|
|
2966
|
+
, enumKeys = _dereq_(18)
|
|
3083
2967
|
, anObject = _dereq_(3)
|
|
3084
|
-
, toIObject = _dereq_(
|
|
3085
|
-
, createDesc = _dereq_(
|
|
2968
|
+
, toIObject = _dereq_(71)
|
|
2969
|
+
, createDesc = _dereq_(52)
|
|
3086
2970
|
, getDesc = $.getDesc
|
|
3087
2971
|
, setDesc = $.setDesc
|
|
3088
|
-
,
|
|
2972
|
+
, $create = $.create
|
|
3089
2973
|
, getNames = $names.get
|
|
3090
2974
|
, $Symbol = global.Symbol
|
|
3091
|
-
, $JSON = global.JSON
|
|
3092
|
-
, _stringify = $JSON && $JSON.stringify
|
|
3093
2975
|
, setter = false
|
|
3094
2976
|
, HIDDEN = wks('_hidden')
|
|
3095
2977
|
, isEnum = $.isEnum
|
|
@@ -3098,20 +2980,25 @@ var $ = _dereq_(45)
|
|
|
3098
2980
|
, useNative = typeof $Symbol == 'function'
|
|
3099
2981
|
, ObjectProto = Object.prototype;
|
|
3100
2982
|
|
|
3101
|
-
// fallback for old Android
|
|
3102
|
-
|
|
3103
|
-
|
|
3104
|
-
|
|
3105
|
-
|
|
3106
|
-
}
|
|
3107
|
-
|
|
3108
|
-
|
|
3109
|
-
|
|
3110
|
-
|
|
3111
|
-
|
|
2983
|
+
var setSymbolDesc = SUPPORT_DESC ? function(){ // fallback for old Android
|
|
2984
|
+
try {
|
|
2985
|
+
return $create(setDesc({}, HIDDEN, {
|
|
2986
|
+
get: function(){
|
|
2987
|
+
return setDesc(this, HIDDEN, {value: false})[HIDDEN];
|
|
2988
|
+
}
|
|
2989
|
+
}))[HIDDEN] || setDesc;
|
|
2990
|
+
} catch(e){
|
|
2991
|
+
return function(it, key, D){
|
|
2992
|
+
var protoDesc = getDesc(ObjectProto, key);
|
|
2993
|
+
if(protoDesc)delete ObjectProto[key];
|
|
2994
|
+
setDesc(it, key, D);
|
|
2995
|
+
if(protoDesc && it !== ObjectProto)setDesc(ObjectProto, key, protoDesc);
|
|
2996
|
+
};
|
|
2997
|
+
}
|
|
2998
|
+
}() : setDesc;
|
|
3112
2999
|
|
|
3113
3000
|
var wrap = function(tag){
|
|
3114
|
-
var sym = AllSymbols[tag] =
|
|
3001
|
+
var sym = AllSymbols[tag] = $create($Symbol.prototype);
|
|
3115
3002
|
sym._k = tag;
|
|
3116
3003
|
SUPPORT_DESC && setter && setSymbolDesc(ObjectProto, tag, {
|
|
3117
3004
|
configurable: true,
|
|
@@ -3123,106 +3010,76 @@ var wrap = function(tag){
|
|
|
3123
3010
|
return sym;
|
|
3124
3011
|
};
|
|
3125
3012
|
|
|
3126
|
-
|
|
3127
|
-
return typeof it == 'symbol';
|
|
3128
|
-
};
|
|
3129
|
-
|
|
3130
|
-
var $defineProperty = function defineProperty(it, key, D){
|
|
3013
|
+
function defineProperty(it, key, D){
|
|
3131
3014
|
if(D && has(AllSymbols, key)){
|
|
3132
3015
|
if(!D.enumerable){
|
|
3133
3016
|
if(!has(it, HIDDEN))setDesc(it, HIDDEN, createDesc(1, {}));
|
|
3134
3017
|
it[HIDDEN][key] = true;
|
|
3135
3018
|
} else {
|
|
3136
3019
|
if(has(it, HIDDEN) && it[HIDDEN][key])it[HIDDEN][key] = false;
|
|
3137
|
-
D =
|
|
3020
|
+
D = $create(D, {enumerable: createDesc(0, false)});
|
|
3138
3021
|
} return setSymbolDesc(it, key, D);
|
|
3139
3022
|
} return setDesc(it, key, D);
|
|
3140
|
-
}
|
|
3141
|
-
|
|
3023
|
+
}
|
|
3024
|
+
function defineProperties(it, P){
|
|
3142
3025
|
anObject(it);
|
|
3143
3026
|
var keys = enumKeys(P = toIObject(P))
|
|
3144
3027
|
, i = 0
|
|
3145
3028
|
, l = keys.length
|
|
3146
3029
|
, key;
|
|
3147
|
-
while(l > i)
|
|
3030
|
+
while(l > i)defineProperty(it, key = keys[i++], P[key]);
|
|
3148
3031
|
return it;
|
|
3149
|
-
}
|
|
3150
|
-
|
|
3151
|
-
return P === undefined ?
|
|
3152
|
-
}
|
|
3153
|
-
|
|
3032
|
+
}
|
|
3033
|
+
function create(it, P){
|
|
3034
|
+
return P === undefined ? $create(it) : defineProperties($create(it), P);
|
|
3035
|
+
}
|
|
3036
|
+
function propertyIsEnumerable(key){
|
|
3154
3037
|
var E = isEnum.call(this, key);
|
|
3155
3038
|
return E || !has(this, key) || !has(AllSymbols, key) || has(this, HIDDEN) && this[HIDDEN][key]
|
|
3156
3039
|
? E : true;
|
|
3157
|
-
}
|
|
3158
|
-
|
|
3040
|
+
}
|
|
3041
|
+
function getOwnPropertyDescriptor(it, key){
|
|
3159
3042
|
var D = getDesc(it = toIObject(it), key);
|
|
3160
3043
|
if(D && has(AllSymbols, key) && !(has(it, HIDDEN) && it[HIDDEN][key]))D.enumerable = true;
|
|
3161
3044
|
return D;
|
|
3162
|
-
}
|
|
3163
|
-
|
|
3045
|
+
}
|
|
3046
|
+
function getOwnPropertyNames(it){
|
|
3164
3047
|
var names = getNames(toIObject(it))
|
|
3165
3048
|
, result = []
|
|
3166
3049
|
, i = 0
|
|
3167
3050
|
, key;
|
|
3168
3051
|
while(names.length > i)if(!has(AllSymbols, key = names[i++]) && key != HIDDEN)result.push(key);
|
|
3169
3052
|
return result;
|
|
3170
|
-
}
|
|
3171
|
-
|
|
3053
|
+
}
|
|
3054
|
+
function getOwnPropertySymbols(it){
|
|
3172
3055
|
var names = getNames(toIObject(it))
|
|
3173
3056
|
, result = []
|
|
3174
3057
|
, i = 0
|
|
3175
3058
|
, key;
|
|
3176
3059
|
while(names.length > i)if(has(AllSymbols, key = names[i++]))result.push(AllSymbols[key]);
|
|
3177
3060
|
return result;
|
|
3178
|
-
}
|
|
3179
|
-
var $stringify = function stringify(it){
|
|
3180
|
-
var args = [it]
|
|
3181
|
-
, i = 1
|
|
3182
|
-
, $$ = arguments
|
|
3183
|
-
, replacer, $replacer;
|
|
3184
|
-
while($$.length > i)args.push($$[i++]);
|
|
3185
|
-
replacer = args[1];
|
|
3186
|
-
if(typeof replacer == 'function')$replacer = replacer;
|
|
3187
|
-
if($replacer || !isArray(replacer))replacer = function(key, value){
|
|
3188
|
-
if($replacer)value = $replacer.call(this, key, value);
|
|
3189
|
-
if(!isSymbol(value))return value;
|
|
3190
|
-
};
|
|
3191
|
-
args[1] = replacer;
|
|
3192
|
-
return _stringify.apply($JSON, args);
|
|
3193
|
-
};
|
|
3194
|
-
var buggyJSON = $fails(function(){
|
|
3195
|
-
var S = $Symbol();
|
|
3196
|
-
// MS Edge converts symbol values to JSON as {}
|
|
3197
|
-
// WebKit converts symbol values to JSON as null
|
|
3198
|
-
// V8 throws on boxed symbols
|
|
3199
|
-
return _stringify([S]) != '[null]' || _stringify({a: S}) != '{}' || _stringify(Object(S)) != '{}';
|
|
3200
|
-
});
|
|
3061
|
+
}
|
|
3201
3062
|
|
|
3202
3063
|
// 19.4.1.1 Symbol([description])
|
|
3203
3064
|
if(!useNative){
|
|
3204
3065
|
$Symbol = function Symbol(){
|
|
3205
|
-
if(
|
|
3206
|
-
return wrap(uid(arguments
|
|
3066
|
+
if(this instanceof $Symbol)throw TypeError('Symbol is not a constructor');
|
|
3067
|
+
return wrap(uid(arguments[0]));
|
|
3207
3068
|
};
|
|
3208
|
-
$redef($Symbol.prototype, 'toString', function
|
|
3069
|
+
$redef($Symbol.prototype, 'toString', function(){
|
|
3209
3070
|
return this._k;
|
|
3210
3071
|
});
|
|
3211
3072
|
|
|
3212
|
-
|
|
3213
|
-
|
|
3214
|
-
|
|
3215
|
-
|
|
3216
|
-
$.
|
|
3217
|
-
$.
|
|
3218
|
-
$.
|
|
3219
|
-
$.setDesc = $defineProperty;
|
|
3220
|
-
$.setDescs = $defineProperties;
|
|
3221
|
-
$.getNames = $names.get = $getOwnPropertyNames;
|
|
3222
|
-
$.getSymbols = $getOwnPropertySymbols;
|
|
3073
|
+
$.create = create;
|
|
3074
|
+
$.isEnum = propertyIsEnumerable;
|
|
3075
|
+
$.getDesc = getOwnPropertyDescriptor;
|
|
3076
|
+
$.setDesc = defineProperty;
|
|
3077
|
+
$.setDescs = defineProperties;
|
|
3078
|
+
$.getNames = $names.get = getOwnPropertyNames;
|
|
3079
|
+
$.getSymbols = getOwnPropertySymbols;
|
|
3223
3080
|
|
|
3224
|
-
if(SUPPORT_DESC && !_dereq_(
|
|
3225
|
-
$redef(ObjectProto, 'propertyIsEnumerable',
|
|
3081
|
+
if(SUPPORT_DESC && !_dereq_(43)){
|
|
3082
|
+
$redef(ObjectProto, 'propertyIsEnumerable', propertyIsEnumerable, true);
|
|
3226
3083
|
}
|
|
3227
3084
|
}
|
|
3228
3085
|
|
|
@@ -3252,12 +3109,13 @@ var symbolStatics = {
|
|
|
3252
3109
|
// 19.4.2.13 Symbol.toStringTag
|
|
3253
3110
|
// 19.4.2.14 Symbol.unscopables
|
|
3254
3111
|
$.each.call((
|
|
3255
|
-
|
|
3256
|
-
|
|
3257
|
-
).split(','), function(it){
|
|
3258
|
-
|
|
3259
|
-
|
|
3260
|
-
}
|
|
3112
|
+
'hasInstance,isConcatSpreadable,iterator,match,replace,search,' +
|
|
3113
|
+
'species,split,toPrimitive,toStringTag,unscopables'
|
|
3114
|
+
).split(','), function(it){
|
|
3115
|
+
var sym = wks(it);
|
|
3116
|
+
symbolStatics[it] = useNative ? sym : wrap(sym);
|
|
3117
|
+
}
|
|
3118
|
+
);
|
|
3261
3119
|
|
|
3262
3120
|
setter = true;
|
|
3263
3121
|
|
|
@@ -3267,42 +3125,39 @@ $def($def.S, 'Symbol', symbolStatics);
|
|
|
3267
3125
|
|
|
3268
3126
|
$def($def.S + $def.F * !useNative, 'Object', {
|
|
3269
3127
|
// 19.1.2.2 Object.create(O [, Properties])
|
|
3270
|
-
create:
|
|
3128
|
+
create: create,
|
|
3271
3129
|
// 19.1.2.4 Object.defineProperty(O, P, Attributes)
|
|
3272
|
-
defineProperty:
|
|
3130
|
+
defineProperty: defineProperty,
|
|
3273
3131
|
// 19.1.2.3 Object.defineProperties(O, Properties)
|
|
3274
|
-
defineProperties:
|
|
3132
|
+
defineProperties: defineProperties,
|
|
3275
3133
|
// 19.1.2.6 Object.getOwnPropertyDescriptor(O, P)
|
|
3276
|
-
getOwnPropertyDescriptor:
|
|
3134
|
+
getOwnPropertyDescriptor: getOwnPropertyDescriptor,
|
|
3277
3135
|
// 19.1.2.7 Object.getOwnPropertyNames(O)
|
|
3278
|
-
getOwnPropertyNames:
|
|
3136
|
+
getOwnPropertyNames: getOwnPropertyNames,
|
|
3279
3137
|
// 19.1.2.8 Object.getOwnPropertySymbols(O)
|
|
3280
|
-
getOwnPropertySymbols:
|
|
3138
|
+
getOwnPropertySymbols: getOwnPropertySymbols
|
|
3281
3139
|
});
|
|
3282
3140
|
|
|
3283
|
-
// 24.3.2 JSON.stringify(value [, replacer [, space]])
|
|
3284
|
-
$JSON && $def($def.S + $def.F * (!useNative || buggyJSON), 'JSON', {stringify: $stringify});
|
|
3285
|
-
|
|
3286
3141
|
// 19.4.3.5 Symbol.prototype[@@toStringTag]
|
|
3287
3142
|
setTag($Symbol, 'Symbol');
|
|
3288
3143
|
// 20.2.1.9 Math[@@toStringTag]
|
|
3289
3144
|
setTag(Math, 'Math', true);
|
|
3290
3145
|
// 24.3.3 JSON[@@toStringTag]
|
|
3291
3146
|
setTag(global.JSON, 'JSON', true);
|
|
3292
|
-
},{"
|
|
3147
|
+
},{"15":15,"18":18,"24":24,"25":25,"26":26,"3":3,"41":41,"42":42,"43":43,"52":52,"53":53,"57":57,"66":66,"67":67,"71":71,"74":74,"76":76}],163:[function(_dereq_,module,exports){
|
|
3293
3148
|
'use strict';
|
|
3294
|
-
var $ = _dereq_(
|
|
3295
|
-
, weak = _dereq_(
|
|
3296
|
-
, isObject = _dereq_(
|
|
3297
|
-
, has = _dereq_(
|
|
3149
|
+
var $ = _dereq_(41)
|
|
3150
|
+
, weak = _dereq_(11)
|
|
3151
|
+
, isObject = _dereq_(33)
|
|
3152
|
+
, has = _dereq_(26)
|
|
3298
3153
|
, frozenStore = weak.frozenStore
|
|
3299
3154
|
, WEAK = weak.WEAK
|
|
3300
3155
|
, isExtensible = Object.isExtensible || isObject
|
|
3301
3156
|
, tmp = {};
|
|
3302
3157
|
|
|
3303
3158
|
// 23.3 WeakMap Objects
|
|
3304
|
-
var $WeakMap = _dereq_(
|
|
3305
|
-
return function WeakMap(){ return get(this, arguments
|
|
3159
|
+
var $WeakMap = _dereq_(12)('WeakMap', function(get){
|
|
3160
|
+
return function WeakMap(){ return get(this, arguments[0]); };
|
|
3306
3161
|
}, {
|
|
3307
3162
|
// 23.3.3.3 WeakMap.prototype.get(key)
|
|
3308
3163
|
get: function get(key){
|
|
@@ -3322,7 +3177,7 @@ if(new $WeakMap().set((Object.freeze || Object)(tmp), 7).get(tmp) != 7){
|
|
|
3322
3177
|
$.each.call(['delete', 'has', 'get', 'set'], function(key){
|
|
3323
3178
|
var proto = $WeakMap.prototype
|
|
3324
3179
|
, method = proto[key];
|
|
3325
|
-
_dereq_(
|
|
3180
|
+
_dereq_(53)(proto, key, function(a, b){
|
|
3326
3181
|
// store frozen objects on leaky map
|
|
3327
3182
|
if(isObject(a) && !isExtensible(a)){
|
|
3328
3183
|
var result = frozenStore(this)[key](a, b);
|
|
@@ -3332,52 +3187,52 @@ if(new $WeakMap().set((Object.freeze || Object)(tmp), 7).get(tmp) != 7){
|
|
|
3332
3187
|
});
|
|
3333
3188
|
});
|
|
3334
3189
|
}
|
|
3335
|
-
},{"
|
|
3190
|
+
},{"11":11,"12":12,"26":26,"33":33,"41":41,"53":53}],164:[function(_dereq_,module,exports){
|
|
3336
3191
|
'use strict';
|
|
3337
|
-
var weak = _dereq_(
|
|
3192
|
+
var weak = _dereq_(11);
|
|
3338
3193
|
|
|
3339
3194
|
// 23.4 WeakSet Objects
|
|
3340
|
-
_dereq_(
|
|
3341
|
-
return function WeakSet(){ return get(this, arguments
|
|
3195
|
+
_dereq_(12)('WeakSet', function(get){
|
|
3196
|
+
return function WeakSet(){ return get(this, arguments[0]); };
|
|
3342
3197
|
}, {
|
|
3343
3198
|
// 23.4.3.1 WeakSet.prototype.add(value)
|
|
3344
3199
|
add: function add(value){
|
|
3345
3200
|
return weak.def(this, value, true);
|
|
3346
3201
|
}
|
|
3347
3202
|
}, weak, false, true);
|
|
3348
|
-
},{"
|
|
3203
|
+
},{"11":11,"12":12}],165:[function(_dereq_,module,exports){
|
|
3349
3204
|
'use strict';
|
|
3350
|
-
var $def = _dereq_(
|
|
3351
|
-
, $includes = _dereq_(
|
|
3205
|
+
var $def = _dereq_(15)
|
|
3206
|
+
, $includes = _dereq_(4)(true);
|
|
3352
3207
|
$def($def.P, 'Array', {
|
|
3353
3208
|
// https://github.com/domenic/Array.prototype.includes
|
|
3354
3209
|
includes: function includes(el /*, fromIndex = 0 */){
|
|
3355
|
-
return $includes(this, el, arguments
|
|
3210
|
+
return $includes(this, el, arguments[1]);
|
|
3356
3211
|
}
|
|
3357
3212
|
});
|
|
3358
|
-
_dereq_(
|
|
3359
|
-
},{"
|
|
3213
|
+
_dereq_(75)('includes');
|
|
3214
|
+
},{"15":15,"4":4,"75":75}],166:[function(_dereq_,module,exports){
|
|
3360
3215
|
// https://github.com/DavidBruant/Map-Set.prototype.toJSON
|
|
3361
|
-
var $def = _dereq_(
|
|
3216
|
+
var $def = _dereq_(15);
|
|
3362
3217
|
|
|
3363
|
-
$def($def.P, 'Map', {toJSON: _dereq_(
|
|
3364
|
-
},{"
|
|
3218
|
+
$def($def.P, 'Map', {toJSON: _dereq_(10)('Map')});
|
|
3219
|
+
},{"10":10,"15":15}],167:[function(_dereq_,module,exports){
|
|
3365
3220
|
// http://goo.gl/XkBrjD
|
|
3366
|
-
var $def = _dereq_(
|
|
3367
|
-
, $entries = _dereq_(
|
|
3221
|
+
var $def = _dereq_(15)
|
|
3222
|
+
, $entries = _dereq_(48)(true);
|
|
3368
3223
|
|
|
3369
3224
|
$def($def.S, 'Object', {
|
|
3370
3225
|
entries: function entries(it){
|
|
3371
3226
|
return $entries(it);
|
|
3372
3227
|
}
|
|
3373
3228
|
});
|
|
3374
|
-
},{"
|
|
3229
|
+
},{"15":15,"48":48}],168:[function(_dereq_,module,exports){
|
|
3375
3230
|
// https://gist.github.com/WebReflection/9353781
|
|
3376
|
-
var $ = _dereq_(
|
|
3377
|
-
, $def = _dereq_(
|
|
3378
|
-
, ownKeys = _dereq_(
|
|
3379
|
-
, toIObject = _dereq_(
|
|
3380
|
-
, createDesc = _dereq_(
|
|
3231
|
+
var $ = _dereq_(41)
|
|
3232
|
+
, $def = _dereq_(15)
|
|
3233
|
+
, ownKeys = _dereq_(49)
|
|
3234
|
+
, toIObject = _dereq_(71)
|
|
3235
|
+
, createDesc = _dereq_(52);
|
|
3381
3236
|
|
|
3382
3237
|
$def($def.S, 'Object', {
|
|
3383
3238
|
getOwnPropertyDescriptors: function getOwnPropertyDescriptors(object){
|
|
@@ -3395,81 +3250,81 @@ $def($def.S, 'Object', {
|
|
|
3395
3250
|
} return result;
|
|
3396
3251
|
}
|
|
3397
3252
|
});
|
|
3398
|
-
},{"
|
|
3253
|
+
},{"15":15,"41":41,"49":49,"52":52,"71":71}],169:[function(_dereq_,module,exports){
|
|
3399
3254
|
// http://goo.gl/XkBrjD
|
|
3400
|
-
var $def = _dereq_(
|
|
3401
|
-
, $values = _dereq_(
|
|
3255
|
+
var $def = _dereq_(15)
|
|
3256
|
+
, $values = _dereq_(48)(false);
|
|
3402
3257
|
|
|
3403
3258
|
$def($def.S, 'Object', {
|
|
3404
3259
|
values: function values(it){
|
|
3405
3260
|
return $values(it);
|
|
3406
3261
|
}
|
|
3407
3262
|
});
|
|
3408
|
-
},{"
|
|
3263
|
+
},{"15":15,"48":48}],170:[function(_dereq_,module,exports){
|
|
3409
3264
|
// https://github.com/benjamingr/RexExp.escape
|
|
3410
|
-
var $def = _dereq_(
|
|
3411
|
-
, $re = _dereq_(
|
|
3265
|
+
var $def = _dereq_(15)
|
|
3266
|
+
, $re = _dereq_(54)(/[\\^$*+?.()|[\]{}]/g, '\\$&');
|
|
3412
3267
|
$def($def.S, 'RegExp', {escape: function escape(it){ return $re(it); }});
|
|
3413
3268
|
|
|
3414
|
-
},{"
|
|
3269
|
+
},{"15":15,"54":54}],171:[function(_dereq_,module,exports){
|
|
3415
3270
|
// https://github.com/DavidBruant/Map-Set.prototype.toJSON
|
|
3416
|
-
var $def = _dereq_(
|
|
3271
|
+
var $def = _dereq_(15);
|
|
3417
3272
|
|
|
3418
|
-
$def($def.P, 'Set', {toJSON: _dereq_(
|
|
3419
|
-
},{"
|
|
3273
|
+
$def($def.P, 'Set', {toJSON: _dereq_(10)('Set')});
|
|
3274
|
+
},{"10":10,"15":15}],172:[function(_dereq_,module,exports){
|
|
3420
3275
|
// https://github.com/mathiasbynens/String.prototype.at
|
|
3421
3276
|
'use strict';
|
|
3422
|
-
var $def = _dereq_(
|
|
3423
|
-
, $at = _dereq_(
|
|
3277
|
+
var $def = _dereq_(15)
|
|
3278
|
+
, $at = _dereq_(61)(true);
|
|
3424
3279
|
$def($def.P, 'String', {
|
|
3425
3280
|
at: function at(pos){
|
|
3426
3281
|
return $at(this, pos);
|
|
3427
3282
|
}
|
|
3428
3283
|
});
|
|
3429
|
-
},{"
|
|
3284
|
+
},{"15":15,"61":61}],173:[function(_dereq_,module,exports){
|
|
3430
3285
|
'use strict';
|
|
3431
|
-
var $def = _dereq_(
|
|
3432
|
-
, $pad = _dereq_(
|
|
3286
|
+
var $def = _dereq_(15)
|
|
3287
|
+
, $pad = _dereq_(63);
|
|
3433
3288
|
$def($def.P, 'String', {
|
|
3434
3289
|
padLeft: function padLeft(maxLength /*, fillString = ' ' */){
|
|
3435
|
-
return $pad(this, maxLength, arguments
|
|
3290
|
+
return $pad(this, maxLength, arguments[1], true);
|
|
3436
3291
|
}
|
|
3437
3292
|
});
|
|
3438
|
-
},{"
|
|
3293
|
+
},{"15":15,"63":63}],174:[function(_dereq_,module,exports){
|
|
3439
3294
|
'use strict';
|
|
3440
|
-
var $def = _dereq_(
|
|
3441
|
-
, $pad = _dereq_(
|
|
3295
|
+
var $def = _dereq_(15)
|
|
3296
|
+
, $pad = _dereq_(63);
|
|
3442
3297
|
$def($def.P, 'String', {
|
|
3443
3298
|
padRight: function padRight(maxLength /*, fillString = ' ' */){
|
|
3444
|
-
return $pad(this, maxLength, arguments
|
|
3299
|
+
return $pad(this, maxLength, arguments[1], false);
|
|
3445
3300
|
}
|
|
3446
3301
|
});
|
|
3447
|
-
},{"
|
|
3302
|
+
},{"15":15,"63":63}],175:[function(_dereq_,module,exports){
|
|
3448
3303
|
'use strict';
|
|
3449
3304
|
// https://github.com/sebmarkbage/ecmascript-string-left-right-trim
|
|
3450
|
-
_dereq_(
|
|
3305
|
+
_dereq_(65)('trimLeft', function($trim){
|
|
3451
3306
|
return function trimLeft(){
|
|
3452
3307
|
return $trim(this, 1);
|
|
3453
3308
|
};
|
|
3454
3309
|
});
|
|
3455
|
-
},{"
|
|
3310
|
+
},{"65":65}],176:[function(_dereq_,module,exports){
|
|
3456
3311
|
'use strict';
|
|
3457
3312
|
// https://github.com/sebmarkbage/ecmascript-string-left-right-trim
|
|
3458
|
-
_dereq_(
|
|
3313
|
+
_dereq_(65)('trimRight', function($trim){
|
|
3459
3314
|
return function trimRight(){
|
|
3460
3315
|
return $trim(this, 2);
|
|
3461
3316
|
};
|
|
3462
3317
|
});
|
|
3463
|
-
},{"
|
|
3318
|
+
},{"65":65}],177:[function(_dereq_,module,exports){
|
|
3464
3319
|
// JavaScript 1.6 / Strawman array statics shim
|
|
3465
|
-
var $ = _dereq_(
|
|
3466
|
-
, $def = _dereq_(
|
|
3467
|
-
, $Array = _dereq_(
|
|
3320
|
+
var $ = _dereq_(41)
|
|
3321
|
+
, $def = _dereq_(15)
|
|
3322
|
+
, $Array = _dereq_(13).Array || Array
|
|
3468
3323
|
, statics = {};
|
|
3469
3324
|
var setStatics = function(keys, length){
|
|
3470
3325
|
$.each.call(keys.split(','), function(key){
|
|
3471
3326
|
if(length == undefined && key in $Array)statics[key] = $Array[key];
|
|
3472
|
-
else if(key in [])statics[key] = _dereq_(
|
|
3327
|
+
else if(key in [])statics[key] = _dereq_(14)(Function.call, [][key], length);
|
|
3473
3328
|
});
|
|
3474
3329
|
};
|
|
3475
3330
|
setStatics('pop,reverse,shift,keys,values,entries', 1);
|
|
@@ -3477,12 +3332,12 @@ setStatics('indexOf,every,some,forEach,map,filter,find,findIndex,includes', 3);
|
|
|
3477
3332
|
setStatics('join,slice,concat,push,splice,unshift,sort,lastIndexOf,' +
|
|
3478
3333
|
'reduce,reduceRight,copyWithin,fill');
|
|
3479
3334
|
$def($def.S, 'Array', statics);
|
|
3480
|
-
},{"
|
|
3481
|
-
_dereq_(
|
|
3482
|
-
var global = _dereq_(
|
|
3483
|
-
, hide = _dereq_(
|
|
3484
|
-
, Iterators = _dereq_(
|
|
3485
|
-
, ITERATOR = _dereq_(
|
|
3335
|
+
},{"13":13,"14":14,"15":15,"41":41}],178:[function(_dereq_,module,exports){
|
|
3336
|
+
_dereq_(84);
|
|
3337
|
+
var global = _dereq_(25)
|
|
3338
|
+
, hide = _dereq_(27)
|
|
3339
|
+
, Iterators = _dereq_(40)
|
|
3340
|
+
, ITERATOR = _dereq_(76)('iterator')
|
|
3486
3341
|
, NL = global.NodeList
|
|
3487
3342
|
, HTC = global.HTMLCollection
|
|
3488
3343
|
, NLProto = NL && NL.prototype
|
|
@@ -3490,19 +3345,19 @@ var global = _dereq_(28)
|
|
|
3490
3345
|
, ArrayValues = Iterators.NodeList = Iterators.HTMLCollection = Iterators.Array;
|
|
3491
3346
|
if(NL && !(ITERATOR in NLProto))hide(NLProto, ITERATOR, ArrayValues);
|
|
3492
3347
|
if(HTC && !(ITERATOR in HTCProto))hide(HTCProto, ITERATOR, ArrayValues);
|
|
3493
|
-
},{"
|
|
3494
|
-
var $def = _dereq_(
|
|
3495
|
-
, $task = _dereq_(
|
|
3348
|
+
},{"25":25,"27":27,"40":40,"76":76,"84":84}],179:[function(_dereq_,module,exports){
|
|
3349
|
+
var $def = _dereq_(15)
|
|
3350
|
+
, $task = _dereq_(68);
|
|
3496
3351
|
$def($def.G + $def.B, {
|
|
3497
3352
|
setImmediate: $task.set,
|
|
3498
3353
|
clearImmediate: $task.clear
|
|
3499
3354
|
});
|
|
3500
|
-
},{"
|
|
3355
|
+
},{"15":15,"68":68}],180:[function(_dereq_,module,exports){
|
|
3501
3356
|
// ie9- setTimeout & setInterval additional parameters fix
|
|
3502
|
-
var global = _dereq_(
|
|
3503
|
-
, $def = _dereq_(
|
|
3504
|
-
, invoke = _dereq_(
|
|
3505
|
-
, partial = _dereq_(
|
|
3357
|
+
var global = _dereq_(25)
|
|
3358
|
+
, $def = _dereq_(15)
|
|
3359
|
+
, invoke = _dereq_(29)
|
|
3360
|
+
, partial = _dereq_(50)
|
|
3506
3361
|
, navigator = global.navigator
|
|
3507
3362
|
, MSIE = !!navigator && /MSIE .\./.test(navigator.userAgent); // <- dirty ie9- check
|
|
3508
3363
|
var wrap = function(set){
|
|
@@ -3518,35 +3373,40 @@ $def($def.G + $def.B + $def.F * MSIE, {
|
|
|
3518
3373
|
setTimeout: wrap(global.setTimeout),
|
|
3519
3374
|
setInterval: wrap(global.setInterval)
|
|
3520
3375
|
});
|
|
3521
|
-
},{"
|
|
3522
|
-
_dereq_(
|
|
3523
|
-
_dereq_(
|
|
3524
|
-
_dereq_(
|
|
3376
|
+
},{"15":15,"25":25,"29":29,"50":50}],181:[function(_dereq_,module,exports){
|
|
3377
|
+
_dereq_(78);
|
|
3378
|
+
_dereq_(162);
|
|
3379
|
+
_dereq_(117);
|
|
3380
|
+
_dereq_(125);
|
|
3381
|
+
_dereq_(129);
|
|
3525
3382
|
_dereq_(130);
|
|
3526
|
-
_dereq_(
|
|
3527
|
-
_dereq_(135);
|
|
3528
|
-
_dereq_(123);
|
|
3529
|
-
_dereq_(133);
|
|
3530
|
-
_dereq_(132);
|
|
3383
|
+
_dereq_(118);
|
|
3531
3384
|
_dereq_(128);
|
|
3532
|
-
_dereq_(129);
|
|
3533
3385
|
_dereq_(127);
|
|
3386
|
+
_dereq_(123);
|
|
3534
3387
|
_dereq_(124);
|
|
3388
|
+
_dereq_(122);
|
|
3389
|
+
_dereq_(119);
|
|
3390
|
+
_dereq_(121);
|
|
3535
3391
|
_dereq_(126);
|
|
3536
|
-
_dereq_(
|
|
3537
|
-
_dereq_(
|
|
3538
|
-
_dereq_(
|
|
3539
|
-
_dereq_(
|
|
3392
|
+
_dereq_(120);
|
|
3393
|
+
_dereq_(88);
|
|
3394
|
+
_dereq_(87);
|
|
3395
|
+
_dereq_(107);
|
|
3396
|
+
_dereq_(108);
|
|
3397
|
+
_dereq_(109);
|
|
3398
|
+
_dereq_(110);
|
|
3399
|
+
_dereq_(111);
|
|
3540
3400
|
_dereq_(112);
|
|
3541
3401
|
_dereq_(113);
|
|
3542
3402
|
_dereq_(114);
|
|
3543
3403
|
_dereq_(115);
|
|
3544
3404
|
_dereq_(116);
|
|
3545
|
-
_dereq_(
|
|
3546
|
-
_dereq_(
|
|
3547
|
-
_dereq_(
|
|
3548
|
-
_dereq_(
|
|
3549
|
-
_dereq_(
|
|
3405
|
+
_dereq_(90);
|
|
3406
|
+
_dereq_(91);
|
|
3407
|
+
_dereq_(92);
|
|
3408
|
+
_dereq_(93);
|
|
3409
|
+
_dereq_(94);
|
|
3550
3410
|
_dereq_(95);
|
|
3551
3411
|
_dereq_(96);
|
|
3552
3412
|
_dereq_(97);
|
|
@@ -3559,71 +3419,66 @@ _dereq_(103);
|
|
|
3559
3419
|
_dereq_(104);
|
|
3560
3420
|
_dereq_(105);
|
|
3561
3421
|
_dereq_(106);
|
|
3562
|
-
_dereq_(
|
|
3563
|
-
_dereq_(108);
|
|
3564
|
-
_dereq_(109);
|
|
3565
|
-
_dereq_(110);
|
|
3566
|
-
_dereq_(111);
|
|
3567
|
-
_dereq_(160);
|
|
3568
|
-
_dereq_(163);
|
|
3569
|
-
_dereq_(166);
|
|
3570
|
-
_dereq_(162);
|
|
3422
|
+
_dereq_(155);
|
|
3571
3423
|
_dereq_(158);
|
|
3572
|
-
_dereq_(159);
|
|
3573
3424
|
_dereq_(161);
|
|
3574
|
-
_dereq_(
|
|
3575
|
-
_dereq_(
|
|
3576
|
-
_dereq_(
|
|
3577
|
-
_dereq_(
|
|
3578
|
-
_dereq_(
|
|
3579
|
-
_dereq_(
|
|
3580
|
-
_dereq_(
|
|
3425
|
+
_dereq_(157);
|
|
3426
|
+
_dereq_(153);
|
|
3427
|
+
_dereq_(154);
|
|
3428
|
+
_dereq_(156);
|
|
3429
|
+
_dereq_(159);
|
|
3430
|
+
_dereq_(160);
|
|
3431
|
+
_dereq_(83);
|
|
3581
3432
|
_dereq_(85);
|
|
3582
|
-
_dereq_(
|
|
3433
|
+
_dereq_(84);
|
|
3583
3434
|
_dereq_(86);
|
|
3435
|
+
_dereq_(79);
|
|
3436
|
+
_dereq_(80);
|
|
3437
|
+
_dereq_(82);
|
|
3438
|
+
_dereq_(81);
|
|
3439
|
+
_dereq_(146);
|
|
3440
|
+
_dereq_(147);
|
|
3441
|
+
_dereq_(148);
|
|
3442
|
+
_dereq_(149);
|
|
3443
|
+
_dereq_(150);
|
|
3584
3444
|
_dereq_(151);
|
|
3445
|
+
_dereq_(131);
|
|
3446
|
+
_dereq_(89);
|
|
3585
3447
|
_dereq_(152);
|
|
3586
|
-
_dereq_(
|
|
3587
|
-
_dereq_(
|
|
3588
|
-
_dereq_(
|
|
3589
|
-
_dereq_(
|
|
3448
|
+
_dereq_(163);
|
|
3449
|
+
_dereq_(164);
|
|
3450
|
+
_dereq_(132);
|
|
3451
|
+
_dereq_(133);
|
|
3452
|
+
_dereq_(134);
|
|
3453
|
+
_dereq_(135);
|
|
3590
3454
|
_dereq_(136);
|
|
3591
|
-
_dereq_(
|
|
3592
|
-
_dereq_(157);
|
|
3593
|
-
_dereq_(168);
|
|
3594
|
-
_dereq_(169);
|
|
3455
|
+
_dereq_(139);
|
|
3595
3456
|
_dereq_(137);
|
|
3596
3457
|
_dereq_(138);
|
|
3597
|
-
_dereq_(139);
|
|
3598
3458
|
_dereq_(140);
|
|
3599
3459
|
_dereq_(141);
|
|
3600
|
-
_dereq_(144);
|
|
3601
3460
|
_dereq_(142);
|
|
3602
3461
|
_dereq_(143);
|
|
3603
3462
|
_dereq_(145);
|
|
3604
|
-
_dereq_(
|
|
3605
|
-
_dereq_(
|
|
3606
|
-
_dereq_(
|
|
3607
|
-
_dereq_(150);
|
|
3608
|
-
_dereq_(149);
|
|
3609
|
-
_dereq_(170);
|
|
3610
|
-
_dereq_(177);
|
|
3611
|
-
_dereq_(178);
|
|
3612
|
-
_dereq_(179);
|
|
3613
|
-
_dereq_(180);
|
|
3614
|
-
_dereq_(181);
|
|
3615
|
-
_dereq_(175);
|
|
3463
|
+
_dereq_(144);
|
|
3464
|
+
_dereq_(165);
|
|
3465
|
+
_dereq_(172);
|
|
3616
3466
|
_dereq_(173);
|
|
3617
3467
|
_dereq_(174);
|
|
3618
|
-
_dereq_(
|
|
3619
|
-
_dereq_(171);
|
|
3468
|
+
_dereq_(175);
|
|
3620
3469
|
_dereq_(176);
|
|
3621
|
-
_dereq_(
|
|
3622
|
-
_dereq_(
|
|
3623
|
-
_dereq_(
|
|
3624
|
-
_dereq_(
|
|
3625
|
-
|
|
3626
|
-
|
|
3470
|
+
_dereq_(170);
|
|
3471
|
+
_dereq_(168);
|
|
3472
|
+
_dereq_(169);
|
|
3473
|
+
_dereq_(167);
|
|
3474
|
+
_dereq_(166);
|
|
3475
|
+
_dereq_(171);
|
|
3476
|
+
_dereq_(177);
|
|
3477
|
+
_dereq_(180);
|
|
3478
|
+
_dereq_(179);
|
|
3479
|
+
_dereq_(178);
|
|
3480
|
+
module.exports = _dereq_(13);
|
|
3481
|
+
},{"100":100,"101":101,"102":102,"103":103,"104":104,"105":105,"106":106,"107":107,"108":108,"109":109,"110":110,"111":111,"112":112,"113":113,"114":114,"115":115,"116":116,"117":117,"118":118,"119":119,"120":120,"121":121,"122":122,"123":123,"124":124,"125":125,"126":126,"127":127,"128":128,"129":129,"13":13,"130":130,"131":131,"132":132,"133":133,"134":134,"135":135,"136":136,"137":137,"138":138,"139":139,"140":140,"141":141,"142":142,"143":143,"144":144,"145":145,"146":146,"147":147,"148":148,"149":149,"150":150,"151":151,"152":152,"153":153,"154":154,"155":155,"156":156,"157":157,"158":158,"159":159,"160":160,"161":161,"162":162,"163":163,"164":164,"165":165,"166":166,"167":167,"168":168,"169":169,"170":170,"171":171,"172":172,"173":173,"174":174,"175":175,"176":176,"177":177,"178":178,"179":179,"180":180,"78":78,"79":79,"80":80,"81":81,"82":82,"83":83,"84":84,"85":85,"86":86,"87":87,"88":88,"89":89,"90":90,"91":91,"92":92,"93":93,"94":94,"95":95,"96":96,"97":97,"98":98,"99":99}],182:[function(_dereq_,module,exports){
|
|
3627
3482
|
(function (global){
|
|
3628
3483
|
/**
|
|
3629
3484
|
* Copyright (c) 2014, Facebook, Inc.
|