babel-source 5.4.2 → 5.4.3

Sign up to get free protection for your applications and to get access to all the features.
@@ -11,7 +11,7 @@ if (global._babelPolyfill) {
11
11
  }
12
12
  global._babelPolyfill = true;
13
13
  }).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
14
- },{"core-js/shim":85,"regenerator/runtime":86}],2:[function(require,module,exports){
14
+ },{"core-js/shim":87,"regenerator/runtime":88}],2:[function(require,module,exports){
15
15
  // false -> Array#indexOf
16
16
  // true -> Array#includes
17
17
  var $ = require('./$');
@@ -125,7 +125,7 @@ cof.set = function(it, tag, stat){
125
125
  if(it && !$.has(it = stat ? it : it.prototype, TAG))$.hide(it, TAG, tag);
126
126
  };
127
127
  module.exports = cof;
128
- },{"./$":22,"./$.wks":36}],7:[function(require,module,exports){
128
+ },{"./$":22,"./$.wks":38}],7:[function(require,module,exports){
129
129
  'use strict';
130
130
  var $ = require('./$')
131
131
  , ctx = require('./$.ctx')
@@ -181,7 +181,7 @@ module.exports = {
181
181
  set(that, FIRST, undefined);
182
182
  if(iterable != undefined)forOf(iterable, IS_MAP, that[ADDER], that);
183
183
  }
184
- $.mix(C.prototype, {
184
+ require('./$.mix')(C.prototype, {
185
185
  // 23.1.3.1 Map.prototype.clear()
186
186
  // 23.2.3.2 Set.prototype.clear()
187
187
  clear: function clear(){
@@ -282,7 +282,7 @@ module.exports = {
282
282
  }, IS_MAP ? 'entries' : 'values' , !IS_MAP, true);
283
283
  }
284
284
  };
285
- },{"./$":22,"./$.assert":4,"./$.ctx":11,"./$.for-of":15,"./$.iter":21,"./$.iter-define":19,"./$.uid":34}],8:[function(require,module,exports){
285
+ },{"./$":22,"./$.assert":4,"./$.ctx":11,"./$.for-of":15,"./$.iter":21,"./$.iter-define":19,"./$.mix":24,"./$.uid":36}],8:[function(require,module,exports){
286
286
  // https://github.com/DavidBruant/Map-Set.prototype.toJSON
287
287
  var $def = require('./$.def')
288
288
  , forOf = require('./$.for-of');
@@ -350,7 +350,7 @@ module.exports = {
350
350
  var iterable = arguments[0];
351
351
  if(iterable != undefined)forOf(iterable, IS_MAP, this[ADDER], this);
352
352
  }
353
- $.mix(C.prototype, {
353
+ require('./$.mix')(C.prototype, {
354
354
  // 23.3.3.2 WeakMap.prototype.delete(key)
355
355
  // 23.4.3.3 WeakSet.prototype.delete(value)
356
356
  'delete': function(key){
@@ -380,7 +380,7 @@ module.exports = {
380
380
  WEAK: WEAK,
381
381
  ID: ID
382
382
  };
383
- },{"./$":22,"./$.array-methods":3,"./$.assert":4,"./$.for-of":15,"./$.uid":34}],10:[function(require,module,exports){
383
+ },{"./$":22,"./$.array-methods":3,"./$.assert":4,"./$.for-of":15,"./$.mix":24,"./$.uid":36}],10:[function(require,module,exports){
384
384
  'use strict';
385
385
  var $ = require('./$')
386
386
  , $def = require('./$.def')
@@ -396,16 +396,18 @@ module.exports = function(NAME, methods, common, IS_MAP, IS_WEAK){
396
396
  , proto = C && C.prototype
397
397
  , O = {};
398
398
  function fixMethod(KEY, CHAIN){
399
- var method = proto[KEY];
400
- if($.FW)proto[KEY] = function(a, b){
401
- var result = method.call(this, a === 0 ? 0 : a, b);
402
- return CHAIN ? this : result;
403
- };
399
+ if($.FW){
400
+ var method = proto[KEY];
401
+ require('./$.redef')(proto, KEY, function(a, b){
402
+ var result = method.call(this, a === 0 ? 0 : a, b);
403
+ return CHAIN ? this : result;
404
+ });
405
+ }
404
406
  }
405
407
  if(!$.isFunction(C) || !(IS_WEAK || !BUGGY && proto.forEach && proto.entries)){
406
408
  // create collection constructor
407
409
  C = common.getConstructor(NAME, IS_MAP, ADDER);
408
- $.mix(C.prototype, methods);
410
+ require('./$.mix')(C.prototype, methods);
409
411
  } else {
410
412
  var inst = new C
411
413
  , chain = inst[ADDER](IS_WEAK ? {} : -0, 1)
@@ -446,7 +448,7 @@ module.exports = function(NAME, methods, common, IS_MAP, IS_WEAK){
446
448
 
447
449
  return C;
448
450
  };
449
- },{"./$":22,"./$.assert":4,"./$.cof":6,"./$.def":12,"./$.for-of":15,"./$.iter":21,"./$.iter-detect":20,"./$.species":28}],11:[function(require,module,exports){
451
+ },{"./$":22,"./$.assert":4,"./$.cof":6,"./$.def":12,"./$.for-of":15,"./$.iter":21,"./$.iter-detect":20,"./$.mix":24,"./$.redef":27,"./$.species":30}],11:[function(require,module,exports){
450
452
  // Optional / simple context binding
451
453
  var assertFunction = require('./$.assert').fn;
452
454
  module.exports = function(fn, that, length){
@@ -470,7 +472,8 @@ module.exports = function(fn, that, length){
470
472
  var $ = require('./$')
471
473
  , global = $.g
472
474
  , core = $.core
473
- , isFunction = $.isFunction;
475
+ , isFunction = $.isFunction
476
+ , $redef = require('./$.redef');
474
477
  function ctx(fn, that){
475
478
  return function(){
476
479
  return fn.apply(that, arguments);
@@ -487,6 +490,7 @@ $def.W = 32; // wrap
487
490
  function $def(type, name, source){
488
491
  var key, own, out, exp
489
492
  , isGlobal = type & $def.G
493
+ , isProto = type & $def.P
490
494
  , target = isGlobal ? global : type & $def.S
491
495
  ? global[name] : (global[name] || {}).prototype
492
496
  , exports = isGlobal ? core : core[name] || (core[name] = {});
@@ -498,18 +502,16 @@ function $def(type, name, source){
498
502
  out = (own ? target : source)[key];
499
503
  // bind timers to global for call from export context
500
504
  if(type & $def.B && own)exp = ctx(out, global);
501
- else exp = type & $def.P && isFunction(out) ? ctx(Function.call, out) : out;
505
+ else exp = isProto && isFunction(out) ? ctx(Function.call, out) : out;
502
506
  // extend global
503
- if(target && !own){
504
- if(isGlobal)target[key] = out;
505
- else delete target[key] && $.hide(target, key, out);
506
- }
507
+ if(target && !own)$redef(target, key, out);
507
508
  // export
508
509
  if(exports[key] != out)$.hide(exports, key, exp);
510
+ if(isProto)(exports.prototype || (exports.prototype = {}))[key] = out;
509
511
  }
510
512
  }
511
513
  module.exports = $def;
512
- },{"./$":22}],13:[function(require,module,exports){
514
+ },{"./$":22,"./$.redef":27}],13:[function(require,module,exports){
513
515
  var $ = require('./$')
514
516
  , document = $.g.document
515
517
  , isObject = $.isObject
@@ -587,6 +589,7 @@ call.close = close;
587
589
  module.exports = call;
588
590
  },{"./$.assert":4}],19:[function(require,module,exports){
589
591
  var $def = require('./$.def')
592
+ , $redef = require('./$.redef')
590
593
  , $ = require('./$')
591
594
  , cof = require('./$.cof')
592
595
  , $iter = require('./$.iter')
@@ -631,11 +634,11 @@ module.exports = function(Base, NAME, Constructor, next, DEFAULT, IS_SET, FORCE)
631
634
  entries: DEFAULT != VALUES ? _default : createMethod('entries')
632
635
  };
633
636
  if(FORCE)for(key in methods){
634
- if(!(key in proto))$.hide(proto, key, methods[key]);
637
+ if(!(key in proto))$redef(proto, key, methods[key]);
635
638
  } else $def($def.P + $def.F * $iter.BUGGY, NAME, methods);
636
639
  }
637
640
  };
638
- },{"./$":22,"./$.cof":6,"./$.def":12,"./$.iter":21,"./$.wks":36}],20:[function(require,module,exports){
641
+ },{"./$":22,"./$.cof":6,"./$.def":12,"./$.iter":21,"./$.redef":27,"./$.wks":38}],20:[function(require,module,exports){
639
642
  var SYMBOL_ITERATOR = require('./$.wks')('iterator')
640
643
  , SAFE_CLOSING = false;
641
644
  try {
@@ -655,7 +658,7 @@ module.exports = function(exec){
655
658
  } catch(e){ /* empty */ }
656
659
  return safe;
657
660
  };
658
- },{"./$.wks":36}],21:[function(require,module,exports){
661
+ },{"./$.wks":38}],21:[function(require,module,exports){
659
662
  'use strict';
660
663
  var $ = require('./$')
661
664
  , cof = require('./$.cof')
@@ -697,7 +700,7 @@ module.exports = {
697
700
  cof.set(Constructor, NAME + ' Iterator');
698
701
  }
699
702
  };
700
- },{"./$":22,"./$.assert":4,"./$.cof":6,"./$.wks":36}],22:[function(require,module,exports){
703
+ },{"./$":22,"./$.assert":4,"./$.cof":6,"./$.wks":38}],22:[function(require,module,exports){
701
704
  'use strict';
702
705
  var global = typeof self != 'undefined' ? self : Function('return this')()
703
706
  , core = {}
@@ -792,10 +795,6 @@ var $ = module.exports = require('./$.fw')({
792
795
  hide: hide,
793
796
  def: createDefiner(0),
794
797
  set: global.Symbol ? simpleSet : hide,
795
- mix: function(target, src){
796
- for(var key in src)hide(target, key, src[key]);
797
- return target;
798
- },
799
798
  each: [].forEach
800
799
  });
801
800
  /* eslint-disable no-undef */
@@ -812,6 +811,12 @@ module.exports = function(object, el){
812
811
  while(length > index)if(O[key = keys[index++]] === el)return key;
813
812
  };
814
813
  },{"./$":22}],24:[function(require,module,exports){
814
+ var $redef = require('./$.redef');
815
+ module.exports = function(target, src){
816
+ for(var key in src)$redef(target, key, src[key]);
817
+ return target;
818
+ };
819
+ },{"./$.redef":27}],25:[function(require,module,exports){
815
820
  var $ = require('./$')
816
821
  , assertObject = require('./$.assert').obj;
817
822
  module.exports = function ownKeys(it){
@@ -820,7 +825,7 @@ module.exports = function ownKeys(it){
820
825
  , getSymbols = $.getSymbols;
821
826
  return getSymbols ? keys.concat(getSymbols(it)) : keys;
822
827
  };
823
- },{"./$":22,"./$.assert":4}],25:[function(require,module,exports){
828
+ },{"./$":22,"./$.assert":4}],26:[function(require,module,exports){
824
829
  'use strict';
825
830
  var $ = require('./$')
826
831
  , invoke = require('./$.invoke')
@@ -844,7 +849,37 @@ module.exports = function(/* ...pargs */){
844
849
  return invoke(fn, args, that);
845
850
  };
846
851
  };
847
- },{"./$":22,"./$.assert":4,"./$.invoke":17}],26:[function(require,module,exports){
852
+ },{"./$":22,"./$.assert":4,"./$.invoke":17}],27:[function(require,module,exports){
853
+ var $ = require('./$')
854
+ , tpl = String({}.hasOwnProperty)
855
+ , SRC = require('./$.uid').safe('src')
856
+ , _toString = Function.toString;
857
+
858
+ function $redef(O, key, val, safe){
859
+ if($.isFunction(val)){
860
+ var base = O[key];
861
+ $.hide(val, SRC, base ? String(base) : tpl.replace(/hasOwnProperty/, String(key)));
862
+ }
863
+ if(O === $.g){
864
+ O[key] = val;
865
+ } else {
866
+ if(!safe)delete O[key];
867
+ $.hide(O, key, val);
868
+ }
869
+ }
870
+
871
+ // add fake Function#toString for correct work wrapped methods / constructors
872
+ // with methods similar to LoDash isNative
873
+ $redef(Function.prototype, 'toString', function toString(){
874
+ return $.has(this, SRC) ? this[SRC] : _toString.call(this);
875
+ });
876
+
877
+ $.core.inspectSource = function(it){
878
+ return _toString.call(it);
879
+ };
880
+
881
+ module.exports = $redef;
882
+ },{"./$":22,"./$.uid":36}],28:[function(require,module,exports){
848
883
  'use strict';
849
884
  module.exports = function(regExp, replace, isStatic){
850
885
  var replacer = replace === Object(replace) ? function(part){
@@ -854,7 +889,7 @@ module.exports = function(regExp, replace, isStatic){
854
889
  return String(isStatic ? it : this).replace(regExp, replacer);
855
890
  };
856
891
  };
857
- },{}],27:[function(require,module,exports){
892
+ },{}],29:[function(require,module,exports){
858
893
  // Works with __proto__ only. Old v8 can't work with null proto objects.
859
894
  /* eslint-disable no-proto */
860
895
  var $ = require('./$')
@@ -880,7 +915,7 @@ module.exports = {
880
915
  : undefined),
881
916
  check: check
882
917
  };
883
- },{"./$":22,"./$.assert":4,"./$.ctx":11}],28:[function(require,module,exports){
918
+ },{"./$":22,"./$.assert":4,"./$.ctx":11}],30:[function(require,module,exports){
884
919
  var $ = require('./$')
885
920
  , SPECIES = require('./$.wks')('species');
886
921
  module.exports = function(C){
@@ -889,7 +924,7 @@ module.exports = function(C){
889
924
  get: $.that
890
925
  });
891
926
  };
892
- },{"./$":22,"./$.wks":36}],29:[function(require,module,exports){
927
+ },{"./$":22,"./$.wks":38}],31:[function(require,module,exports){
893
928
  // true -> String#at
894
929
  // false -> String#codePointAt
895
930
  var $ = require('./$');
@@ -907,7 +942,7 @@ module.exports = function(TO_STRING){
907
942
  : TO_STRING ? s.slice(i, i + 2) : (a - 0xd800 << 10) + (b - 0xdc00) + 0x10000;
908
943
  };
909
944
  };
910
- },{"./$":22}],30:[function(require,module,exports){
945
+ },{"./$":22}],32:[function(require,module,exports){
911
946
  // http://wiki.ecmascript.org/doku.php?id=strawman:string_padding
912
947
  var $ = require('./$')
913
948
  , repeat = require('./$.string-repeat');
@@ -940,7 +975,7 @@ module.exports = function(that, minLength, fillChar, left){
940
975
  // 11. Return a String made from S, followed by sFillVal.
941
976
  return left ? sFillVal.concat(S) : S.concat(sFillVal);
942
977
  };
943
- },{"./$":22,"./$.string-repeat":31}],31:[function(require,module,exports){
978
+ },{"./$":22,"./$.string-repeat":33}],33:[function(require,module,exports){
944
979
  'use strict';
945
980
  var $ = require('./$');
946
981
 
@@ -952,7 +987,7 @@ module.exports = function repeat(count){
952
987
  for(;n > 0; (n >>>= 1) && (str += str))if(n & 1)res += str;
953
988
  return res;
954
989
  };
955
- },{"./$":22}],32:[function(require,module,exports){
990
+ },{"./$":22}],34:[function(require,module,exports){
956
991
  'use strict';
957
992
  var $ = require('./$')
958
993
  , ctx = require('./$.ctx')
@@ -1034,7 +1069,7 @@ module.exports = {
1034
1069
  set: setTask,
1035
1070
  clear: clearTask
1036
1071
  };
1037
- },{"./$":22,"./$.cof":6,"./$.ctx":11,"./$.dom-create":13,"./$.invoke":17}],33:[function(require,module,exports){
1072
+ },{"./$":22,"./$.cof":6,"./$.ctx":11,"./$.dom-create":13,"./$.invoke":17}],35:[function(require,module,exports){
1038
1073
  module.exports = function(exec){
1039
1074
  try {
1040
1075
  exec();
@@ -1043,14 +1078,14 @@ module.exports = function(exec){
1043
1078
  return true;
1044
1079
  }
1045
1080
  };
1046
- },{}],34:[function(require,module,exports){
1081
+ },{}],36:[function(require,module,exports){
1047
1082
  var sid = 0;
1048
1083
  function uid(key){
1049
- return 'Symbol(' + key + ')_' + (++sid + Math.random()).toString(36);
1084
+ return 'Symbol('.concat(key === undefined ? '' : key, ')_', (++sid + Math.random()).toString(36));
1050
1085
  }
1051
1086
  uid.safe = require('./$').g.Symbol || uid;
1052
1087
  module.exports = uid;
1053
- },{"./$":22}],35:[function(require,module,exports){
1088
+ },{"./$":22}],37:[function(require,module,exports){
1054
1089
  // 22.1.3.31 Array.prototype[@@unscopables]
1055
1090
  var $ = require('./$')
1056
1091
  , UNSCOPABLES = require('./$.wks')('unscopables');
@@ -1058,14 +1093,14 @@ if($.FW && !(UNSCOPABLES in []))$.hide(Array.prototype, UNSCOPABLES, {});
1058
1093
  module.exports = function(key){
1059
1094
  if($.FW)[][UNSCOPABLES][key] = true;
1060
1095
  };
1061
- },{"./$":22,"./$.wks":36}],36:[function(require,module,exports){
1096
+ },{"./$":22,"./$.wks":38}],38:[function(require,module,exports){
1062
1097
  var global = require('./$').g
1063
1098
  , store = {};
1064
1099
  module.exports = function(name){
1065
1100
  return store[name] || (store[name] =
1066
1101
  global.Symbol && global.Symbol[name] || require('./$.uid').safe('Symbol.' + name));
1067
1102
  };
1068
- },{"./$":22,"./$.uid":34}],37:[function(require,module,exports){
1103
+ },{"./$":22,"./$.uid":36}],39:[function(require,module,exports){
1069
1104
  var $ = require('./$')
1070
1105
  , cel = require('./$.dom-create')
1071
1106
  , cof = require('./$.cof')
@@ -1371,7 +1406,7 @@ if(classof(function(){ return arguments; }()) == 'Object')cof.classof = function
1371
1406
  var tag = classof(it);
1372
1407
  return tag == 'Object' && isFunction(it.callee) ? 'Arguments' : tag;
1373
1408
  };
1374
- },{"./$":22,"./$.array-includes":2,"./$.array-methods":3,"./$.assert":4,"./$.cof":6,"./$.def":12,"./$.dom-create":13,"./$.invoke":17,"./$.replacer":26,"./$.throws":33,"./$.uid":34}],38:[function(require,module,exports){
1409
+ },{"./$":22,"./$.array-includes":2,"./$.array-methods":3,"./$.assert":4,"./$.cof":6,"./$.def":12,"./$.dom-create":13,"./$.invoke":17,"./$.replacer":28,"./$.throws":35,"./$.uid":36}],40:[function(require,module,exports){
1375
1410
  'use strict';
1376
1411
  var $ = require('./$')
1377
1412
  , $def = require('./$.def')
@@ -1401,7 +1436,7 @@ $def($def.P, 'Array', {
1401
1436
  }
1402
1437
  });
1403
1438
  require('./$.unscope')('copyWithin');
1404
- },{"./$":22,"./$.def":12,"./$.unscope":35}],39:[function(require,module,exports){
1439
+ },{"./$":22,"./$.def":12,"./$.unscope":37}],41:[function(require,module,exports){
1405
1440
  'use strict';
1406
1441
  var $ = require('./$')
1407
1442
  , $def = require('./$.def')
@@ -1419,7 +1454,7 @@ $def($def.P, 'Array', {
1419
1454
  }
1420
1455
  });
1421
1456
  require('./$.unscope')('fill');
1422
- },{"./$":22,"./$.def":12,"./$.unscope":35}],40:[function(require,module,exports){
1457
+ },{"./$":22,"./$.def":12,"./$.unscope":37}],42:[function(require,module,exports){
1423
1458
  'use strict';
1424
1459
  // 22.1.3.9 Array.prototype.findIndex(predicate, thisArg = undefined)
1425
1460
  var KEY = 'findIndex'
@@ -1434,7 +1469,7 @@ $def($def.P + $def.F * forced, 'Array', {
1434
1469
  }
1435
1470
  });
1436
1471
  require('./$.unscope')(KEY);
1437
- },{"./$.array-methods":3,"./$.def":12,"./$.unscope":35}],41:[function(require,module,exports){
1472
+ },{"./$.array-methods":3,"./$.def":12,"./$.unscope":37}],43:[function(require,module,exports){
1438
1473
  'use strict';
1439
1474
  // 22.1.3.8 Array.prototype.find(predicate, thisArg = undefined)
1440
1475
  var KEY = 'find'
@@ -1449,7 +1484,7 @@ $def($def.P + $def.F * forced, 'Array', {
1449
1484
  }
1450
1485
  });
1451
1486
  require('./$.unscope')(KEY);
1452
- },{"./$.array-methods":3,"./$.def":12,"./$.unscope":35}],42:[function(require,module,exports){
1487
+ },{"./$.array-methods":3,"./$.def":12,"./$.unscope":37}],44:[function(require,module,exports){
1453
1488
  var $ = require('./$')
1454
1489
  , ctx = require('./$.ctx')
1455
1490
  , $def = require('./$.def')
@@ -1482,7 +1517,7 @@ $def($def.S + $def.F * !require('./$.iter-detect')(function(iter){ Array.from(it
1482
1517
  return result;
1483
1518
  }
1484
1519
  });
1485
- },{"./$":22,"./$.ctx":11,"./$.def":12,"./$.iter":21,"./$.iter-call":18,"./$.iter-detect":20}],43:[function(require,module,exports){
1520
+ },{"./$":22,"./$.ctx":11,"./$.def":12,"./$.iter":21,"./$.iter-call":18,"./$.iter-detect":20}],45:[function(require,module,exports){
1486
1521
  var $ = require('./$')
1487
1522
  , setUnscope = require('./$.unscope')
1488
1523
  , ITER = require('./$.uid').safe('iter')
@@ -1517,7 +1552,7 @@ Iterators.Arguments = Iterators.Array;
1517
1552
  setUnscope('keys');
1518
1553
  setUnscope('values');
1519
1554
  setUnscope('entries');
1520
- },{"./$":22,"./$.iter":21,"./$.iter-define":19,"./$.uid":34,"./$.unscope":35}],44:[function(require,module,exports){
1555
+ },{"./$":22,"./$.iter":21,"./$.iter-define":19,"./$.uid":36,"./$.unscope":37}],46:[function(require,module,exports){
1521
1556
  var $def = require('./$.def');
1522
1557
  $def($def.S, 'Array', {
1523
1558
  // 22.1.2.3 Array.of( ...items)
@@ -1531,9 +1566,9 @@ $def($def.S, 'Array', {
1531
1566
  return result;
1532
1567
  }
1533
1568
  });
1534
- },{"./$.def":12}],45:[function(require,module,exports){
1569
+ },{"./$.def":12}],47:[function(require,module,exports){
1535
1570
  require('./$.species')(Array);
1536
- },{"./$.species":28}],46:[function(require,module,exports){
1571
+ },{"./$.species":30}],48:[function(require,module,exports){
1537
1572
  var $ = require('./$')
1538
1573
  , HAS_INSTANCE = require('./$.wks')('hasInstance')
1539
1574
  , FunctionProto = Function.prototype;
@@ -1545,7 +1580,7 @@ if(!(HAS_INSTANCE in FunctionProto))$.setDesc(FunctionProto, HAS_INSTANCE, {valu
1545
1580
  while(O = $.getProto(O))if(this.prototype === O)return true;
1546
1581
  return false;
1547
1582
  }});
1548
- },{"./$":22,"./$.wks":36}],47:[function(require,module,exports){
1583
+ },{"./$":22,"./$.wks":38}],49:[function(require,module,exports){
1549
1584
  'use strict';
1550
1585
  var $ = require('./$')
1551
1586
  , NAME = 'name'
@@ -1564,7 +1599,7 @@ NAME in FunctionProto || $.FW && $.DESC && setDesc(FunctionProto, NAME, {
1564
1599
  $.has(this, NAME) || setDesc(this, NAME, $.desc(0, value));
1565
1600
  }
1566
1601
  });
1567
- },{"./$":22}],48:[function(require,module,exports){
1602
+ },{"./$":22}],50:[function(require,module,exports){
1568
1603
  'use strict';
1569
1604
  var strong = require('./$.collection-strong');
1570
1605
 
@@ -1580,7 +1615,7 @@ require('./$.collection')('Map', {
1580
1615
  return strong.def(this, key === 0 ? 0 : key, value);
1581
1616
  }
1582
1617
  }, strong, true);
1583
- },{"./$.collection":10,"./$.collection-strong":7}],49:[function(require,module,exports){
1618
+ },{"./$.collection":10,"./$.collection-strong":7}],51:[function(require,module,exports){
1584
1619
  var Infinity = 1 / 0
1585
1620
  , $def = require('./$.def')
1586
1621
  , E = Math.E
@@ -1703,7 +1738,7 @@ $def($def.S, 'Math', {
1703
1738
  return (it > 0 ? floor : ceil)(it);
1704
1739
  }
1705
1740
  });
1706
- },{"./$.def":12}],50:[function(require,module,exports){
1741
+ },{"./$.def":12}],52:[function(require,module,exports){
1707
1742
  'use strict';
1708
1743
  var $ = require('./$')
1709
1744
  , isObject = $.isObject
@@ -1746,9 +1781,9 @@ if($.FW && !($Number('0o1') && $Number('0b1'))){
1746
1781
  );
1747
1782
  $Number.prototype = proto;
1748
1783
  proto.constructor = $Number;
1749
- $.hide($.g, NUMBER, $Number);
1784
+ require('./$.redef')($.g, NUMBER, $Number);
1750
1785
  }
1751
- },{"./$":22}],51:[function(require,module,exports){
1786
+ },{"./$":22,"./$.redef":27}],53:[function(require,module,exports){
1752
1787
  var $ = require('./$')
1753
1788
  , $def = require('./$.def')
1754
1789
  , abs = Math.abs
@@ -1784,11 +1819,11 @@ $def($def.S, 'Number', {
1784
1819
  // 20.1.2.13 Number.parseInt(string, radix)
1785
1820
  parseInt: parseInt
1786
1821
  });
1787
- },{"./$":22,"./$.def":12}],52:[function(require,module,exports){
1822
+ },{"./$":22,"./$.def":12}],54:[function(require,module,exports){
1788
1823
  // 19.1.3.1 Object.assign(target, source)
1789
1824
  var $def = require('./$.def');
1790
1825
  $def($def.S, 'Object', {assign: require('./$.assign')});
1791
- },{"./$.assign":5,"./$.def":12}],53:[function(require,module,exports){
1826
+ },{"./$.assign":5,"./$.def":12}],55:[function(require,module,exports){
1792
1827
  // 19.1.3.10 Object.is(value1, value2)
1793
1828
  var $def = require('./$.def');
1794
1829
  $def($def.S, 'Object', {
@@ -1796,11 +1831,11 @@ $def($def.S, 'Object', {
1796
1831
  return x === y ? x !== 0 || 1 / x === 1 / y : x != x && y != y;
1797
1832
  }
1798
1833
  });
1799
- },{"./$.def":12}],54:[function(require,module,exports){
1834
+ },{"./$.def":12}],56:[function(require,module,exports){
1800
1835
  // 19.1.3.19 Object.setPrototypeOf(O, proto)
1801
1836
  var $def = require('./$.def');
1802
1837
  $def($def.S, 'Object', {setPrototypeOf: require('./$.set-proto').set});
1803
- },{"./$.def":12,"./$.set-proto":27}],55:[function(require,module,exports){
1838
+ },{"./$.def":12,"./$.set-proto":29}],57:[function(require,module,exports){
1804
1839
  var $ = require('./$')
1805
1840
  , $def = require('./$.def')
1806
1841
  , isObject = $.isObject
@@ -1839,23 +1874,18 @@ $.each.call(('freeze,seal,preventExtensions,isFrozen,isSealed,isExtensible,' +
1839
1874
  }
1840
1875
  $def($def.S + $def.F * forced, 'Object', method);
1841
1876
  });
1842
- },{"./$":22,"./$.def":12}],56:[function(require,module,exports){
1877
+ },{"./$":22,"./$.def":12}],58:[function(require,module,exports){
1843
1878
  'use strict';
1844
1879
  // 19.1.3.6 Object.prototype.toString()
1845
- var $ = require('./$')
1846
- , cof = require('./$.cof')
1847
- , src = String({}.toString)
1880
+ var cof = require('./$.cof')
1848
1881
  , tmp = {};
1849
- function toString(){
1850
- return '[object ' + cof.classof(this) + ']';
1851
- }
1852
- // lodash uses String(Object.prototype.toString) in isNative
1853
- toString.toString = function(){
1854
- return src;
1855
- };
1856
1882
  tmp[require('./$.wks')('toStringTag')] = 'z';
1857
- if($.FW && cof(tmp) != 'z')$.hide(Object.prototype, 'toString', toString);
1858
- },{"./$":22,"./$.cof":6,"./$.wks":36}],57:[function(require,module,exports){
1883
+ if(require('./$').FW && cof(tmp) != 'z'){
1884
+ require('./$.redef')(Object.prototype, 'toString', function toString(){
1885
+ return '[object ' + cof.classof(this) + ']';
1886
+ }, true);
1887
+ }
1888
+ },{"./$":22,"./$.cof":6,"./$.redef":27,"./$.wks":38}],59:[function(require,module,exports){
1859
1889
  'use strict';
1860
1890
  var $ = require('./$')
1861
1891
  , ctx = require('./$.ctx')
@@ -2008,7 +2038,7 @@ if(!useNative){
2008
2038
  $reject.call(record, err);
2009
2039
  }
2010
2040
  };
2011
- $.mix(P.prototype, {
2041
+ require('./$.mix')(P.prototype, {
2012
2042
  // 25.4.5.3 Promise.prototype.then(onFulfilled, onRejected)
2013
2043
  then: function then(onFulfilled, onRejected){
2014
2044
  var S = assertObject(assertObject(this).constructor)[SPECIES];
@@ -2085,7 +2115,7 @@ $def($def.S + $def.F * !(useNative && require('./$.iter-detect')(function(iter){
2085
2115
  });
2086
2116
  }
2087
2117
  });
2088
- },{"./$":22,"./$.assert":4,"./$.cof":6,"./$.ctx":11,"./$.def":12,"./$.for-of":15,"./$.iter-detect":20,"./$.set-proto":27,"./$.species":28,"./$.task":32,"./$.uid":34,"./$.wks":36}],58:[function(require,module,exports){
2118
+ },{"./$":22,"./$.assert":4,"./$.cof":6,"./$.ctx":11,"./$.def":12,"./$.for-of":15,"./$.iter-detect":20,"./$.mix":24,"./$.set-proto":29,"./$.species":30,"./$.task":34,"./$.uid":36,"./$.wks":38}],60:[function(require,module,exports){
2089
2119
  var $ = require('./$')
2090
2120
  , $def = require('./$.def')
2091
2121
  , setProto = require('./$.set-proto')
@@ -2231,7 +2261,7 @@ $def($def.S + $def.F * buggyEnumerate, 'Reflect', {
2231
2261
  });
2232
2262
 
2233
2263
  $def($def.S, 'Reflect', reflect);
2234
- },{"./$":22,"./$.assert":4,"./$.def":12,"./$.iter":21,"./$.own-keys":24,"./$.set-proto":27,"./$.uid":34,"./$.wks":36}],59:[function(require,module,exports){
2264
+ },{"./$":22,"./$.assert":4,"./$.def":12,"./$.iter":21,"./$.own-keys":25,"./$.set-proto":29,"./$.uid":36,"./$.wks":38}],61:[function(require,module,exports){
2235
2265
  var $ = require('./$')
2236
2266
  , cof = require('./$.cof')
2237
2267
  , $RegExp = $.g.RegExp
@@ -2266,7 +2296,7 @@ if($.FW && $.DESC){
2266
2296
  });
2267
2297
  proto.constructor = $RegExp;
2268
2298
  $RegExp.prototype = proto;
2269
- $.hide($.g, 'RegExp', $RegExp);
2299
+ require('./$.redef')($.g, 'RegExp', $RegExp);
2270
2300
  }
2271
2301
  // 21.2.5.3 get RegExp.prototype.flags()
2272
2302
  if(/./g.flags != 'g')$.setDesc(proto, 'flags', {
@@ -2275,7 +2305,7 @@ if($.FW && $.DESC){
2275
2305
  });
2276
2306
  }
2277
2307
  require('./$.species')($RegExp);
2278
- },{"./$":22,"./$.cof":6,"./$.replacer":26,"./$.species":28}],60:[function(require,module,exports){
2308
+ },{"./$":22,"./$.cof":6,"./$.redef":27,"./$.replacer":28,"./$.species":30}],62:[function(require,module,exports){
2279
2309
  'use strict';
2280
2310
  var strong = require('./$.collection-strong');
2281
2311
 
@@ -2286,7 +2316,7 @@ require('./$.collection')('Set', {
2286
2316
  return strong.def(this, value = value === 0 ? 0 : value, value);
2287
2317
  }
2288
2318
  }, strong);
2289
- },{"./$.collection":10,"./$.collection-strong":7}],61:[function(require,module,exports){
2319
+ },{"./$.collection":10,"./$.collection-strong":7}],63:[function(require,module,exports){
2290
2320
  'use strict';
2291
2321
  var $def = require('./$.def')
2292
2322
  , $at = require('./$.string-at')(false);
@@ -2296,7 +2326,7 @@ $def($def.P, 'String', {
2296
2326
  return $at(this, pos);
2297
2327
  }
2298
2328
  });
2299
- },{"./$.def":12,"./$.string-at":29}],62:[function(require,module,exports){
2329
+ },{"./$.def":12,"./$.string-at":31}],64:[function(require,module,exports){
2300
2330
  'use strict';
2301
2331
  var $ = require('./$')
2302
2332
  , cof = require('./$.cof')
@@ -2316,7 +2346,7 @@ $def($def.P + $def.F * !require('./$.throws')(function(){ 'q'.endsWith(/./); }),
2316
2346
  return that.slice(end - searchString.length, end) === searchString;
2317
2347
  }
2318
2348
  });
