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