2319
- },{"./$":22,"./$.cof":6,"./$.def":12,"./$.throws":33}],63:[function(require,module,exports){
2349
+ },{"./$":22,"./$.cof":6,"./$.def":12,"./$.throws":35}],65:[function(require,module,exports){
2320
2350
  var $def = require('./$.def')
2321
2351
  , toIndex = require('./$').toIndex
2322
2352
  , fromCharCode = String.fromCharCode
@@ -2340,7 +2370,7 @@ $def($def.S + $def.F * (!!$fromCodePoint && $fromCodePoint.length != 1), 'String
2340
2370
  } return res.join('');
2341
2371
  }
2342
2372
  });
2343
- },{"./$":22,"./$.def":12}],64:[function(require,module,exports){
2373
+ },{"./$":22,"./$.def":12}],66:[function(require,module,exports){
2344
2374
  'use strict';
2345
2375
  var $ = require('./$')
2346
2376
  , cof = require('./$.cof')
@@ -2353,7 +2383,7 @@ $def($def.P, 'String', {
2353
2383
  return !!~String($.assertDefined(this)).indexOf(searchString, arguments[1]);
2354
2384
  }
2355
2385
  });
2356
- },{"./$":22,"./$.cof":6,"./$.def":12}],65:[function(require,module,exports){
2386
+ },{"./$":22,"./$.cof":6,"./$.def":12}],67:[function(require,module,exports){
2357
2387
  var set = require('./$').set
2358
2388
  , $at = require('./$.string-at')(true)
2359
2389
  , ITER = require('./$.uid').safe('iter')
@@ -2374,7 +2404,7 @@ require('./$.iter-define')(String, 'String', function(iterated){
2374
2404
  iter.i += point.length;
2375
2405
  return step(0, point);
2376
2406
  });
2377
- },{"./$":22,"./$.iter":21,"./$.iter-define":19,"./$.string-at":29,"./$.uid":34}],66:[function(require,module,exports){
2407
+ },{"./$":22,"./$.iter":21,"./$.iter-define":19,"./$.string-at":31,"./$.uid":36}],68:[function(require,module,exports){
2378
2408
  var $ = require('./$')
2379
2409
  , $def = require('./$.def');
2380
2410
 
@@ -2392,14 +2422,14 @@ $def($def.S, 'String', {
2392
2422
  } return res.join('');
2393
2423
  }
2394
2424
  });
2395
- },{"./$":22,"./$.def":12}],67:[function(require,module,exports){
2425
+ },{"./$":22,"./$.def":12}],69:[function(require,module,exports){
2396
2426
  var $def = require('./$.def');
2397
2427
 
2398
2428
  $def($def.P, 'String', {
2399
2429
  // 21.1.3.13 String.prototype.repeat(count)
2400
2430
  repeat: require('./$.string-repeat')
2401
2431
  });
2402
- },{"./$.def":12,"./$.string-repeat":31}],68:[function(require,module,exports){
2432
+ },{"./$.def":12,"./$.string-repeat":33}],70:[function(require,module,exports){
2403
2433
  'use strict';
2404
2434
  var $ = require('./$')
2405
2435
  , cof = require('./$.cof')
@@ -2416,13 +2446,14 @@ $def($def.P + $def.F * !require('./$.throws')(function(){ 'q'.startsWith(/./); }
2416
2446
  return that.slice(index, index + searchString.length) === searchString;
2417
2447
  }
2418
2448
  });
2419
- },{"./$":22,"./$.cof":6,"./$.def":12,"./$.throws":33}],69:[function(require,module,exports){
2449
+ },{"./$":22,"./$.cof":6,"./$.def":12,"./$.throws":35}],71:[function(require,module,exports){
2420
2450
  'use strict';
2421
2451
  // ECMAScript 6 symbols shim
2422
2452
  var $ = require('./$')
2423
2453
  , setTag = require('./$.cof').set
2424
2454
  , uid = require('./$.uid')
2425
2455
  , $def = require('./$.def')
2456
+ , $redef = require('./$.redef')
2426
2457
  , keyOf = require('./$.keyof')
2427
2458
  , enumKeys = require('./$.enum-keys')
2428
2459
  , assertObject = require('./$.assert').obj
@@ -2506,11 +2537,11 @@ function getOwnPropertySymbols(it){
2506
2537
 
2507
2538
  // 19.4.1.1 Symbol([description])
2508
2539
  if(!useNative){
2509
- $Symbol = function Symbol(description){
2540
+ $Symbol = function Symbol(){
2510
2541
  if(this instanceof $Symbol)throw TypeError('Symbol is not a constructor');
2511
- return wrap(uid(description));
2542
+ return wrap(uid(arguments[0]));
2512
2543
  };
2513
- $.hide($Symbol.prototype, 'toString', function(){
2544
+ $redef($Symbol.prototype, 'toString', function(){
2514
2545
  return this[TAG];
2515
2546
  });
2516
2547
 
@@ -2521,7 +2552,7 @@ if(!useNative){
2521
2552
  $.getNames = getOwnPropertyNames;
2522
2553
  $.getSymbols = getOwnPropertySymbols;
2523
2554
 
2524
- if($.DESC && $.FW)$.hide(Object.prototype, 'propertyIsEnumerable', propertyIsEnumerable);
2555
+ if($.DESC && $.FW)$redef(Object.prototype, 'propertyIsEnumerable', propertyIsEnumerable, true);
2525
2556
  }
2526
2557
 
2527
2558
  var symbolStatics = {
@@ -2585,7 +2616,7 @@ setTag($Symbol, 'Symbol');
2585
2616
  setTag(Math, 'Math', true);
2586
2617
  // 24.3.3 JSON[@@toStringTag]
2587
2618
  setTag($.g.JSON, 'JSON', true);
2588
- },{"./$":22,"./$.assert":4,"./$.cof":6,"./$.def":12,"./$.enum-keys":14,"./$.keyof":23,"./$.uid":34,"./$.wks":36}],70:[function(require,module,exports){
2619
+ },{"./$":22,"./$.assert":4,"./$.cof":6,"./$.def":12,"./$.enum-keys":14,"./$.keyof":23,"./$.redef":27,"./$.uid":36,"./$.wks":38}],72:[function(require,module,exports){
2589
2620
  'use strict';
2590
2621
  var $ = require('./$')
2591
2622
  , weak = require('./$.collection-weak')
@@ -2616,17 +2647,17 @@ var WeakMap = require('./$.collection')('WeakMap', {
2616
2647
  if($.FW && new WeakMap().set((Object.freeze || Object)(tmp), 7).get(tmp) != 7){
2617
2648
  $.each.call(['delete', 'has', 'get', 'set'], function(key){
2618
2649
  var method = WeakMap.prototype[key];
2619
- WeakMap.prototype[key] = function(a, b){
2650
+ require('./$.redef')(WeakMap.prototype, key, function(a, b){
2620
2651
  // store frozen objects on leaky map
2621
2652
  if(isObject(a) && isFrozen(a)){
2622
2653
  var result = leakStore(this)[key](a, b);
2623
2654
  return key == 'set' ? this : result;
2624
2655
  // store all the rest on native weakmap
2625
2656
  } return method.call(this, a, b);
2626
- };
2657
+ });
2627
2658
  });
2628
2659
  }
2629
- },{"./$":22,"./$.collection":10,"./$.collection-weak":9}],71:[function(require,module,exports){
2660
+ },{"./$":22,"./$.collection":10,"./$.collection-weak":9,"./$.redef":27}],73:[function(require,module,exports){
2630
2661
  'use strict';
2631
2662
  var weak = require('./$.collection-weak');
2632
2663
 
@@ -2637,7 +2668,7 @@ require('./$.collection')('WeakSet', {
2637
2668
  return weak.def(this, value, true);
2638
2669
  }
2639
2670
  }, weak, false, true);
2640
- },{"./$.collection":10,"./$.collection-weak":9}],72:[function(require,module,exports){
2671
+ },{"./$.collection":10,"./$.collection-weak":9}],74:[function(require,module,exports){
2641
2672
  // https://github.com/domenic/Array.prototype.includes
2642
2673
  var $def = require('./$.def')
2643
2674
  , $includes = require('./$.array-includes')(true);
@@ -2647,10 +2678,10 @@ $def($def.P, 'Array', {
2647
2678
  }
2648
2679
  });
2649
2680
  require('./$.unscope')('includes');
2650
- },{"./$.array-includes":2,"./$.def":12,"./$.unscope":35}],73:[function(require,module,exports){
2681
+ },{"./$.array-includes":2,"./$.def":12,"./$.unscope":37}],75:[function(require,module,exports){
2651
2682
  // https://github.com/DavidBruant/Map-Set.prototype.toJSON
2652
2683
  require('./$.collection-to-json')('Map');
2653
- },{"./$.collection-to-json":8}],74:[function(require,module,exports){
2684
+ },{"./$.collection-to-json":8}],76:[function(require,module,exports){
2654
2685
  // https://gist.github.com/WebReflection/9353781
2655
2686
  var $ = require('./$')
2656
2687
  , $def = require('./$.def')
@@ -2666,7 +2697,7 @@ $def($def.S, 'Object', {
2666
2697
  return result;
2667
2698
  }
2668
2699
  });
2669
- },{"./$":22,"./$.def":12,"./$.own-keys":24}],75:[function(require,module,exports){
2700
+ },{"./$":22,"./$.def":12,"./$.own-keys":25}],77:[function(require,module,exports){
2670
2701
  // http://goo.gl/XkBrjD
2671
2702
  var $ = require('./$')
2672
2703
  , $def = require('./$.def');
@@ -2687,16 +2718,16 @@ $def($def.S, 'Object', {
2687
2718
  values: createObjectToArray(false),
2688
2719
  entries: createObjectToArray(true)
2689
2720
  });
2690
- },{"./$":22,"./$.def":12}],76:[function(require,module,exports){
2721
+ },{"./$":22,"./$.def":12}],78:[function(require,module,exports){
2691
2722
  // https://gist.github.com/kangax/9698100
2692
2723
  var $def = require('./$.def');
2693
2724
  $def($def.S, 'RegExp', {
2694
2725
  escape: require('./$.replacer')(/([\\\-[\]{}()*+?.,^$|])/g, '\\$1', true)
2695
2726
  });
2696
- },{"./$.def":12,"./$.replacer":26}],77:[function(require,module,exports){
2727
+ },{"./$.def":12,"./$.replacer":28}],79:[function(require,module,exports){
2697
2728
  // https://github.com/DavidBruant/Map-Set.prototype.toJSON
2698
2729
  require('./$.collection-to-json')('Set');
2699
- },{"./$.collection-to-json":8}],78:[function(require,module,exports){
2730
+ },{"./$.collection-to-json":8}],80:[function(require,module,exports){
2700
2731
  // https://github.com/mathiasbynens/String.prototype.at
2701
2732
  'use strict';
2702
2733
  var $def = require('./$.def')
@@ -2706,7 +2737,7 @@ $def($def.P, 'String', {
2706
2737
  return $at(this, pos);
2707
2738
  }
2708
2739
  });
2709
- },{"./$.def":12,"./$.string-at":29}],79:[function(require,module,exports){
2740
+ },{"./$.def":12,"./$.string-at":31}],81:[function(require,module,exports){
2710
2741
  'use strict';
2711
2742
  var $def = require('./$.def')
2712
2743
  , $pad = require('./$.string-pad');
@@ -2715,7 +2746,7 @@ $def($def.P, 'String', {
2715
2746
  return $pad(this, n, arguments[1], true);
2716
2747
  }
2717
2748
  });
2718
- },{"./$.def":12,"./$.string-pad":30}],80:[function(require,module,exports){
2749
+ },{"./$.def":12,"./$.string-pad":32}],82:[function(require,module,exports){
2719
2750
  'use strict';
2720
2751
  var $def = require('./$.def')
2721
2752
  , $pad = require('./$.string-pad');
@@ -2724,7 +2755,7 @@ $def($def.P, 'String', {
2724
2755
  return $pad(this, n, arguments[1], false);
2725
2756
  }
2726
2757
  });
2727
- },{"./$.def":12,"./$.string-pad":30}],81:[function(require,module,exports){
2758
+ },{"./$.def":12,"./$.string-pad":32}],83:[function(require,module,exports){
2728
2759
  // JavaScript 1.6 / Strawman array statics shim
2729
2760
  var $ = require('./$')
2730
2761
  , $def = require('./$.def')
@@ -2741,7 +2772,7 @@ setStatics('indexOf,every,some,forEach,map,filter,find,findIndex,includes', 3);
2741
2772
  setStatics('join,slice,concat,push,splice,unshift,sort,lastIndexOf,' +
2742
2773
  'reduce,reduceRight,copyWithin,fill,turn');
2743
2774
  $def($def.S, 'Array', statics);
2744
- },{"./$":22,"./$.ctx":11,"./$.def":12}],82:[function(require,module,exports){
2775
+ },{"./$":22,"./$.ctx":11,"./$.def":12}],84:[function(require,module,exports){
2745
2776
  require('./es6.array.iterator');
2746
2777
  var $ = require('./$')
2747
2778
  , Iterators = require('./$.iter').Iterators
@@ -2752,14 +2783,14 @@ if($.FW && NodeList && !(ITERATOR in NodeList.prototype)){
2752
2783
  $.hide(NodeList.prototype, ITERATOR, ArrayValues);
2753
2784
  }
2754
2785
  Iterators.NodeList = ArrayValues;
2755
- },{"./$":22,"./$.iter":21,"./$.wks":36,"./es6.array.iterator":43}],83:[function(require,module,exports){
2786
+ },{"./$":22,"./$.iter":21,"./$.wks":38,"./es6.array.iterator":45}],85:[function(require,module,exports){
2756
2787
  var $def = require('./$.def')
2757
2788
  , $task = require('./$.task');
2758
2789
  $def($def.G + $def.B, {
2759
2790
  setImmediate: $task.set,
2760
2791
  clearImmediate: $task.clear
2761
2792
  });
2762
- },{"./$.def":12,"./$.task":32}],84:[function(require,module,exports){
2793
+ },{"./$.def":12,"./$.task":34}],86:[function(require,module,exports){
2763
2794
  // ie9- setTimeout & setInterval additional parameters fix
2764
2795
  var $ = require('./$')
2765
2796
  , $def = require('./$.def')
@@ -2780,7 +2811,7 @@ $def($def.G + $def.B + $def.F * MSIE, {
2780
2811
  setTimeout: wrap($.g.setTimeout),
2781
2812
  setInterval: wrap($.g.setInterval)
2782
2813
  });
2783
- },{"./$":22,"./$.def":12,"./$.invoke":17,"./$.partial":25}],85:[function(require,module,exports){
2814
+ },{"./$":22,"./$.def":12,"./$.invoke":17,"./$.partial":26}],87:[function(require,module,exports){
2784
2815
  require('./modules/es5');
2785
2816
  require('./modules/es6.symbol');
2786
2817
  require('./modules/es6.object.assign');
@@ -2831,7 +2862,7 @@ require('./modules/web.immediate');
2831
2862
  require('./modules/web.dom.iterable');
2832
2863
  module.exports = require('./modules/$').core;
2833
2864
 
2834
- },{"./modules/$":22,"./modules/es5":37,"./modules/es6.array.copy-within":38,"./modules/es6.array.fill":39,"./modules/es6.array.find":41,"./modules/es6.array.find-index":40,"./modules/es6.array.from":42,"./modules/es6.array.iterator":43,"./modules/es6.array.of":44,"./modules/es6.array.species":45,"./modules/es6.function.has-instance":46,"./modules/es6.function.name":47,"./modules/es6.map":48,"./modules/es6.math":49,"./modules/es6.number.constructor":50,"./modules/es6.number.statics":51,"./modules/es6.object.assign":52,"./modules/es6.object.is":53,"./modules/es6.object.set-prototype-of":54,"./modules/es6.object.statics-accept-primitives":55,"./modules/es6.object.to-string":56,"./modules/es6.promise":57,"./modules/es6.reflect":58,"./modules/es6.regexp":59,"./modules/es6.set":60,"./modules/es6.string.code-point-at":61,"./modules/es6.string.ends-with":62,"./modules/es6.string.from-code-point":63,"./modules/es6.string.includes":64,"./modules/es6.string.iterator":65,"./modules/es6.string.raw":66,"./modules/es6.string.repeat":67,"./modules/es6.string.starts-with":68,"./modules/es6.symbol":69,"./modules/es6.weak-map":70,"./modules/es6.weak-set":71,"./modules/es7.array.includes":72,"./modules/es7.map.to-json":73,"./modules/es7.object.get-own-property-descriptors":74,"./modules/es7.object.to-array":75,"./modules/es7.regexp.escape":76,"./modules/es7.set.to-json":77,"./modules/es7.string.at":78,"./modules/es7.string.lpad":79,"./modules/es7.string.rpad":80,"./modules/js.array.statics":81,"./modules/web.dom.iterable":82,"./modules/web.immediate":83,"./modules/web.timers":84}],86:[function(require,module,exports){
2865
+ },{"./modules/$":22,"./modules/es5":39,"./modules/es6.array.copy-within":40,"./modules/es6.array.fill":41,"./modules/es6.array.find":43,"./modules/es6.array.find-index":42,"./modules/es6.array.from":44,"./modules/es6.array.iterator":45,"./modules/es6.array.of":46,"./modules/es6.array.species":47,"./modules/es6.function.has-instance":48,"./modules/es6.function.name":49,"./modules/es6.map":50,"./modules/es6.math":51,"./modules/es6.number.constructor":52,"./modules/es6.number.statics":53,"./modules/es6.object.assign":54,"./modules/es6.object.is":55,"./modules/es6.object.set-prototype-of":56,"./modules/es6.object.statics-accept-primitives":57,"./modules/es6.object.to-string":58,"./modules/es6.promise":59,"./modules/es6.reflect":60,"./modules/es6.regexp":61,"./modules/es6.set":62,"./modules/es6.string.code-point-at":63,"./modules/es6.string.ends-with":64,"./modules/es6.string.from-code-point":65,"./modules/es6.string.includes":66,"./modules/es6.string.iterator":67,"./modules/es6.string.raw":68,"./modules/es6.string.repeat":69,"./modules/es6.string.starts-with":70,"./modules/es6.symbol":71,"./modules/es6.weak-map":72,"./modules/es6.weak-set":73,"./modules/es7.array.includes":74,"./modules/es7.map.to-json":75,"./modules/es7.object.get-own-property-descriptors":76,"./modules/es7.object.to-array":77,"./modules/es7.regexp.escape":78,"./modules/es7.set.to-json":79,"./modules/es7.string.at":80,"./modules/es7.string.lpad":81,"./modules/es7.string.rpad":82,"./modules/js.array.statics":83,"./modules/web.dom.iterable":84,"./modules/web.immediate":85,"./modules/web.timers":86}],88:[function(require,module,exports){
2835
2866
  (function (global){
2836
2867
  /**
2837
2868
  * Copyright (c) 2014, Facebook, Inc.