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.
Files changed (5) hide show
  1. checksums.yaml +13 -5
  2. data/lib/babel.js +1310 -1326
  3. data/lib/babel/polyfill.js +1155 -1010
  4. data/lib/babel/source.rb +2 -2
  5. metadata +5 -5
checksums.yaml CHANGED
@@ -1,7 +1,15 @@
1
1
  ---
2
- SHA1:
3
- metadata.gz: 3ca8da123e657de4ac6b2e689c15234a2d2c74c2
4
- data.tar.gz: 3e58e17a8f879f0b17f66e2704b90c76ce0552d2
2
+ !binary "U0hBMQ==":
3
+ metadata.gz: !binary |-
4
+ M2Q1MjZiOTY1ZmVhMGVhYWRkYjY2M2VkNDNlZTJkMGMwZTE4NDIxMw==
5
+ data.tar.gz: !binary |-
6
+ MTc4ZDJmY2FiYjliNTFmN2Y5M2QwMzk1NGNkYWZmOWQ3ZmRmMmEzYw==
5
7
  SHA512:
6
- metadata.gz: 0da5befaf7e46e7ca031308a68d4193b77617b903052092ac4a64f092ff7278cabf0a39b6222814f3847a7f4af871253dfb92e81b12dddaf6fa39ba258928b2c
7
- data.tar.gz: ffa68b214f289291ce2f17e42ecc5005d1b1115924b7778559fc4440da36df4600d456de725cc7ddd28cb7eefc356c4102f4e1a27d6c3c3fcd89dfa9048fdb03
8
+ metadata.gz: !binary |-
9
+ M2M2N2NkODA2OTNhZjI3NzBkYjJlNjljZTU2ODlmOTA0NzlmNGRkYWMwYTM5
10
+ Yzk2YTczYjllZWYwNjk0NzhjNGI4YzYwYmM3YzhjMmRkNGFjZWRjYTNiMDY1
11
+ MmE5Mzc1MzRiOWE2ZThhY2YzODQ5ZjNiNmVmNjQzNTdjMGQ5ZWU=
12
+ data.tar.gz: !binary |-
13
+ ZjMyNmYzNWQ4OTc4NmNmMzRjN2U3NmRiNWQ5ZTUwMjgxNjg0NjVlZTA4YjBj
14
+ NjM4MjllNTc5ZjU5ZjlkMmUyY2Q2MDk3MTQ5Mzc0YzJmNzVhNDU5OTQ2OWNi
15
+ ZWU0ZjdmZTY1OTA3NDZkNDcwYWIyZDJmYmEyYTY4NWI1YWJhZTE=
@@ -3615,6 +3615,7 @@ var Buffer = (function () {
3615
3615
 
3616
3616
  Buffer.prototype.rightBrace = function rightBrace() {
3617
3617
  this.newline(true);
3618
+ if (this.format.compact) this._removeLast(";");
3618
3619
  this.push("}");
3619
3620
  };
3620
3621
 
@@ -3645,8 +3646,11 @@ var Buffer = (function () {
3645
3646
 
3646
3647
  Buffer.prototype.removeLast = function removeLast(cha) {
3647
3648
  if (this.format.compact) return;
3648
- if (!this.isLast(cha)) return;
3649
+ return this._removeLast(cha);
3650
+ };
3649
3651
 
3652
+ Buffer.prototype._removeLast = function _removeLast(cha) {
3653
+ if (!this._isLast(cha)) return;
3650
3654
  this.buf = this.buf.substr(0, this.buf.length - 1);
3651
3655
  this.position.unshift(cha);
3652
3656
  };
@@ -3831,7 +3835,10 @@ var Buffer = (function () {
3831
3835
 
3832
3836
  Buffer.prototype.isLast = function isLast(cha) {
3833
3837
  if (this.format.compact) return false;
3838
+ return this._isLast(cha);
3839
+ };
3834
3840
 
3841
+ Buffer.prototype._isLast = function _isLast(cha) {
3835
3842
  var buf = this.buf;
3836
3843
  var last = buf[buf.length - 1];
3837
3844
 
@@ -4067,7 +4074,7 @@ function _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj;
4067
4074
 
4068
4075
  function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
4069
4076
 
4070
- var _isInteger = _dereq_(399);
4077
+ var _isInteger = _dereq_(404);
4071
4078
 
4072
4079
  var _isInteger2 = _interopRequireDefault(_isInteger);
4073
4080
 
@@ -4075,6 +4082,10 @@ var _lodashLangIsNumber = _dereq_(508);
4075
4082
 
4076
4083
  var _lodashLangIsNumber2 = _interopRequireDefault(_lodashLangIsNumber);
4077
4084
 
4085
+ var _node = _dereq_(31);
4086
+
4087
+ var _node2 = _interopRequireDefault(_node);
4088
+
4078
4089
  var _types = _dereq_(179);
4079
4090
 
4080
4091
  var t = _interopRequireWildcard(_types);
@@ -4299,7 +4310,15 @@ function AssignmentPattern(node, print) {
4299
4310
  * Prints AssignmentExpression, prints left, operator, and right.
4300
4311
  */
4301
4312
 
4302
- function AssignmentExpression(node, print) {
4313
+ function AssignmentExpression(node, print, parent) {
4314
+ // Somewhere inside a for statement `init` node but doesn't usually
4315
+ // needs a paren except for `in` expressions: `for (a in b ? a : b;;)`
4316
+ var parens = this._inForStatementInit && node.operator === "in" && !_node2["default"].needsParens(node, parent);
4317
+
4318
+ if (parens) {
4319
+ this.push("(");
4320
+ }
4321
+
4303
4322
  // todo: add cases where the spaces can be dropped when in compact mode
4304
4323
  print.plain(node.left);
4305
4324
 
@@ -4318,6 +4337,10 @@ function AssignmentExpression(node, print) {
4318
4337
  this.space(spaces);
4319
4338
 
4320
4339
  print.plain(node.right);
4340
+
4341
+ if (parens) {
4342
+ this.push(")");
4343
+ }
4321
4344
  }
4322
4345
 
4323
4346
  /**
@@ -4381,7 +4404,7 @@ function MetaProperty(node, print) {
4381
4404
  this.push(".");
4382
4405
  print.plain(node.property);
4383
4406
  }
4384
- },{"179":179,"399":399,"508":508}],23:[function(_dereq_,module,exports){
4407
+ },{"179":179,"31":31,"404":404,"508":508}],23:[function(_dereq_,module,exports){
4385
4408
  "use strict";
4386
4409
 
4387
4410
  exports.__esModule = true;
@@ -5348,7 +5371,9 @@ function ForStatement(node, print) {
5348
5371
  this.keyword("for");
5349
5372
  this.push("(");
5350
5373
 
5374
+ this._inForStatementInit = true;
5351
5375
  print.plain(node.init);
5376
+ this._inForStatementInit = false;
5352
5377
  this.push(";");
5353
5378
 
5354
5379
  if (node.test) {
@@ -5757,7 +5782,7 @@ function Property(node, print) {
5757
5782
  print.plain(node.key);
5758
5783
 
5759
5784
  // shorthand!
5760
- if (node.shorthand && (t.isIdentifier(node.key) && t.isIdentifier(node.value) && node.key.name === node.value.name)) {
5785
+ if (node.shorthand && t.isIdentifier(node.key) && t.isIdentifier(node.value) && node.key.name === node.value.name) {
5761
5786
  return;
5762
5787
  }
5763
5788
  }
@@ -5892,7 +5917,7 @@ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "d
5892
5917
 
5893
5918
  function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
5894
5919
 
5895
- var _detectIndent = _dereq_(392);
5920
+ var _detectIndent = _dereq_(397);
5896
5921
 
5897
5922
  var _detectIndent2 = _interopRequireDefault(_detectIndent);
5898
5923
 
@@ -6420,7 +6445,7 @@ module.exports = function (ast, opts, code) {
6420
6445
  };
6421
6446
 
6422
6447
  module.exports.CodeGenerator = CodeGenerator;
6423
- },{"179":179,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"26":26,"27":27,"28":28,"29":29,"31":31,"33":33,"35":35,"36":36,"37":37,"392":392,"417":417,"43":43,"517":517,"590":590}],31:[function(_dereq_,module,exports){
6448
+ },{"179":179,"18":18,"19":19,"20":20,"21":21,"22":22,"23":23,"24":24,"25":25,"26":26,"27":27,"28":28,"29":29,"31":31,"33":33,"35":35,"36":36,"37":37,"397":397,"417":417,"43":43,"517":517,"590":590}],31:[function(_dereq_,module,exports){
6424
6449
  "use strict";
6425
6450
 
6426
6451
  exports.__esModule = true;
@@ -6706,7 +6731,8 @@ function Binary(node, parent) {
6706
6731
  return true;
6707
6732
  }
6708
6733
 
6709
- if (parentPos === nodePos && parent.right === node) {
6734
+ // Logical expressions with the same precedence don't need parens.
6735
+ if (parentPos === nodePos && parent.right === node && !t.isLogicalExpression(parent)) {
6710
6736
  return true;
6711
6737
  }
6712
6738
  }
@@ -6747,6 +6773,10 @@ function SequenceExpression(node, parent) {
6747
6773
  return false;
6748
6774
  }
6749
6775
 
6776
+ if (t.isReturnStatement(parent)) {
6777
+ return false;
6778
+ }
6779
+
6750
6780
  // Otherwise err on the side of overparenthesization, adding
6751
6781
  // explicit exceptions above if this proves overzealous.
6752
6782
  return true;
@@ -7493,7 +7523,7 @@ var _jsTokens = _dereq_(407);
7493
7523
 
7494
7524
  var _jsTokens2 = _interopRequireDefault(_jsTokens);
7495
7525
 
7496
- var _esutils = _dereq_(396);
7526
+ var _esutils = _dereq_(401);
7497
7527
 
7498
7528
  var _esutils2 = _interopRequireDefault(_esutils);
7499
7529
 
@@ -7620,7 +7650,7 @@ exports["default"] = function (lines, lineNumber, colNumber) {
7620
7650
  };
7621
7651
 
7622
7652
  module.exports = exports["default"];
7623
- },{"200":200,"396":396,"407":407,"409":409,"590":590}],39:[function(_dereq_,module,exports){
7653
+ },{"200":200,"401":401,"407":407,"409":409,"590":590}],39:[function(_dereq_,module,exports){
7624
7654
  "use strict";
7625
7655
 
7626
7656
  exports.__esModule = true;
@@ -7852,7 +7882,7 @@ function parseArgs(args) {
7852
7882
  (function (global){
7853
7883
  "use strict";
7854
7884
 
7855
- _dereq_(388);
7885
+ _dereq_(393);
7856
7886
 
7857
7887
  _dereq_(583);
7858
7888
 
@@ -7861,7 +7891,7 @@ if (global._babelPolyfill) {
7861
7891
  }
7862
7892
  global._babelPolyfill = true;
7863
7893
  }).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
7864
- },{"388":388,"583":583}],45:[function(_dereq_,module,exports){
7894
+ },{"393":393,"583":583}],45:[function(_dereq_,module,exports){
7865
7895
  "use strict";
7866
7896
 
7867
7897
  exports.__esModule = true;
@@ -8853,7 +8883,7 @@ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "d
8853
8883
 
8854
8884
  function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
8855
8885
 
8856
- var _debugNode = _dereq_(390);
8886
+ var _debugNode = _dereq_(395);
8857
8887
 
8858
8888
  var _debugNode2 = _interopRequireDefault(_debugNode);
8859
8889
 
@@ -8949,7 +8979,7 @@ var Logger = (function () {
8949
8979
 
8950
8980
  exports["default"] = Logger;
8951
8981
  module.exports = exports["default"];
8952
- },{"390":390}],48:[function(_dereq_,module,exports){
8982
+ },{"395":395}],48:[function(_dereq_,module,exports){
8953
8983
  module.exports={
8954
8984
  "filename": {
8955
8985
  "type": "filename",
@@ -9991,7 +10021,7 @@ var _messages = _dereq_(43);
9991
10021
 
9992
10022
  var messages = _interopRequireWildcard(_messages);
9993
10023
 
9994
- var _esutils = _dereq_(396);
10024
+ var _esutils = _dereq_(401);
9995
10025
 
9996
10026
  var _esutils2 = _interopRequireDefault(_esutils);
9997
10027
 
@@ -10182,7 +10212,7 @@ exports["default"] = function (opts) {
10182
10212
  };
10183
10213
 
10184
10214
  module.exports = exports["default"];
10185
- },{"179":179,"396":396,"43":43,"512":512,"62":62}],56:[function(_dereq_,module,exports){
10215
+ },{"179":179,"401":401,"43":43,"512":512,"62":62}],56:[function(_dereq_,module,exports){
10186
10216
  "use strict";
10187
10217
 
10188
10218
  exports.__esModule = true;
@@ -24450,7 +24480,7 @@ var _binding = _dereq_(166);
24450
24480
 
24451
24481
  var _binding2 = _interopRequireDefault(_binding);
24452
24482
 
24453
- var _globals = _dereq_(398);
24483
+ var _globals = _dereq_(403);
24454
24484
 
24455
24485
  var _globals2 = _interopRequireDefault(_globals);
24456
24486
 
@@ -25565,7 +25595,7 @@ var Scope = (function () {
25565
25595
 
25566
25596
  exports["default"] = Scope;
25567
25597
  module.exports = exports["default"];
25568
- },{"148":148,"166":166,"179":179,"398":398,"41":41,"412":412,"419":419,"43":43,"516":516,"517":517,"590":590}],168:[function(_dereq_,module,exports){
25598
+ },{"148":148,"166":166,"179":179,"403":403,"41":41,"412":412,"419":419,"43":43,"516":516,"517":517,"590":590}],168:[function(_dereq_,module,exports){
25569
25599
  "use strict";
25570
25600
 
25571
25601
  exports.__esModule = true;
@@ -27601,7 +27631,7 @@ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "d
27601
27631
 
27602
27632
  var _retrievers = _dereq_(180);
27603
27633
 
27604
- var _esutils = _dereq_(396);
27634
+ var _esutils = _dereq_(401);
27605
27635
 
27606
27636
  var _esutils2 = _interopRequireDefault(_esutils);
27607
27637
 
@@ -27835,7 +27865,7 @@ function isImmutable(node) {
27835
27865
 
27836
27866
  return false;
27837
27867
  }
27838
- },{"179":179,"180":180,"396":396}],182:[function(_dereq_,module,exports){
27868
+ },{"179":179,"180":180,"401":401}],182:[function(_dereq_,module,exports){
27839
27869
  (function (__dirname){
27840
27870
  "use strict";
27841
27871
 
@@ -28643,8 +28673,8 @@ exports["default"] = function (_ref) {
28643
28673
  var left = node.left.object;
28644
28674
  var temp = scope.maybeGenerateMemoised(left);
28645
28675
 
28646
- nodes.push(t.expressionStatement(t.assignmentExpression("=", temp, left)));
28647
- nodes.push(buildDefaultsCallExpression(node, temp, file));
28676
+ if (temp) nodes.push(t.expressionStatement(t.assignmentExpression("=", temp, left)));
28677
+ nodes.push(buildDefaultsCallExpression(node, temp || left, file));
28648
28678
  if (temp) nodes.push(temp);
28649
28679
 
28650
28680
  return nodes;
@@ -29354,7 +29384,7 @@ var styles = (function () {
29354
29384
  var proto = defineProps(function chalk() {}, styles);
29355
29385
 
29356
29386
  function build(_styles) {
29357
- var builder = function builder() {
29387
+ var builder = function () {
29358
29388
  return applyStyle.apply(builder, arguments);
29359
29389
  };
29360
29390
 
@@ -29362,7 +29392,7 @@ function build(_styles) {
29362
29392
  builder.enabled = this.enabled;
29363
29393
  // __proto__ is used because we must return a function, but there is
29364
29394
  // no way to create a function with a different prototype.
29365
- /*eslint no-proto: 0 */
29395
+ /* eslint-disable no-proto */
29366
29396
  builder.__proto__ = proto;
29367
29397
 
29368
29398
  return builder;
@@ -29752,17 +29782,62 @@ module.exports = function(it){
29752
29782
  return it;
29753
29783
  };
29754
29784
  },{}],210:[function(_dereq_,module,exports){
29755
- var isObject = _dereq_(240);
29785
+ var isObject = _dereq_(244);
29756
29786
  module.exports = function(it){
29757
29787
  if(!isObject(it))throw TypeError(it + ' is not an object!');
29758
29788
  return it;
29759
29789
  };
29760
- },{"240":240}],211:[function(_dereq_,module,exports){
29790
+ },{"244":244}],211:[function(_dereq_,module,exports){
29791
+ // 22.1.3.3 Array.prototype.copyWithin(target, start, end = this.length)
29792
+ 'use strict';
29793
+ var toObject = _dereq_(285)
29794
+ , toIndex = _dereq_(281)
29795
+ , toLength = _dereq_(284);
29796
+
29797
+ module.exports = [].copyWithin || function copyWithin(target/*= 0*/, start/*= 0, end = @length*/){
29798
+ var O = toObject(this)
29799
+ , len = toLength(O.length)
29800
+ , to = toIndex(target, len)
29801
+ , from = toIndex(start, len)
29802
+ , $$ = arguments
29803
+ , end = $$.length > 2 ? $$[2] : undefined
29804
+ , count = Math.min((end === undefined ? len : toIndex(end, len)) - from, len - to)
29805
+ , inc = 1;
29806
+ if(from < to && to < from + count){
29807
+ inc = -1;
29808
+ from += count - 1;
29809
+ to += count - 1;
29810
+ }
29811
+ while(count-- > 0){
29812
+ if(from in O)O[to] = O[from];
29813
+ else delete O[to];
29814
+ to += inc;
29815
+ from += inc;
29816
+ } return O;
29817
+ };
29818
+ },{"281":281,"284":284,"285":285}],212:[function(_dereq_,module,exports){
29819
+ // 22.1.3.6 Array.prototype.fill(value, start = 0, end = this.length)
29820
+ 'use strict';
29821
+ var toObject = _dereq_(285)
29822
+ , toIndex = _dereq_(281)
29823
+ , toLength = _dereq_(284);
29824
+ module.exports = [].fill || function fill(value /*, start = 0, end = @length */){
29825
+ var O = toObject(this, true)
29826
+ , length = toLength(O.length)
29827
+ , $$ = arguments
29828
+ , $$len = $$.length
29829
+ , index = toIndex($$len > 1 ? $$[1] : undefined, length)
29830
+ , end = $$len > 2 ? $$[2] : undefined
29831
+ , endPos = end === undefined ? length : toIndex(end, length);
29832
+ while(endPos > index)O[index++] = value;
29833
+ return O;
29834
+ };
29835
+ },{"281":281,"284":284,"285":285}],213:[function(_dereq_,module,exports){
29761
29836
  // false -> Array#indexOf
29762
29837
  // true -> Array#includes
29763
- var toIObject = _dereq_(278)
29764
- , toLength = _dereq_(279)
29765
- , toIndex = _dereq_(276);
29838
+ var toIObject = _dereq_(283)
29839
+ , toLength = _dereq_(284)
29840
+ , toIndex = _dereq_(281);
29766
29841
  module.exports = function(IS_INCLUDES){
29767
29842
  return function($this, el, fromIndex){
29768
29843
  var O = toIObject($this)
@@ -29779,7 +29854,7 @@ module.exports = function(IS_INCLUDES){
29779
29854
  } return !IS_INCLUDES && -1;
29780
29855
  };
29781
29856
  };
29782
- },{"276":276,"278":278,"279":279}],212:[function(_dereq_,module,exports){
29857
+ },{"281":281,"283":283,"284":284}],214:[function(_dereq_,module,exports){
29783
29858
  // 0 -> Array#forEach
29784
29859
  // 1 -> Array#map
29785
29860
  // 2 -> Array#filter
@@ -29787,10 +29862,21 @@ module.exports = function(IS_INCLUDES){
29787
29862
  // 4 -> Array#every
29788
29863
  // 5 -> Array#find
29789
29864
  // 6 -> Array#findIndex
29790
- var ctx = _dereq_(221)
29791
- , IObject = _dereq_(237)
29792
- , toObject = _dereq_(280)
29793
- , toLength = _dereq_(279);
29865
+ var ctx = _dereq_(223)
29866
+ , isObject = _dereq_(244)
29867
+ , IObject = _dereq_(240)
29868
+ , toObject = _dereq_(285)
29869
+ , toLength = _dereq_(284)
29870
+ , isArray = _dereq_(242)
29871
+ , SPECIES = _dereq_(288)('species');
29872
+ // 9.4.2.3 ArraySpeciesCreate(originalArray, length)
29873
+ var ASC = function(original, length){
29874
+ var C;
29875
+ if(isArray(original) && isObject(C = original.constructor)){
29876
+ C = C[SPECIES];
29877
+ if(C === null)C = undefined;
29878
+ } return new (C === undefined ? Array : C)(length);
29879
+ };
29794
29880
  module.exports = function(TYPE){
29795
29881
  var IS_MAP = TYPE == 1
29796
29882
  , IS_FILTER = TYPE == 2
@@ -29804,7 +29890,7 @@ module.exports = function(TYPE){
29804
29890
  , f = ctx(callbackfn, that, 3)
29805
29891
  , length = toLength(self.length)
29806
29892
  , index = 0
29807
- , result = IS_MAP ? Array(length) : IS_FILTER ? [] : undefined
29893
+ , result = IS_MAP ? ASC($this, length) : IS_FILTER ? ASC($this, 0) : undefined
29808
29894
  , val, res;
29809
29895
  for(;length > index; index++)if(NO_HOLES || index in self){
29810
29896
  val = self[index];
@@ -29822,31 +29908,44 @@ module.exports = function(TYPE){
29822
29908
  return IS_FIND_INDEX ? -1 : IS_SOME || IS_EVERY ? IS_EVERY : result;
29823
29909
  };
29824
29910
  };
29825
- },{"221":221,"237":237,"279":279,"280":280}],213:[function(_dereq_,module,exports){
29911
+ },{"223":223,"240":240,"242":242,"244":244,"284":284,"285":285,"288":288}],215:[function(_dereq_,module,exports){
29826
29912
  // 19.1.2.1 Object.assign(target, source, ...)
29827
- var toObject = _dereq_(280)
29828
- , IObject = _dereq_(237)
29829
- , enumKeys = _dereq_(225);
29830
- /* eslint-disable no-unused-vars */
29831
- module.exports = Object.assign || function assign(target, source){
29832
- /* eslint-enable no-unused-vars */
29833
- var T = toObject(target)
29834
- , l = arguments.length
29835
- , i = 1;
29836
- while(l > i){
29837
- var S = IObject(arguments[i++])
29838
- , keys = enumKeys(S)
29913
+ var $ = _dereq_(252)
29914
+ , toObject = _dereq_(285)
29915
+ , IObject = _dereq_(240);
29916
+
29917
+ // should work with symbols and should have deterministic property order (V8 bug)
29918
+ module.exports = _dereq_(230)(function(){
29919
+ var a = Object.assign
29920
+ , A = {}
29921
+ , B = {}
29922
+ , S = Symbol()
29923
+ , K = 'abcdefghijklmnopqrst';
29924
+ A[S] = 7;
29925
+ K.split('').forEach(function(k){ B[k] = k; });
29926
+ return a({}, A)[S] != 7 || Object.keys(a({}, B)).join('') != K;
29927
+ }) ? function assign(target, source){ // eslint-disable-line no-unused-vars
29928
+ var T = toObject(target)
29929
+ , $$ = arguments
29930
+ , $$len = $$.length
29931
+ , index = 1
29932
+ , getKeys = $.getKeys
29933
+ , getSymbols = $.getSymbols
29934
+ , isEnum = $.isEnum;
29935
+ while($$len > index){
29936
+ var S = IObject($$[index++])
29937
+ , keys = getSymbols ? getKeys(S).concat(getSymbols(S)) : getKeys(S)
29839
29938
  , length = keys.length
29840
29939
  , j = 0
29841
29940
  , key;
29842
- while(length > j)T[key = keys[j++]] = S[key];
29941
+ while(length > j)if(isEnum.call(S, key = keys[j++]))T[key] = S[key];
29843
29942
  }
29844
29943
  return T;
29845
- };
29846
- },{"225":225,"237":237,"280":280}],214:[function(_dereq_,module,exports){
29944
+ } : Object.assign;
29945
+ },{"230":230,"240":240,"252":252,"285":285}],216:[function(_dereq_,module,exports){
29847
29946
  // getting tag from 19.1.3.6 Object.prototype.toString()
29848
- var cof = _dereq_(215)
29849
- , TAG = _dereq_(283)('toStringTag')
29947
+ var cof = _dereq_(217)
29948
+ , TAG = _dereq_(288)('toStringTag')
29850
29949
  // ES3 wrong here
29851
29950
  , ARG = cof(function(){ return arguments; }()) == 'Arguments';
29852
29951
 
@@ -29860,27 +29959,27 @@ module.exports = function(it){
29860
29959
  // ES3 arguments fallback
29861
29960
  : (B = cof(O)) == 'Object' && typeof O.callee == 'function' ? 'Arguments' : B;
29862
29961
  };
29863
- },{"215":215,"283":283}],215:[function(_dereq_,module,exports){
29962
+ },{"217":217,"288":288}],217:[function(_dereq_,module,exports){
29864
29963
  var toString = {}.toString;
29865
29964
 
29866
29965
  module.exports = function(it){
29867
29966
  return toString.call(it).slice(8, -1);
29868
29967
  };
29869
- },{}],216:[function(_dereq_,module,exports){
29968
+ },{}],218:[function(_dereq_,module,exports){
29870
29969
  'use strict';
29871
- var $ = _dereq_(248)
29872
- , hide = _dereq_(234)
29873
- , ctx = _dereq_(221)
29874
- , species = _dereq_(266)
29875
- , strictNew = _dereq_(267)
29876
- , defined = _dereq_(223)
29877
- , forOf = _dereq_(230)
29878
- , step = _dereq_(246)
29879
- , ID = _dereq_(281)('id')
29880
- , $has = _dereq_(233)
29881
- , isObject = _dereq_(240)
29970
+ var $ = _dereq_(252)
29971
+ , hide = _dereq_(237)
29972
+ , ctx = _dereq_(223)
29973
+ , species = _dereq_(271)
29974
+ , strictNew = _dereq_(272)
29975
+ , defined = _dereq_(225)
29976
+ , forOf = _dereq_(233)
29977
+ , step = _dereq_(250)
29978
+ , ID = _dereq_(286)('id')
29979
+ , $has = _dereq_(236)
29980
+ , isObject = _dereq_(244)
29882
29981
  , isExtensible = Object.isExtensible || isObject
29883
- , SUPPORT_DESC = _dereq_(273)
29982
+ , SUPPORT_DESC = _dereq_(278)
29884
29983
  , SIZE = SUPPORT_DESC ? '_s' : 'size'
29885
29984
  , id = 0;
29886
29985
 
@@ -29918,7 +30017,7 @@ module.exports = {
29918
30017
  that[SIZE] = 0; // size
29919
30018
  if(iterable != undefined)forOf(iterable, IS_MAP, that[ADDER], that);
29920
30019
  });
29921
- _dereq_(253)(C.prototype, {
30020
+ _dereq_(257)(C.prototype, {
29922
30021
  // 23.1.3.1 Map.prototype.clear()
29923
30022
  // 23.2.3.2 Set.prototype.clear()
29924
30023
  clear: function clear(){
@@ -29950,7 +30049,7 @@ module.exports = {
29950
30049
  // 23.2.3.6 Set.prototype.forEach(callbackfn, thisArg = undefined)
29951
30050
  // 23.1.3.5 Map.prototype.forEach(callbackfn, thisArg = undefined)
29952
30051
  forEach: function forEach(callbackfn /*, that = undefined */){
29953
- var f = ctx(callbackfn, arguments[1], 3)
30052
+ var f = ctx(callbackfn, arguments.length > 1 ? arguments[1] : undefined, 3)
29954
30053
  , entry;
29955
30054
  while(entry = entry ? entry.n : this._f){
29956
30055
  f(entry.v, entry.k, this);
@@ -29998,7 +30097,7 @@ module.exports = {
29998
30097
  setStrong: function(C, NAME, IS_MAP){
29999
30098
  // add .keys, .values, .entries, [@@iterator]
30000
30099
  // 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
30001
- _dereq_(244)(C, NAME, function(iterated, kind){
30100
+ _dereq_(248)(C, NAME, function(iterated, kind){
30002
30101
  this._t = iterated; // target
30003
30102
  this._k = kind; // kind
30004
30103
  this._l = undefined; // previous
@@ -30022,13 +30121,13 @@ module.exports = {
30022
30121
 
30023
30122
  // add [@@species], 23.1.2.2, 23.2.2.2
30024
30123
  species(C);
30025
- species(_dereq_(220)[NAME]); // for wrapper
30124
+ species(_dereq_(222)[NAME]); // for wrapper
30026
30125
  }
30027
30126
  };
30028
- },{"220":220,"221":221,"223":223,"230":230,"233":233,"234":234,"240":240,"244":244,"246":246,"248":248,"253":253,"266":266,"267":267,"273":273,"281":281}],217:[function(_dereq_,module,exports){
30127
+ },{"222":222,"223":223,"225":225,"233":233,"236":236,"237":237,"244":244,"248":248,"250":250,"252":252,"257":257,"271":271,"272":272,"278":278,"286":286}],219:[function(_dereq_,module,exports){
30029
30128
  // https://github.com/DavidBruant/Map-Set.prototype.toJSON
30030
- var forOf = _dereq_(230)
30031
- , classof = _dereq_(214);
30129
+ var forOf = _dereq_(233)
30130
+ , classof = _dereq_(216);
30032
30131
  module.exports = function(NAME){
30033
30132
  return function toJSON(){
30034
30133
  if(classof(this) != NAME)throw TypeError(NAME + "#toJSON isn't generic");
@@ -30037,16 +30136,16 @@ module.exports = function(NAME){
30037
30136
  return arr;
30038
30137
  };
30039
30138
  };
30040
- },{"214":214,"230":230}],218:[function(_dereq_,module,exports){
30139
+ },{"216":216,"233":233}],220:[function(_dereq_,module,exports){
30041
30140
  'use strict';
30042
- var hide = _dereq_(234)
30141
+ var hide = _dereq_(237)
30043
30142
  , anObject = _dereq_(210)
30044
- , strictNew = _dereq_(267)
30045
- , forOf = _dereq_(230)
30046
- , method = _dereq_(212)
30047
- , WEAK = _dereq_(281)('weak')
30048
- , isObject = _dereq_(240)
30049
- , $has = _dereq_(233)
30143
+ , strictNew = _dereq_(272)
30144
+ , forOf = _dereq_(233)
30145
+ , method = _dereq_(214)
30146
+ , WEAK = _dereq_(286)('weak')
30147
+ , isObject = _dereq_(244)
30148
+ , $has = _dereq_(236)
30050
30149
  , isExtensible = Object.isExtensible || isObject
30051
30150
  , find = method(5)
30052
30151
  , findIndex = method(6)
@@ -30094,7 +30193,7 @@ module.exports = {
30094
30193
  that._l = undefined; // leak store for frozen objects
30095
30194
  if(iterable != undefined)forOf(iterable, IS_MAP, that[ADDER], that);
30096
30195
  });
30097
- _dereq_(253)(C.prototype, {
30196
+ _dereq_(257)(C.prototype, {
30098
30197
  // 23.3.3.2 WeakMap.prototype.delete(key)
30099
30198
  // 23.4.3.3 WeakSet.prototype.delete(value)
30100
30199
  'delete': function(key){
@@ -30123,13 +30222,12 @@ module.exports = {
30123
30222
  frozenStore: frozenStore,
30124
30223
  WEAK: WEAK
30125
30224
  };
30126
- },{"210":210,"212":212,"230":230,"233":233,"234":234,"240":240,"253":253,"267":267,"281":281}],219:[function(_dereq_,module,exports){
30225
+ },{"210":210,"214":214,"233":233,"236":236,"237":237,"244":244,"257":257,"272":272,"286":286}],221:[function(_dereq_,module,exports){
30127
30226
  'use strict';
30128
- var global = _dereq_(232)
30129
- , $def = _dereq_(222)
30130
- , BUGGY = _dereq_(241)
30131
- , forOf = _dereq_(230)
30132
- , strictNew = _dereq_(267);
30227
+ var global = _dereq_(235)
30228
+ , $def = _dereq_(224)
30229
+ , forOf = _dereq_(233)
30230
+ , strictNew = _dereq_(272);
30133
30231
 
30134
30232
  module.exports = function(NAME, wrapper, methods, common, IS_MAP, IS_WEAK){
30135
30233
  var Base = global[NAME]
@@ -30139,7 +30237,7 @@ module.exports = function(NAME, wrapper, methods, common, IS_MAP, IS_WEAK){
30139
30237
  , O = {};
30140
30238
  var fixMethod = function(KEY){
30141
30239
  var fn = proto[KEY];
30142
- _dereq_(260)(proto, KEY,
30240
+ _dereq_(264)(proto, KEY,
30143
30241
  KEY == 'delete' ? function(a){ return fn.call(this, a === 0 ? 0 : a); }
30144
30242
  : KEY == 'has' ? function has(a){ return fn.call(this, a === 0 ? 0 : a); }
30145
30243
  : KEY == 'get' ? function get(a){ return fn.call(this, a === 0 ? 0 : a); }
@@ -30147,16 +30245,18 @@ module.exports = function(NAME, wrapper, methods, common, IS_MAP, IS_WEAK){
30147
30245
  : function set(a, b){ fn.call(this, a === 0 ? 0 : a, b); return this; }
30148
30246
  );
30149
30247
  };
30150
- if(typeof C != 'function' || !(IS_WEAK || !BUGGY && proto.forEach && proto.entries)){
30248
+ if(typeof C != 'function' || !(IS_WEAK || proto.forEach && !_dereq_(230)(function(){
30249
+ new C().entries().next();
30250
+ }))){
30151
30251
  // create collection constructor
30152
30252
  C = common.getConstructor(wrapper, NAME, IS_MAP, ADDER);
30153
- _dereq_(253)(C.prototype, methods);
30253
+ _dereq_(257)(C.prototype, methods);
30154
30254
  } else {
30155
30255
  var inst = new C
30156
30256
  , chain = inst[ADDER](IS_WEAK ? {} : -0, 1)
30157
30257
  , buggyZero;
30158
30258
  // wrap for init collections from iterable
30159
- if(!_dereq_(245)(function(iter){ new C(iter); })){ // eslint-disable-line no-new
30259
+ if(!_dereq_(249)(function(iter){ new C(iter); })){ // eslint-disable-line no-new
30160
30260
  C = wrapper(function(target, iterable){
30161
30261
  strictNew(target, C, NAME);
30162
30262
  var that = new Base;
@@ -30181,7 +30281,7 @@ module.exports = function(NAME, wrapper, methods, common, IS_MAP, IS_WEAK){
30181
30281
  if(IS_WEAK && proto.clear)delete proto.clear;
30182
30282
  }
30183
30283
 
30184
- _dereq_(274)(C, NAME);
30284
+ _dereq_(279)(C, NAME);
30185
30285
 
30186
30286
  O[NAME] = C;
30187
30287
  $def($def.G + $def.W + $def.F * (C != Base), O);
@@ -30190,10 +30290,10 @@ module.exports = function(NAME, wrapper, methods, common, IS_MAP, IS_WEAK){
30190
30290
 
30191
30291
  return C;
30192
30292
  };
30193
- },{"222":222,"230":230,"232":232,"241":241,"245":245,"253":253,"260":260,"267":267,"274":274}],220:[function(_dereq_,module,exports){
30194
- var core = module.exports = {};
30293
+ },{"224":224,"230":230,"233":233,"235":235,"249":249,"257":257,"264":264,"272":272,"279":279}],222:[function(_dereq_,module,exports){
30294
+ var core = module.exports = {version: '1.2.3'};
30195
30295
  if(typeof __e == 'number')__e = core; // eslint-disable-line no-undef
30196
- },{}],221:[function(_dereq_,module,exports){
30296
+ },{}],223:[function(_dereq_,module,exports){
30197
30297
  // optional / simple context binding
30198
30298
  var aFunction = _dereq_(209);
30199
30299
  module.exports = function(fn, that, length){
@@ -30209,15 +30309,16 @@ module.exports = function(fn, that, length){
30209
30309
  case 3: return function(a, b, c){
30210
30310
  return fn.call(that, a, b, c);
30211
30311
  };
30212
- } return function(/* ...args */){
30213
- return fn.apply(that, arguments);
30214
- };
30312
+ }
30313
+ return function(/* ...args */){
30314
+ return fn.apply(that, arguments);
30315
+ };
30215
30316
  };
30216
- },{"209":209}],222:[function(_dereq_,module,exports){
30217
- var global = _dereq_(232)
30218
- , core = _dereq_(220)
30219
- , hide = _dereq_(234)
30220
- , $redef = _dereq_(260)
30317
+ },{"209":209}],224:[function(_dereq_,module,exports){
30318
+ var global = _dereq_(235)
30319
+ , core = _dereq_(222)
30320
+ , hide = _dereq_(237)
30321
+ , $redef = _dereq_(264)
30221
30322
  , PROTOTYPE = 'prototype';
30222
30323
  var ctx = function(fn, that){
30223
30324
  return function(){
@@ -30256,23 +30357,23 @@ $def.P = 8; // proto
30256
30357
  $def.B = 16; // bind
30257
30358
  $def.W = 32; // wrap
30258
30359
  module.exports = $def;
30259
- },{"220":220,"232":232,"234":234,"260":260}],223:[function(_dereq_,module,exports){
30360
+ },{"222":222,"235":235,"237":237,"264":264}],225:[function(_dereq_,module,exports){
30260
30361
  // 7.2.1 RequireObjectCoercible(argument)
30261
30362
  module.exports = function(it){
30262
30363
  if(it == undefined)throw TypeError("Can't call method on " + it);
30263
30364
  return it;
30264
30365
  };
30265
- },{}],224:[function(_dereq_,module,exports){
30266
- var isObject = _dereq_(240)
30267
- , document = _dereq_(232).document
30366
+ },{}],226:[function(_dereq_,module,exports){
30367
+ var isObject = _dereq_(244)
30368
+ , document = _dereq_(235).document
30268
30369
  // in old IE typeof document.createElement is 'object'
30269
30370
  , is = isObject(document) && isObject(document.createElement);
30270
30371
  module.exports = function(it){
30271
30372
  return is ? document.createElement(it) : {};
30272
30373
  };
30273
- },{"232":232,"240":240}],225:[function(_dereq_,module,exports){
30374
+ },{"235":235,"244":244}],227:[function(_dereq_,module,exports){
30274
30375
  // all enumerable object keys, includes symbols
30275
- var $ = _dereq_(248);
30376
+ var $ = _dereq_(252);
30276
30377
  module.exports = function(it){
30277
30378
  var keys = $.getKeys(it)
30278
30379
  , getSymbols = $.getSymbols;
@@ -30285,12 +30386,24 @@ module.exports = function(it){
30285
30386
  }
30286
30387
  return keys;
30287
30388
  };
30288
- },{"248":248}],226:[function(_dereq_,module,exports){
30389
+ },{"252":252}],228:[function(_dereq_,module,exports){
30289
30390
  // 20.2.2.14 Math.expm1(x)
30290
30391
  module.exports = Math.expm1 || function expm1(x){
30291
30392
  return (x = +x) == 0 ? x : x > -1e-6 && x < 1e-6 ? x + x * x / 2 : Math.exp(x) - 1;
30292
30393
  };
30293
- },{}],227:[function(_dereq_,module,exports){
30394
+ },{}],229:[function(_dereq_,module,exports){
30395
+ module.exports = function(KEY){
30396
+ var re = /./;
30397
+ try {
30398
+ '/./'[KEY](re);
30399
+ } catch(e){
30400
+ try {
30401
+ re[_dereq_(288)('match')] = false;
30402
+ return !'/./'[KEY](re);
30403
+ } catch(f){ /* empty */ }
30404
+ } return true;
30405
+ };
30406
+ },{"288":288}],230:[function(_dereq_,module,exports){
30294
30407
  module.exports = function(exec){
30295
30408
  try {
30296
30409
  return !!exec();
@@ -30298,19 +30411,19 @@ module.exports = function(exec){
30298
30411
  return true;
30299
30412
  }
30300
30413
  };
30301
- },{}],228:[function(_dereq_,module,exports){
30414
+ },{}],231:[function(_dereq_,module,exports){
30302
30415
  'use strict';
30303
30416
  module.exports = function(KEY, length, exec){
30304
- var defined = _dereq_(223)
30305
- , SYMBOL = _dereq_(283)(KEY)
30417
+ var defined = _dereq_(225)
30418
+ , SYMBOL = _dereq_(288)(KEY)
30306
30419
  , original = ''[KEY];
30307
- if(_dereq_(227)(function(){
30420
+ if(_dereq_(230)(function(){
30308
30421
  var O = {};
30309
30422
  O[SYMBOL] = function(){ return 7; };
30310
30423
  return ''[KEY](O) != 7;
30311
30424
  })){
30312
- _dereq_(260)(String.prototype, KEY, exec(defined, SYMBOL, original));
30313
- _dereq_(234)(RegExp.prototype, SYMBOL, length == 2
30425
+ _dereq_(264)(String.prototype, KEY, exec(defined, SYMBOL, original));
30426
+ _dereq_(237)(RegExp.prototype, SYMBOL, length == 2
30314
30427
  // 21.2.5.8 RegExp.prototype[@@replace](string, replaceValue)
30315
30428
  // 21.2.5.11 RegExp.prototype[@@split](string, limit)
30316
30429
  ? function(string, arg){ return original.call(string, this, arg); }
@@ -30320,7 +30433,7 @@ module.exports = function(KEY, length, exec){
30320
30433
  );
30321
30434
  }
30322
30435
  };
30323
- },{"223":223,"227":227,"234":234,"260":260,"283":283}],229:[function(_dereq_,module,exports){
30436
+ },{"225":225,"230":230,"237":237,"264":264,"288":288}],232:[function(_dereq_,module,exports){
30324
30437
  'use strict';
30325
30438
  // 21.2.5.3 get RegExp.prototype.flags
30326
30439
  var anObject = _dereq_(210);
@@ -30334,13 +30447,13 @@ module.exports = function(){
30334
30447
  if(that.sticky)result += 'y';
30335
30448
  return result;
30336
30449
  };
30337
- },{"210":210}],230:[function(_dereq_,module,exports){
30338
- var ctx = _dereq_(221)
30339
- , call = _dereq_(242)
30340
- , isArrayIter = _dereq_(238)
30450
+ },{"210":210}],233:[function(_dereq_,module,exports){
30451
+ var ctx = _dereq_(223)
30452
+ , call = _dereq_(246)
30453
+ , isArrayIter = _dereq_(241)
30341
30454
  , anObject = _dereq_(210)
30342
- , toLength = _dereq_(279)
30343
- , getIterFn = _dereq_(284);
30455
+ , toLength = _dereq_(284)
30456
+ , getIterFn = _dereq_(289);
30344
30457
  module.exports = function(iterable, entries, fn, that){
30345
30458
  var iterFn = getIterFn(iterable)
30346
30459
  , f = ctx(fn, that, entries ? 2 : 1)
@@ -30354,11 +30467,11 @@ module.exports = function(iterable, entries, fn, that){
30354
30467
  call(iterator, f, step.value, entries);
30355
30468
  }
30356
30469
  };
30357
- },{"210":210,"221":221,"238":238,"242":242,"279":279,"284":284}],231:[function(_dereq_,module,exports){
30470
+ },{"210":210,"223":223,"241":241,"246":246,"284":284,"289":289}],234:[function(_dereq_,module,exports){
30358
30471
  // fallback for IE11 buggy Object.getOwnPropertyNames with iframe and window
30359
30472
  var toString = {}.toString
30360
- , toIObject = _dereq_(278)
30361
- , getNames = _dereq_(248).getNames;
30473
+ , toIObject = _dereq_(283)
30474
+ , getNames = _dereq_(252).getNames;
30362
30475
 
30363
30476
  var windowNames = typeof window == 'object' && Object.getOwnPropertyNames
30364
30477
  ? Object.getOwnPropertyNames(window) : [];
@@ -30375,27 +30488,28 @@ module.exports.get = function getOwnPropertyNames(it){
30375
30488
  if(windowNames && toString.call(it) == '[object Window]')return getWindowNames(it);
30376
30489
  return getNames(toIObject(it));
30377
30490
  };
30378
- },{"248":248,"278":278}],232:[function(_dereq_,module,exports){
30379
- var global = typeof self != 'undefined' && self.Math == Math ? self : Function('return this')();
30380
- module.exports = global;
30491
+ },{"252":252,"283":283}],235:[function(_dereq_,module,exports){
30492
+ // https://github.com/zloirock/core-js/issues/86#issuecomment-115759028
30493
+ var global = module.exports = typeof window != 'undefined' && window.Math == Math
30494
+ ? window : typeof self != 'undefined' && self.Math == Math ? self : Function('return this')();
30381
30495
  if(typeof __g == 'number')__g = global; // eslint-disable-line no-undef
30382
- },{}],233:[function(_dereq_,module,exports){
30496
+ },{}],236:[function(_dereq_,module,exports){
30383
30497
  var hasOwnProperty = {}.hasOwnProperty;
30384
30498
  module.exports = function(it, key){
30385
30499
  return hasOwnProperty.call(it, key);
30386
30500
  };
30387
- },{}],234:[function(_dereq_,module,exports){
30388
- var $ = _dereq_(248)
30389
- , createDesc = _dereq_(259);
30390
- module.exports = _dereq_(273) ? function(object, key, value){
30501
+ },{}],237:[function(_dereq_,module,exports){
30502
+ var $ = _dereq_(252)
30503
+ , createDesc = _dereq_(263);
30504
+ module.exports = _dereq_(278) ? function(object, key, value){
30391
30505
  return $.setDesc(object, key, createDesc(1, value));
30392
30506
  } : function(object, key, value){
30393
30507
  object[key] = value;
30394
30508
  return object;
30395
30509
  };
30396
- },{"248":248,"259":259,"273":273}],235:[function(_dereq_,module,exports){
30397
- module.exports = _dereq_(232).document && document.documentElement;
30398
- },{"232":232}],236:[function(_dereq_,module,exports){
30510
+ },{"252":252,"263":263,"278":278}],238:[function(_dereq_,module,exports){
30511
+ module.exports = _dereq_(235).document && document.documentElement;
30512
+ },{"235":235}],239:[function(_dereq_,module,exports){
30399
30513
  // fast apply, http://jsperf.lnkit.com/fast-apply/5
30400
30514
  module.exports = function(fn, args, that){
30401
30515
  var un = that === undefined;
@@ -30412,35 +30526,46 @@ module.exports = function(fn, args, that){
30412
30526
  : fn.call(that, args[0], args[1], args[2], args[3]);
30413
30527
  } return fn.apply(that, args);
30414
30528
  };
30415
- },{}],237:[function(_dereq_,module,exports){
30416
- // indexed object, fallback for non-array-like ES3 strings
30417
- var cof = _dereq_(215);
30418
- module.exports = 0 in Object('z') ? Object : function(it){
30529
+ },{}],240:[function(_dereq_,module,exports){
30530
+ // fallback for non-array-like ES3 and non-enumerable old V8 strings
30531
+ var cof = _dereq_(217);
30532
+ module.exports = Object('z').propertyIsEnumerable(0) ? Object : function(it){
30419
30533
  return cof(it) == 'String' ? it.split('') : Object(it);
30420
30534
  };
30421
- },{"215":215}],238:[function(_dereq_,module,exports){
30535
+ },{"217":217}],241:[function(_dereq_,module,exports){
30422
30536
  // check on default Array iterator
30423
- var Iterators = _dereq_(247)
30424
- , ITERATOR = _dereq_(283)('iterator');
30537
+ var Iterators = _dereq_(251)
30538
+ , ITERATOR = _dereq_(288)('iterator');
30425
30539
  module.exports = function(it){
30426
30540
  return (Iterators.Array || Array.prototype[ITERATOR]) === it;
30427
30541
  };
30428
- },{"247":247,"283":283}],239:[function(_dereq_,module,exports){
30542
+ },{"251":251,"288":288}],242:[function(_dereq_,module,exports){
30543
+ // 7.2.2 IsArray(argument)
30544
+ var cof = _dereq_(217);
30545
+ module.exports = Array.isArray || function(arg){
30546
+ return cof(arg) == 'Array';
30547
+ };
30548
+ },{"217":217}],243:[function(_dereq_,module,exports){
30429
30549
  // 20.1.2.3 Number.isInteger(number)
30430
- var isObject = _dereq_(240)
30550
+ var isObject = _dereq_(244)
30431
30551
  , floor = Math.floor;
30432
30552
  module.exports = function isInteger(it){
30433
30553
  return !isObject(it) && isFinite(it) && floor(it) === it;
30434
30554
  };
30435
- },{"240":240}],240:[function(_dereq_,module,exports){
30436
- // http://jsperf.com/core-js-isobject
30555
+ },{"244":244}],244:[function(_dereq_,module,exports){
30556
+ module.exports = function(it){
30557
+ return typeof it === 'object' ? it !== null : typeof it === 'function';
30558
+ };
30559
+ },{}],245:[function(_dereq_,module,exports){
30560
+ // 7.2.8 IsRegExp(argument)
30561
+ var isObject = _dereq_(244)
30562
+ , cof = _dereq_(217)
30563
+ , MATCH = _dereq_(288)('match');
30437
30564
  module.exports = function(it){
30438
- return it !== null && (typeof it == 'object' || typeof it == 'function');
30565
+ var isRegExp;
30566
+ return isObject(it) && ((isRegExp = it[MATCH]) !== undefined ? !!isRegExp : cof(it) == 'RegExp');
30439
30567
  };
30440
- },{}],241:[function(_dereq_,module,exports){
30441
- // Safari has buggy iterators w/o `next`
30442
- module.exports = 'keys' in [] && !('next' in [].keys());
30443
- },{}],242:[function(_dereq_,module,exports){
30568
+ },{"217":217,"244":244,"288":288}],246:[function(_dereq_,module,exports){
30444
30569
  // call something on iterator step with safe closing on error
30445
30570
  var anObject = _dereq_(210);
30446
30571
  module.exports = function(iterator, fn, value, entries){
@@ -30453,33 +30578,34 @@ module.exports = function(iterator, fn, value, entries){
30453
30578
  throw e;
30454
30579
  }
30455
30580
  };
30456
- },{"210":210}],243:[function(_dereq_,module,exports){
30581
+ },{"210":210}],247:[function(_dereq_,module,exports){
30457
30582
  'use strict';
30458
- var $ = _dereq_(248)
30583
+ var $ = _dereq_(252)
30459
30584
  , IteratorPrototype = {};
30460
30585
 
30461
30586
  // 25.1.2.1.1 %IteratorPrototype%[@@iterator]()
30462
- _dereq_(234)(IteratorPrototype, _dereq_(283)('iterator'), function(){ return this; });
30587
+ _dereq_(237)(IteratorPrototype, _dereq_(288)('iterator'), function(){ return this; });
30463
30588
 
30464
30589
  module.exports = function(Constructor, NAME, next){
30465
- Constructor.prototype = $.create(IteratorPrototype, {next: _dereq_(259)(1,next)});
30466
- _dereq_(274)(Constructor, NAME + ' Iterator');
30590
+ Constructor.prototype = $.create(IteratorPrototype, {next: _dereq_(263)(1,next)});
30591
+ _dereq_(279)(Constructor, NAME + ' Iterator');
30467
30592
  };
30468
- },{"234":234,"248":248,"259":259,"274":274,"283":283}],244:[function(_dereq_,module,exports){
30593
+ },{"237":237,"252":252,"263":263,"279":279,"288":288}],248:[function(_dereq_,module,exports){
30469
30594
  'use strict';
30470
- var LIBRARY = _dereq_(250)
30471
- , $def = _dereq_(222)
30472
- , $redef = _dereq_(260)
30473
- , hide = _dereq_(234)
30474
- , has = _dereq_(233)
30475
- , SYMBOL_ITERATOR = _dereq_(283)('iterator')
30476
- , Iterators = _dereq_(247)
30595
+ var LIBRARY = _dereq_(254)
30596
+ , $def = _dereq_(224)
30597
+ , $redef = _dereq_(264)
30598
+ , hide = _dereq_(237)
30599
+ , has = _dereq_(236)
30600
+ , SYMBOL_ITERATOR = _dereq_(288)('iterator')
30601
+ , Iterators = _dereq_(251)
30602
+ , BUGGY = !([].keys && 'next' in [].keys()) // Safari has buggy iterators w/o `next`
30477
30603
  , FF_ITERATOR = '@@iterator'
30478
30604
  , KEYS = 'keys'
30479
30605
  , VALUES = 'values';
30480
30606
  var returnThis = function(){ return this; };
30481
30607
  module.exports = function(Base, NAME, Constructor, next, DEFAULT, IS_SET, FORCE){
30482
- _dereq_(243)(Constructor, NAME, next);
30608
+ _dereq_(247)(Constructor, NAME, next);
30483
30609
  var createMethod = function(kind){
30484
30610
  switch(kind){
30485
30611
  case KEYS: return function keys(){ return new Constructor(this, kind); };
@@ -30493,9 +30619,9 @@ module.exports = function(Base, NAME, Constructor, next, DEFAULT, IS_SET, FORCE)
30493
30619
  , methods, key;
30494
30620
  // Fix native
30495
30621
  if(_native){
30496
- var IteratorPrototype = _dereq_(248).getProto(_default.call(new Base));
30622
+ var IteratorPrototype = _dereq_(252).getProto(_default.call(new Base));
30497
30623
  // Set @@toStringTag to native iterators
30498
- _dereq_(274)(IteratorPrototype, TAG, true);
30624
+ _dereq_(279)(IteratorPrototype, TAG, true);
30499
30625
  // FF fix
30500
30626
  if(!LIBRARY && has(proto, FF_ITERATOR))hide(IteratorPrototype, SYMBOL_ITERATOR, returnThis);
30501
30627
  }
@@ -30506,25 +30632,25 @@ module.exports = function(Base, NAME, Constructor, next, DEFAULT, IS_SET, FORCE)
30506
30632
  Iterators[TAG] = returnThis;
30507
30633
  if(DEFAULT){
30508
30634
  methods = {
30509
- keys: IS_SET ? _default : createMethod(KEYS),
30510
30635
  values: DEFAULT == VALUES ? _default : createMethod(VALUES),
30636
+ keys: IS_SET ? _default : createMethod(KEYS),
30511
30637
  entries: DEFAULT != VALUES ? _default : createMethod('entries')
30512
30638
  };
30513
30639
  if(FORCE)for(key in methods){
30514
30640
  if(!(key in proto))$redef(proto, key, methods[key]);
30515
- } else $def($def.P + $def.F * _dereq_(241), NAME, methods);
30641
+ } else $def($def.P + $def.F * BUGGY, NAME, methods);
30516
30642
  }
30517
30643
  };
30518
- },{"222":222,"233":233,"234":234,"241":241,"243":243,"247":247,"248":248,"250":250,"260":260,"274":274,"283":283}],245:[function(_dereq_,module,exports){
30519
- var SYMBOL_ITERATOR = _dereq_(283)('iterator')
30644
+ },{"224":224,"236":236,"237":237,"247":247,"251":251,"252":252,"254":254,"264":264,"279":279,"288":288}],249:[function(_dereq_,module,exports){
30645
+ var SYMBOL_ITERATOR = _dereq_(288)('iterator')
30520
30646
  , SAFE_CLOSING = false;
30521
30647
  try {
30522
30648
  var riter = [7][SYMBOL_ITERATOR]();
30523
30649
  riter['return'] = function(){ SAFE_CLOSING = true; };
30524
30650
  Array.from(riter, function(){ throw 2; });
30525
30651
  } catch(e){ /* empty */ }
30526
- module.exports = function(exec){
30527
- if(!SAFE_CLOSING)return false;
30652
+ module.exports = function(exec, skipClosing){
30653
+ if(!skipClosing && !SAFE_CLOSING)return false;
30528
30654
  var safe = false;
30529
30655
  try {
30530
30656
  var arr = [7]
@@ -30535,13 +30661,13 @@ module.exports = function(exec){
30535
30661
  } catch(e){ /* empty */ }
30536
30662
  return safe;
30537
30663
  };
30538
- },{"283":283}],246:[function(_dereq_,module,exports){
30664
+ },{"288":288}],250:[function(_dereq_,module,exports){
30539
30665
  module.exports = function(done, value){
30540
30666
  return {value: value, done: !!done};
30541
30667
  };
30542
- },{}],247:[function(_dereq_,module,exports){
30668
+ },{}],251:[function(_dereq_,module,exports){
30543
30669
  module.exports = {};
30544
- },{}],248:[function(_dereq_,module,exports){
30670
+ },{}],252:[function(_dereq_,module,exports){
30545
30671
  var $Object = Object;
30546
30672
  module.exports = {
30547
30673
  create: $Object.create,
@@ -30555,9 +30681,9 @@ module.exports = {
30555
30681
  getSymbols: $Object.getOwnPropertySymbols,
30556
30682
  each: [].forEach
30557
30683
  };
30558
- },{}],249:[function(_dereq_,module,exports){
30559
- var $ = _dereq_(248)
30560
- , toIObject = _dereq_(278);
30684
+ },{}],253:[function(_dereq_,module,exports){
30685
+ var $ = _dereq_(252)
30686
+ , toIObject = _dereq_(283);
30561
30687
  module.exports = function(object, el){
30562
30688
  var O = toIObject(object)
30563
30689
  , keys = $.getKeys(O)
@@ -30566,105 +30692,117 @@ module.exports = function(object, el){
30566
30692
  , key;
30567
30693
  while(length > index)if(O[key = keys[index++]] === el)return key;
30568
30694
  };
30569
- },{"248":248,"278":278}],250:[function(_dereq_,module,exports){
30695
+ },{"252":252,"283":283}],254:[function(_dereq_,module,exports){
30570
30696
  module.exports = false;
30571
- },{}],251:[function(_dereq_,module,exports){
30572
- // 20.2.2.20 Math.log1p(x)
30573
- module.exports = Math.log1p || function log1p(x){
30574
- return (x = +x) > -1e-8 && x < 1e-8 ? x - x * x / 2 : Math.log(1 + x);
30697
+ },{}],255:[function(_dereq_,module,exports){
30698
+ // 20.2.2.20 Math.log1p(x)
30699
+ module.exports = Math.log1p || function log1p(x){
30700
+ return (x = +x) > -1e-8 && x < 1e-8 ? x - x * x / 2 : Math.log(1 + x);
30701
+ };
30702
+ },{}],256:[function(_dereq_,module,exports){
30703
+ var global = _dereq_(235)
30704
+ , macrotask = _dereq_(280).set
30705
+ , Observer = global.MutationObserver || global.WebKitMutationObserver
30706
+ , process = global.process
30707
+ , isNode = _dereq_(217)(process) == 'process'
30708
+ , head, last, notify;
30709
+
30710
+ var flush = function(){
30711
+ var parent, domain;
30712
+ if(isNode && (parent = process.domain)){
30713
+ process.domain = null;
30714
+ parent.exit();
30715
+ }
30716
+ while(head){
30717
+ domain = head.domain;
30718
+ if(domain)domain.enter();
30719
+ head.fn.call(); // <- currently we use it only for Promise - try / catch not required
30720
+ if(domain)domain.exit();
30721
+ head = head.next;
30722
+ } last = undefined;
30723
+ if(parent)parent.enter();
30724
+ };
30725
+
30726
+ // Node.js
30727
+ if(isNode){
30728
+ notify = function(){
30729
+ process.nextTick(flush);
30730
+ };
30731
+ // browsers with MutationObserver
30732
+ } else if(Observer){
30733
+ var toggle = 1
30734
+ , node = document.createTextNode('');
30735
+ new Observer(flush).observe(node, {characterData: true}); // eslint-disable-line no-new
30736
+ notify = function(){
30737
+ node.data = toggle = -toggle;
30738
+ };
30739
+ // for other environments - macrotask based on:
30740
+ // - setImmediate
30741
+ // - MessageChannel
30742
+ // - window.postMessag
30743
+ // - onreadystatechange
30744
+ // - setTimeout
30745
+ } else {
30746
+ notify = function(){
30747
+ // strange IE + webpack dev server bug - use .call(global)
30748
+ macrotask.call(global, flush);
30749
+ };
30750
+ }
30751
+
30752
+ module.exports = function asap(fn){
30753
+ var task = {fn: fn, next: undefined, domain: isNode && process.domain};
30754
+ if(last)last.next = task;
30755
+ if(!head){
30756
+ head = task;
30757
+ notify();
30758
+ } last = task;
30575
30759
  };
30576
- },{}],252:[function(_dereq_,module,exports){
30577
- var global = _dereq_(232)
30578
- , macrotask = _dereq_(275).set
30579
- , Observer = global.MutationObserver || global.WebKitMutationObserver
30580
- , process = global.process
30581
- , head, last, notify;
30582
-
30583
- function flush(){
30584
- while(head){
30585
- head.fn.call(); // <- currently we use it only for Promise - try / catch not required
30586
- head = head.next;
30587
- } last = undefined;
30588
- }
30589
-
30590
- // Node.js
30591
- if(_dereq_(215)(process) == 'process'){
30592
- notify = function(){
30593
- process.nextTick(flush);
30594
- };
30595
- // browsers with MutationObserver
30596
- } else if(Observer){
30597
- var toggle = 1
30598
- , node = document.createTextNode('');
30599
- new Observer(flush).observe(node, {characterData: true}); // eslint-disable-line no-new
30600
- notify = function(){
30601
- node.data = toggle = -toggle;
30602
- };
30603
- // for other environments - macrotask based on:
30604
- // - setImmediate
30605
- // - MessageChannel
30606
- // - window.postMessag
30607
- // - onreadystatechange
30608
- // - setTimeout
30609
- } else {
30610
- notify = function(){
30611
- // strange IE + webpack dev server bug - use .call(global)
30612
- macrotask.call(global, flush);
30613
- };
30614
- }
30615
-
30616
- module.exports = function asap(fn){
30617
- var task = {fn: fn, next: undefined};
30618
- if(last)last.next = task;
30619
- if(!head){
30620
- head = task;
30621
- notify();
30622
- } last = task;
30623
- };
30624
- },{"215":215,"232":232,"275":275}],253:[function(_dereq_,module,exports){
30625
- var $redef = _dereq_(260);
30760
+ },{"217":217,"235":235,"280":280}],257:[function(_dereq_,module,exports){
30761
+ var $redef = _dereq_(264);
30626
30762
  module.exports = function(target, src){
30627
30763
  for(var key in src)$redef(target, key, src[key]);
30628
30764
  return target;
30629
30765
  };
30630
- },{"260":260}],254:[function(_dereq_,module,exports){
30766
+ },{"264":264}],258:[function(_dereq_,module,exports){
30631
30767
  // most Object methods by ES6 should accept primitives
30632
30768
  module.exports = function(KEY, exec){
30633
- var $def = _dereq_(222)
30634
- , fn = (_dereq_(220).Object || {})[KEY] || Object[KEY]
30769
+ var $def = _dereq_(224)
30770
+ , fn = (_dereq_(222).Object || {})[KEY] || Object[KEY]
30635
30771
  , exp = {};
30636
30772
  exp[KEY] = exec(fn);
30637
- $def($def.S + $def.F * _dereq_(227)(function(){ fn(1); }), 'Object', exp);
30773
+ $def($def.S + $def.F * _dereq_(230)(function(){ fn(1); }), 'Object', exp);
30638
30774
  };
30639
- },{"220":220,"222":222,"227":227}],255:[function(_dereq_,module,exports){
30640
- var $ = _dereq_(248)
30641
- , toIObject = _dereq_(278);
30775
+ },{"222":222,"224":224,"230":230}],259:[function(_dereq_,module,exports){
30776
+ var $ = _dereq_(252)
30777
+ , toIObject = _dereq_(283)
30778
+ , isEnum = $.isEnum;
30642
30779
  module.exports = function(isEntries){
30643
30780
  return function(it){
30644
30781
  var O = toIObject(it)
30645
30782
  , keys = $.getKeys(O)
30646
30783
  , length = keys.length
30647
30784
  , i = 0
30648
- , result = Array(length)
30785
+ , result = []
30649
30786
  , key;
30650
- if(isEntries)while(length > i)result[i] = [key = keys[i++], O[key]];
30651
- else while(length > i)result[i] = O[keys[i++]];
30652
- return result;
30787
+ while(length > i)if(isEnum.call(O, key = keys[i++])){
30788
+ result.push(isEntries ? [key, O[key]] : O[key]);
30789
+ } return result;
30653
30790
  };
30654
30791
  };
30655
- },{"248":248,"278":278}],256:[function(_dereq_,module,exports){
30792
+ },{"252":252,"283":283}],260:[function(_dereq_,module,exports){
30656
30793
  // all object keys, includes non-enumerable and symbols
30657
- var $ = _dereq_(248)
30658
- , anObject = _dereq_(210);
30659
- module.exports = function ownKeys(it){
30794
+ var $ = _dereq_(252)
30795
+ , anObject = _dereq_(210)
30796
+ , Reflect = _dereq_(235).Reflect;
30797
+ module.exports = Reflect && Reflect.ownKeys || function ownKeys(it){
30660
30798
  var keys = $.getNames(anObject(it))
30661
30799
  , getSymbols = $.getSymbols;
30662
30800
  return getSymbols ? keys.concat(getSymbols(it)) : keys;
30663
30801
  };
30664
- },{"210":210,"248":248}],257:[function(_dereq_,module,exports){
30802
+ },{"210":210,"235":235,"252":252}],261:[function(_dereq_,module,exports){
30665
30803
  'use strict';
30666
- var path = _dereq_(258)
30667
- , invoke = _dereq_(236)
30804
+ var path = _dereq_(262)
30805
+ , invoke = _dereq_(239)
30668
30806
  , aFunction = _dereq_(209);
30669
30807
  module.exports = function(/* ...pargs */){
30670
30808
  var fn = aFunction(this)
@@ -30675,19 +30813,20 @@ module.exports = function(/* ...pargs */){
30675
30813
  , holder = false;
30676
30814
  while(length > i)if((pargs[i] = arguments[i++]) === _)holder = true;
30677
30815
  return function(/* ...args */){
30678
- var that = this
30679
- , _length = arguments.length
30816
+ var that = this
30817
+ , $$ = arguments
30818
+ , $$len = $$.length
30680
30819
  , j = 0, k = 0, args;
30681
- if(!holder && !_length)return invoke(fn, pargs, that);
30820
+ if(!holder && !$$len)return invoke(fn, pargs, that);
30682
30821
  args = pargs.slice();
30683
- if(holder)for(;length > j; j++)if(args[j] === _)args[j] = arguments[k++];
30684
- while(_length > k)args.push(arguments[k++]);
30822
+ if(holder)for(;length > j; j++)if(args[j] === _)args[j] = $$[k++];
30823
+ while($$len > k)args.push($$[k++]);
30685
30824
  return invoke(fn, args, that);
30686
30825
  };
30687
30826
  };
30688
- },{"209":209,"236":236,"258":258}],258:[function(_dereq_,module,exports){
30689
- module.exports = _dereq_(232);
30690
- },{"232":232}],259:[function(_dereq_,module,exports){
30827
+ },{"209":209,"239":239,"262":262}],262:[function(_dereq_,module,exports){
30828
+ module.exports = _dereq_(235);
30829
+ },{"235":235}],263:[function(_dereq_,module,exports){
30691
30830
  module.exports = function(bitmap, value){
30692
30831
  return {
30693
30832
  enumerable : !(bitmap & 1),
@@ -30696,24 +30835,24 @@ module.exports = function(bitmap, value){
30696
30835
  value : value
30697
30836
  };
30698
30837
  };
30699
- },{}],260:[function(_dereq_,module,exports){
30838
+ },{}],264:[function(_dereq_,module,exports){
30700
30839
  // add fake Function#toString
30701
30840
  // for correct work wrapped methods / constructors with methods like LoDash isNative
30702
- var global = _dereq_(232)
30703
- , hide = _dereq_(234)
30704
- , SRC = _dereq_(281)('src')
30841
+ var global = _dereq_(235)
30842
+ , hide = _dereq_(237)
30843
+ , SRC = _dereq_(286)('src')
30705
30844
  , TO_STRING = 'toString'
30706
30845
  , $toString = Function[TO_STRING]
30707
30846
  , TPL = ('' + $toString).split(TO_STRING);
30708
30847
 
30709
- _dereq_(220).inspectSource = function(it){
30848
+ _dereq_(222).inspectSource = function(it){
30710
30849
  return $toString.call(it);
30711
30850
  };
30712
30851
 
30713
30852
  (module.exports = function(O, key, val, safe){
30714
30853
  if(typeof val == 'function'){
30715
- hide(val, SRC, O[key] ? '' + O[key] : TPL.join(String(key)));
30716
- if(!('name' in val))val.name = key;
30854
+ val.hasOwnProperty(SRC) || hide(val, SRC, O[key] ? '' + O[key] : TPL.join(String(key)));
30855
+ val.hasOwnProperty('name') || hide(val, 'name', key);
30717
30856
  }
30718
30857
  if(O === global){
30719
30858
  O[key] = val;
@@ -30724,7 +30863,7 @@ _dereq_(220).inspectSource = function(it){
30724
30863
  })(Function.prototype, TO_STRING, function toString(){
30725
30864
  return typeof this == 'function' && this[SRC] || $toString.call(this);
30726
30865
  });
30727
- },{"220":220,"232":232,"234":234,"281":281}],261:[function(_dereq_,module,exports){
30866
+ },{"222":222,"235":235,"237":237,"286":286}],265:[function(_dereq_,module,exports){
30728
30867
  module.exports = function(regExp, replace){
30729
30868
  var replacer = replace === Object(replace) ? function(part){
30730
30869
  return replace[part];
@@ -30733,69 +30872,78 @@ module.exports = function(regExp, replace){
30733
30872
  return String(it).replace(regExp, replacer);
30734
30873
  };
30735
30874
  };
30736
- },{}],262:[function(_dereq_,module,exports){
30875
+ },{}],266:[function(_dereq_,module,exports){
30737
30876
  module.exports = Object.is || function is(x, y){
30738
30877
  return x === y ? x !== 0 || 1 / x === 1 / y : x != x && y != y;
30739
30878
  };
30740
- },{}],263:[function(_dereq_,module,exports){
30879
+ },{}],267:[function(_dereq_,module,exports){
30741
30880
  // Works with __proto__ only. Old v8 can't work with null proto objects.
30742
30881
  /* eslint-disable no-proto */
30743
- var getDesc = _dereq_(248).getDesc
30744
- , isObject = _dereq_(240)
30882
+ var getDesc = _dereq_(252).getDesc
30883
+ , isObject = _dereq_(244)
30745
30884
  , anObject = _dereq_(210);
30746
30885
  var check = function(O, proto){
30747
30886
  anObject(O);
30748
30887
  if(!isObject(proto) && proto !== null)throw TypeError(proto + ": can't set as prototype!");
30749
30888
  };
30750
30889
  module.exports = {
30751
- set: Object.setPrototypeOf || ('__proto__' in {} // eslint-disable-line
30752
- ? function(buggy, set){
30753
- try {
30754
- set = _dereq_(221)(Function.call, getDesc(Object.prototype, '__proto__').set, 2);
30755
- set({}, []);
30756
- } catch(e){ buggy = true; }
30757
- return function setPrototypeOf(O, proto){
30758
- check(O, proto);
30759
- if(buggy)O.__proto__ = proto;
30760
- else set(O, proto);
30761
- return O;
30762
- };
30763
- }()
30764
- : undefined),
30890
+ set: Object.setPrototypeOf || ('__proto__' in {} ? // eslint-disable-line
30891
+ function(test, buggy, set){
30892
+ try {
30893
+ set = _dereq_(223)(Function.call, getDesc(Object.prototype, '__proto__').set, 2);
30894
+ set(test, []);
30895
+ buggy = !(test instanceof Array);
30896
+ } catch(e){ buggy = true; }
30897
+ return function setPrototypeOf(O, proto){
30898
+ check(O, proto);
30899
+ if(buggy)O.__proto__ = proto;
30900
+ else set(O, proto);
30901
+ return O;
30902
+ };
30903
+ }({}, false) : undefined),
30765
30904
  check: check
30766
30905
  };
30767
- },{"210":210,"221":221,"240":240,"248":248}],264:[function(_dereq_,module,exports){
30768
- var global = _dereq_(232)
30906
+ },{"210":210,"223":223,"244":244,"252":252}],268:[function(_dereq_,module,exports){
30907
+ var global = _dereq_(235)
30769
30908
  , SHARED = '__core-js_shared__'
30770
30909
  , store = global[SHARED] || (global[SHARED] = {});
30771
30910
  module.exports = function(key){
30772
30911
  return store[key] || (store[key] = {});
30773
30912
  };
30774
- },{"232":232}],265:[function(_dereq_,module,exports){
30913
+ },{"235":235}],269:[function(_dereq_,module,exports){
30775
30914
  // 20.2.2.28 Math.sign(x)
30776
30915
  module.exports = Math.sign || function sign(x){
30777
30916
  return (x = +x) == 0 || x != x ? x : x < 0 ? -1 : 1;
30778
30917
  };
30779
- },{}],266:[function(_dereq_,module,exports){
30918
+ },{}],270:[function(_dereq_,module,exports){
30919
+ // 7.3.20 SpeciesConstructor(O, defaultConstructor)
30920
+ var anObject = _dereq_(210)
30921
+ , aFunction = _dereq_(209)
30922
+ , SPECIES = _dereq_(288)('species');
30923
+ module.exports = function(O, D){
30924
+ var C = anObject(O).constructor, S;
30925
+ return C === undefined || (S = anObject(C)[SPECIES]) == undefined ? D : aFunction(S);
30926
+ };
30927
+ },{"209":209,"210":210,"288":288}],271:[function(_dereq_,module,exports){
30780
30928
  'use strict';
30781
- var $ = _dereq_(248)
30782
- , SPECIES = _dereq_(283)('species');
30929
+ var $ = _dereq_(252)
30930
+ , SPECIES = _dereq_(288)('species');
30783
30931
  module.exports = function(C){
30784
- if(_dereq_(273) && !(SPECIES in C))$.setDesc(C, SPECIES, {
30932
+ if(_dereq_(278) && !(SPECIES in C))$.setDesc(C, SPECIES, {
30785
30933
  configurable: true,
30786
30934
  get: function(){ return this; }
30787
30935
  });
30788
30936
  };
30789
- },{"248":248,"273":273,"283":283}],267:[function(_dereq_,module,exports){
30937
+ },{"252":252,"278":278,"288":288}],272:[function(_dereq_,module,exports){
30790
30938
  module.exports = function(it, Constructor, name){
30791
30939
  if(!(it instanceof Constructor))throw TypeError(name + ": use the 'new' operator!");
30792
30940
  return it;
30793
30941
  };
30794
- },{}],268:[function(_dereq_,module,exports){
30942
+ },{}],273:[function(_dereq_,module,exports){
30795
30943
  // true -> String#at
30796
30944
  // false -> String#codePointAt
30797
- var toInteger = _dereq_(277)
30798
- , defined = _dereq_(223);
30945
+ var toInteger = _dereq_(282)
30946
+ , defined = _dereq_(225);
30799
30947
  module.exports = function(TO_STRING){
30800
30948
  return function(that, pos){
30801
30949
  var s = String(defined(that))
@@ -30810,20 +30958,20 @@ module.exports = function(TO_STRING){
30810
30958
  : TO_STRING ? s.slice(i, i + 2) : (a - 0xd800 << 10) + (b - 0xdc00) + 0x10000;
30811
30959
  };
30812
30960
  };
30813
- },{"223":223,"277":277}],269:[function(_dereq_,module,exports){
30961
+ },{"225":225,"282":282}],274:[function(_dereq_,module,exports){
30814
30962
  // helper for String#{startsWith, endsWith, includes}
30815
- var defined = _dereq_(223)
30816
- , cof = _dereq_(215);
30963
+ var isRegExp = _dereq_(245)
30964
+ , defined = _dereq_(225);
30817
30965
 
30818
30966
  module.exports = function(that, searchString, NAME){
30819
- if(cof(searchString) == 'RegExp')throw TypeError('String#' + NAME + " doesn't accept regex!");
30967
+ if(isRegExp(searchString))throw TypeError('String#' + NAME + " doesn't accept regex!");
30820
30968
  return String(defined(that));
30821
30969
  };
30822
- },{"215":215,"223":223}],270:[function(_dereq_,module,exports){
30970
+ },{"225":225,"245":245}],275:[function(_dereq_,module,exports){
30823
30971
  // https://github.com/ljharb/proposal-string-pad-left-right
30824
- var toLength = _dereq_(279)
30825
- , repeat = _dereq_(271)
30826
- , defined = _dereq_(223);
30972
+ var toLength = _dereq_(284)
30973
+ , repeat = _dereq_(276)
30974
+ , defined = _dereq_(225);
30827
30975
 
30828
30976
  module.exports = function(that, maxLength, fillString, left){
30829
30977
  var S = String(defined(that))
@@ -30834,15 +30982,13 @@ module.exports = function(that, maxLength, fillString, left){
30834
30982
  if(fillStr == '')fillStr = ' ';
30835
30983
  var fillLen = intMaxLength - stringLength
30836
30984
  , stringFiller = repeat.call(fillStr, Math.ceil(fillLen / fillStr.length));
30837
- if(stringFiller.length > fillLen)stringFiller = left
30838
- ? stringFiller.slice(stringFiller.length - fillLen)
30839
- : stringFiller.slice(0, fillLen);
30985
+ if(stringFiller.length > fillLen)stringFiller = stringFiller.slice(0, fillLen);
30840
30986
  return left ? stringFiller + S : S + stringFiller;
30841
30987
  };
30842
- },{"223":223,"271":271,"279":279}],271:[function(_dereq_,module,exports){
30988
+ },{"225":225,"276":276,"284":284}],276:[function(_dereq_,module,exports){
30843
30989
  'use strict';
30844
- var toInteger = _dereq_(277)
30845
- , defined = _dereq_(223);
30990
+ var toInteger = _dereq_(282)
30991
+ , defined = _dereq_(225);
30846
30992
 
30847
30993
  module.exports = function repeat(count){
30848
30994
  var str = String(defined(this))
@@ -30852,7 +30998,7 @@ module.exports = function repeat(count){
30852
30998
  for(;n > 0; (n >>>= 1) && (str += str))if(n & 1)res += str;
30853
30999
  return res;
30854
31000
  };
30855
- },{"223":223,"277":277}],272:[function(_dereq_,module,exports){
31001
+ },{"225":225,"282":282}],277:[function(_dereq_,module,exports){
30856
31002
  // 1 -> String#trimLeft
30857
31003
  // 2 -> String#trimRight
30858
31004
  // 3 -> String#trim
@@ -30863,8 +31009,8 @@ var trim = function(string, TYPE){
30863
31009
  return string;
30864
31010
  };
30865
31011
 
30866
- var $def = _dereq_(222)
30867
- , defined = _dereq_(223)
31012
+ var $def = _dereq_(224)
31013
+ , defined = _dereq_(225)
30868
31014
  , spaces = '\x09\x0A\x0B\x0C\x0D\x20\xA0\u1680\u180E\u2000\u2001\u2002\u2003' +
30869
31015
  '\u2004\u2005\u2006\u2007\u2008\u2009\u200A\u202F\u205F\u3000\u2028\u2029\uFEFF'
30870
31016
  , space = '[' + spaces + ']'
@@ -30875,30 +31021,30 @@ var $def = _dereq_(222)
30875
31021
  module.exports = function(KEY, exec){
30876
31022
  var exp = {};
30877
31023
  exp[KEY] = exec(trim);
30878
- $def($def.P + $def.F * _dereq_(227)(function(){
31024
+ $def($def.P + $def.F * _dereq_(230)(function(){
30879
31025
  return !!spaces[KEY]() || non[KEY]() != non;
30880
31026
  }), 'String', exp);
30881
31027
  };
30882
- },{"222":222,"223":223,"227":227}],273:[function(_dereq_,module,exports){
31028
+ },{"224":224,"225":225,"230":230}],278:[function(_dereq_,module,exports){
30883
31029
  // Thank's IE8 for his funny defineProperty
30884
- module.exports = !_dereq_(227)(function(){
31030
+ module.exports = !_dereq_(230)(function(){
30885
31031
  return Object.defineProperty({}, 'a', {get: function(){ return 7; }}).a != 7;
30886
31032
  });
30887
- },{"227":227}],274:[function(_dereq_,module,exports){
30888
- var has = _dereq_(233)
30889
- , hide = _dereq_(234)
30890
- , TAG = _dereq_(283)('toStringTag');
31033
+ },{"230":230}],279:[function(_dereq_,module,exports){
31034
+ var def = _dereq_(252).setDesc
31035
+ , has = _dereq_(236)
31036
+ , TAG = _dereq_(288)('toStringTag');
30891
31037
 
30892
31038
  module.exports = function(it, tag, stat){
30893
- if(it && !has(it = stat ? it : it.prototype, TAG))hide(it, TAG, tag);
31039
+ if(it && !has(it = stat ? it : it.prototype, TAG))def(it, TAG, {configurable: true, value: tag});
30894
31040
  };
30895
- },{"233":233,"234":234,"283":283}],275:[function(_dereq_,module,exports){
31041
+ },{"236":236,"252":252,"288":288}],280:[function(_dereq_,module,exports){
30896
31042
  'use strict';
30897
- var ctx = _dereq_(221)
30898
- , invoke = _dereq_(236)
30899
- , html = _dereq_(235)
30900
- , cel = _dereq_(224)
30901
- , global = _dereq_(232)
31043
+ var ctx = _dereq_(223)
31044
+ , invoke = _dereq_(239)
31045
+ , html = _dereq_(238)
31046
+ , cel = _dereq_(226)
31047
+ , global = _dereq_(235)
30902
31048
  , process = global.process
30903
31049
  , setTask = global.setImmediate
30904
31050
  , clearTask = global.clearImmediate
@@ -30933,7 +31079,7 @@ if(!setTask || !clearTask){
30933
31079
  delete queue[id];
30934
31080
  };
30935
31081
  // Node.js 0.8-
30936
- if(_dereq_(215)(process) == 'process'){
31082
+ if(_dereq_(217)(process) == 'process'){
30937
31083
  defer = function(id){
30938
31084
  process.nextTick(ctx(run, id, 1));
30939
31085
  };
@@ -30945,7 +31091,7 @@ if(!setTask || !clearTask){
30945
31091
  defer = ctx(port.postMessage, port, 1);
30946
31092
  // Browsers with postMessage, skip WebWorkers
30947
31093
  // IE8 has postMessage, but it's sync & typeof its postMessage is 'object'
30948
- } else if(global.addEventListener && typeof postMessage == 'function' && !global.importScript){
31094
+ } else if(global.addEventListener && typeof postMessage == 'function' && !global.importScripts){
30949
31095
  defer = function(id){
30950
31096
  global.postMessage(id + '', '*');
30951
31097
  };
@@ -30969,91 +31115,93 @@ module.exports = {
30969
31115
  set: setTask,
30970
31116
  clear: clearTask
30971
31117
  };
30972
- },{"215":215,"221":221,"224":224,"232":232,"235":235,"236":236}],276:[function(_dereq_,module,exports){
30973
- var toInteger = _dereq_(277)
31118
+ },{"217":217,"223":223,"226":226,"235":235,"238":238,"239":239}],281:[function(_dereq_,module,exports){
31119
+ var toInteger = _dereq_(282)
30974
31120
  , max = Math.max
30975
31121
  , min = Math.min;
30976
31122
  module.exports = function(index, length){
30977
31123
  index = toInteger(index);
30978
31124
  return index < 0 ? max(index + length, 0) : min(index, length);
30979
31125
  };
30980
- },{"277":277}],277:[function(_dereq_,module,exports){
31126
+ },{"282":282}],282:[function(_dereq_,module,exports){
30981
31127
  // 7.1.4 ToInteger
30982
31128
  var ceil = Math.ceil
30983
31129
  , floor = Math.floor;
30984
31130
  module.exports = function(it){
30985
31131
  return isNaN(it = +it) ? 0 : (it > 0 ? floor : ceil)(it);
30986
31132
  };
30987
- },{}],278:[function(_dereq_,module,exports){
30988
- // to indexed object, toObject with fallback for non-array-like ES3 strings
30989
- var IObject = _dereq_(237)
30990
- , defined = _dereq_(223);
30991
- module.exports = function(it){
30992
- return IObject(defined(it));
31133
+ },{}],283:[function(_dereq_,module,exports){
31134
+ // to indexed object, toObject with fallback for non-array-like ES3 strings
31135
+ var IObject = _dereq_(240)
31136
+ , defined = _dereq_(225);
31137
+ module.exports = function(it){
31138
+ return IObject(defined(it));
30993
31139
  };
30994
- },{"223":223,"237":237}],279:[function(_dereq_,module,exports){
31140
+ },{"225":225,"240":240}],284:[function(_dereq_,module,exports){
30995
31141
  // 7.1.15 ToLength
30996
- var toInteger = _dereq_(277)
31142
+ var toInteger = _dereq_(282)
30997
31143
  , min = Math.min;
30998
31144
  module.exports = function(it){
30999
31145
  return it > 0 ? min(toInteger(it), 0x1fffffffffffff) : 0; // pow(2, 53) - 1 == 9007199254740991
31000
31146
  };
31001
- },{"277":277}],280:[function(_dereq_,module,exports){
31147
+ },{"282":282}],285:[function(_dereq_,module,exports){
31002
31148
  // 7.1.13 ToObject(argument)
31003
- var defined = _dereq_(223);
31149
+ var defined = _dereq_(225);
31004
31150
  module.exports = function(it){
31005
31151
  return Object(defined(it));
31006
31152
  };
31007
- },{"223":223}],281:[function(_dereq_,module,exports){
31153
+ },{"225":225}],286:[function(_dereq_,module,exports){
31008
31154
  var id = 0
31009
31155
  , px = Math.random();
31010
31156
  module.exports = function(key){
31011
31157
  return 'Symbol('.concat(key === undefined ? '' : key, ')_', (++id + px).toString(36));
31012
31158
  };
31013
- },{}],282:[function(_dereq_,module,exports){
31159
+ },{}],287:[function(_dereq_,module,exports){
31014
31160
  // 22.1.3.31 Array.prototype[@@unscopables]
31015
- var UNSCOPABLES = _dereq_(283)('unscopables');
31016
- if(!(UNSCOPABLES in []))_dereq_(234)(Array.prototype, UNSCOPABLES, {});
31161
+ var UNSCOPABLES = _dereq_(288)('unscopables');
31162
+ if([][UNSCOPABLES] == undefined)_dereq_(237)(Array.prototype, UNSCOPABLES, {});
31017
31163
  module.exports = function(key){
31018
31164
  [][UNSCOPABLES][key] = true;
31019
31165
  };
31020
- },{"234":234,"283":283}],283:[function(_dereq_,module,exports){
31021
- var store = _dereq_(264)('wks')
31022
- , Symbol = _dereq_(232).Symbol;
31166
+ },{"237":237,"288":288}],288:[function(_dereq_,module,exports){
31167
+ var store = _dereq_(268)('wks')
31168
+ , Symbol = _dereq_(235).Symbol;
31023
31169
  module.exports = function(name){
31024
31170
  return store[name] || (store[name] =
31025
- Symbol && Symbol[name] || (Symbol || _dereq_(281))('Symbol.' + name));
31026
- };
31027
- },{"232":232,"264":264,"281":281}],284:[function(_dereq_,module,exports){
31028
- var classof = _dereq_(214)
31029
- , ITERATOR = _dereq_(283)('iterator')
31030
- , Iterators = _dereq_(247);
31031
- module.exports = _dereq_(220).getIteratorMethod = function(it){
31032
- if(it != undefined)return it[ITERATOR] || it['@@iterator'] || Iterators[classof(it)];
31033
- };
31034
- },{"214":214,"220":220,"247":247,"283":283}],285:[function(_dereq_,module,exports){
31171
+ Symbol && Symbol[name] || (Symbol || _dereq_(286))('Symbol.' + name));
31172
+ };
31173
+ },{"235":235,"268":268,"286":286}],289:[function(_dereq_,module,exports){
31174
+ var classof = _dereq_(216)
31175
+ , ITERATOR = _dereq_(288)('iterator')
31176
+ , Iterators = _dereq_(251);
31177
+ module.exports = _dereq_(222).getIteratorMethod = function(it){
31178
+ if(it != undefined)return it[ITERATOR]
31179
+ || it['@@iterator']
31180
+ || Iterators[classof(it)];
31181
+ };
31182
+ },{"216":216,"222":222,"251":251,"288":288}],290:[function(_dereq_,module,exports){
31035
31183
  'use strict';
31036
- var $ = _dereq_(248)
31037
- , SUPPORT_DESC = _dereq_(273)
31038
- , createDesc = _dereq_(259)
31039
- , html = _dereq_(235)
31040
- , cel = _dereq_(224)
31041
- , has = _dereq_(233)
31042
- , cof = _dereq_(215)
31043
- , $def = _dereq_(222)
31044
- , invoke = _dereq_(236)
31045
- , arrayMethod = _dereq_(212)
31046
- , IE_PROTO = _dereq_(281)('__proto__')
31047
- , isObject = _dereq_(240)
31184
+ var $ = _dereq_(252)
31185
+ , SUPPORT_DESC = _dereq_(278)
31186
+ , createDesc = _dereq_(263)
31187
+ , html = _dereq_(238)
31188
+ , cel = _dereq_(226)
31189
+ , has = _dereq_(236)
31190
+ , cof = _dereq_(217)
31191
+ , $def = _dereq_(224)
31192
+ , invoke = _dereq_(239)
31193
+ , arrayMethod = _dereq_(214)
31194
+ , IE_PROTO = _dereq_(286)('__proto__')
31195
+ , isObject = _dereq_(244)
31048
31196
  , anObject = _dereq_(210)
31049
31197
  , aFunction = _dereq_(209)
31050
- , toObject = _dereq_(280)
31051
- , toIObject = _dereq_(278)
31052
- , toInteger = _dereq_(277)
31053
- , toIndex = _dereq_(276)
31054
- , toLength = _dereq_(279)
31055
- , IObject = _dereq_(237)
31056
- , fails = _dereq_(227)
31198
+ , toObject = _dereq_(285)
31199
+ , toIObject = _dereq_(283)
31200
+ , toInteger = _dereq_(282)
31201
+ , toIndex = _dereq_(281)
31202
+ , toLength = _dereq_(284)
31203
+ , IObject = _dereq_(240)
31204
+ , fails = _dereq_(230)
31057
31205
  , ObjectProto = Object.prototype
31058
31206
  , A = []
31059
31207
  , _slice = A.slice
@@ -31061,7 +31209,7 @@ var $ = _dereq_(248)
31061
31209
  , defineProperty = $.setDesc
31062
31210
  , getOwnDescriptor = $.getDesc
31063
31211
  , defineProperties = $.setDescs
31064
- , $indexOf = _dereq_(211)(false)
31212
+ , $indexOf = _dereq_(213)(false)
31065
31213
  , factories = {}
31066
31214
  , IE8_DOM_DEFINE;
31067
31215
 
@@ -31222,7 +31370,7 @@ $def($def.P + $def.F * (IObject != Object), 'Array', {
31222
31370
  });
31223
31371
 
31224
31372
  // 22.1.2.2 / 15.4.3.2 Array.isArray(arg)
31225
- $def($def.S, 'Array', {isArray: function(arg){ return cof(arg) == 'Array'; }});
31373
+ $def($def.S, 'Array', {isArray: _dereq_(242)});
31226
31374
 
31227
31375
  var createArrayReduce = function(isRight){
31228
31376
  return function(callbackfn, memo){
@@ -31307,113 +31455,81 @@ $def($def.P + $def.F * brokenDate, 'Date', {
31307
31455
  ':' + lz(d.getUTCSeconds()) + '.' + (m > 99 ? m : '0' + lz(m)) + 'Z';
31308
31456
  }
31309
31457
  });
31310
- },{"209":209,"210":210,"211":211,"212":212,"215":215,"222":222,"224":224,"227":227,"233":233,"235":235,"236":236,"237":237,"240":240,"248":248,"259":259,"273":273,"276":276,"277":277,"278":278,"279":279,"280":280,"281":281}],286:[function(_dereq_,module,exports){
31458
+ },{"209":209,"210":210,"213":213,"214":214,"217":217,"224":224,"226":226,"230":230,"236":236,"238":238,"239":239,"240":240,"242":242,"244":244,"252":252,"263":263,"278":278,"281":281,"282":282,"283":283,"284":284,"285":285,"286":286}],291:[function(_dereq_,module,exports){
31459
+ // 22.1.3.3 Array.prototype.copyWithin(target, start, end = this.length)
31311
31460
  'use strict';
31312
- var $def = _dereq_(222)
31313
- , toObject = _dereq_(280)
31314
- , toIndex = _dereq_(276)
31315
- , toLength = _dereq_(279);
31316
- $def($def.P, 'Array', {
31317
- // 22.1.3.3 Array.prototype.copyWithin(target, start, end = this.length)
31318
- copyWithin: function copyWithin(target/* = 0 */, start /* = 0, end = @length */){
31319
- var O = toObject(this)
31320
- , len = toLength(O.length)
31321
- , to = toIndex(target, len)
31322
- , from = toIndex(start, len)
31323
- , end = arguments[2]
31324
- , fin = end === undefined ? len : toIndex(end, len)
31325
- , count = Math.min(fin - from, len - to)
31326
- , inc = 1;
31327
- if(from < to && to < from + count){
31328
- inc = -1;
31329
- from = from + count - 1;
31330
- to = to + count - 1;
31331
- }
31332
- while(count-- > 0){
31333
- if(from in O)O[to] = O[from];
31334
- else delete O[to];
31335
- to += inc;
31336
- from += inc;
31337
- } return O;
31338
- }
31339
- });
31340
- _dereq_(282)('copyWithin');
31341
- },{"222":222,"276":276,"279":279,"280":280,"282":282}],287:[function(_dereq_,module,exports){
31342
- 'use strict';
31343
- var $def = _dereq_(222)
31344
- , toObject = _dereq_(280)
31345
- , toIndex = _dereq_(276)
31346
- , toLength = _dereq_(279);
31347
- $def($def.P, 'Array', {
31348
- // 22.1.3.6 Array.prototype.fill(value, start = 0, end = this.length)
31349
- fill: function fill(value /*, start = 0, end = @length */){
31350
- var O = toObject(this, true)
31351
- , length = toLength(O.length)
31352
- , index = toIndex(arguments[1], length)
31353
- , end = arguments[2]
31354
- , endPos = end === undefined ? length : toIndex(end, length);
31355
- while(endPos > index)O[index++] = value;
31356
- return O;
31357
- }
31358
- });
31359
- _dereq_(282)('fill');
31360
- },{"222":222,"276":276,"279":279,"280":280,"282":282}],288:[function(_dereq_,module,exports){
31461
+ var $def = _dereq_(224);
31462
+
31463
+ $def($def.P, 'Array', {copyWithin: _dereq_(211)});
31464
+
31465
+ _dereq_(287)('copyWithin');
31466
+ },{"211":211,"224":224,"287":287}],292:[function(_dereq_,module,exports){
31467
+ // 22.1.3.6 Array.prototype.fill(value, start = 0, end = this.length)
31468
+ var $def = _dereq_(224);
31469
+
31470
+ $def($def.P, 'Array', {fill: _dereq_(212)});
31471
+
31472
+ _dereq_(287)('fill');
31473
+ },{"212":212,"224":224,"287":287}],293:[function(_dereq_,module,exports){
31361
31474
  'use strict';
31362
31475
  // 22.1.3.9 Array.prototype.findIndex(predicate, thisArg = undefined)
31363
31476
  var KEY = 'findIndex'
31364
- , $def = _dereq_(222)
31477
+ , $def = _dereq_(224)
31365
31478
  , forced = true
31366
- , $find = _dereq_(212)(6);
31479
+ , $find = _dereq_(214)(6);
31367
31480
  // Shouldn't skip holes
31368
31481
  if(KEY in [])Array(1)[KEY](function(){ forced = false; });
31369
31482
  $def($def.P + $def.F * forced, 'Array', {
31370
31483
  findIndex: function findIndex(callbackfn/*, that = undefined */){
31371
- return $find(this, callbackfn, arguments[1]);
31484
+ return $find(this, callbackfn, arguments.length > 1 ? arguments[1] : undefined);
31372
31485
  }
31373
31486
  });
31374
- _dereq_(282)(KEY);
31375
- },{"212":212,"222":222,"282":282}],289:[function(_dereq_,module,exports){
31487
+ _dereq_(287)(KEY);
31488
+ },{"214":214,"224":224,"287":287}],294:[function(_dereq_,module,exports){
31376
31489
  'use strict';
31377
31490
  // 22.1.3.8 Array.prototype.find(predicate, thisArg = undefined)
31378
31491
  var KEY = 'find'
31379
- , $def = _dereq_(222)
31492
+ , $def = _dereq_(224)
31380
31493
  , forced = true
31381
- , $find = _dereq_(212)(5);
31494
+ , $find = _dereq_(214)(5);
31382
31495
  // Shouldn't skip holes
31383
31496
  if(KEY in [])Array(1)[KEY](function(){ forced = false; });
31384
31497
  $def($def.P + $def.F * forced, 'Array', {
31385
31498
  find: function find(callbackfn/*, that = undefined */){
31386
- return $find(this, callbackfn, arguments[1]);
31499
+ return $find(this, callbackfn, arguments.length > 1 ? arguments[1] : undefined);
31387
31500
  }
31388
31501
  });
31389
- _dereq_(282)(KEY);
31390
- },{"212":212,"222":222,"282":282}],290:[function(_dereq_,module,exports){
31502
+ _dereq_(287)(KEY);
31503
+ },{"214":214,"224":224,"287":287}],295:[function(_dereq_,module,exports){
31391
31504
  'use strict';
31392
- var ctx = _dereq_(221)
31393
- , $def = _dereq_(222)
31394
- , toObject = _dereq_(280)
31395
- , call = _dereq_(242)
31396
- , isArrayIter = _dereq_(238)
31397
- , toLength = _dereq_(279)
31398
- , getIterFn = _dereq_(284);
31399
- $def($def.S + $def.F * !_dereq_(245)(function(iter){ Array.from(iter); }), 'Array', {
31505
+ var ctx = _dereq_(223)
31506
+ , $def = _dereq_(224)
31507
+ , toObject = _dereq_(285)
31508
+ , call = _dereq_(246)
31509
+ , isArrayIter = _dereq_(241)
31510
+ , toLength = _dereq_(284)
31511
+ , getIterFn = _dereq_(289);
31512
+ $def($def.S + $def.F * !_dereq_(249)(function(iter){ Array.from(iter); }), 'Array', {
31400
31513
  // 22.1.2.1 Array.from(arrayLike, mapfn = undefined, thisArg = undefined)
31401
31514
  from: function from(arrayLike/*, mapfn = undefined, thisArg = undefined*/){
31402
31515
  var O = toObject(arrayLike)
31403
31516
  , C = typeof this == 'function' ? this : Array
31404
- , mapfn = arguments[1]
31517
+ , $$ = arguments
31518
+ , $$len = $$.length
31519
+ , mapfn = $$len > 1 ? $$[1] : undefined
31405
31520
  , mapping = mapfn !== undefined
31406
31521
  , index = 0
31407
31522
  , iterFn = getIterFn(O)
31408
31523
  , length, result, step, iterator;
31409
- if(mapping)mapfn = ctx(mapfn, arguments[2], 2);
31524
+ if(mapping)mapfn = ctx(mapfn, $$len > 2 ? $$[2] : undefined, 2);
31410
31525
  // if object isn't iterable or it's array with default iterator - use simple case
31411
31526
  if(iterFn != undefined && !(C == Array && isArrayIter(iterFn))){
31412
31527
  for(iterator = iterFn.call(O), result = new C; !(step = iterator.next()).done; index++){
31413
31528
  result[index] = mapping ? call(iterator, mapfn, [step.value, index], true) : step.value;
31414
31529
  }
31415
31530
  } else {
31416
- for(result = new C(length = toLength(O.length)); length > index; index++){
31531
+ length = toLength(O.length);
31532
+ for(result = new C(length); length > index; index++){
31417
31533
  result[index] = mapping ? mapfn(O[index], index) : O[index];
31418
31534
  }
31419
31535
  }
@@ -31421,18 +31537,19 @@ $def($def.S + $def.F * !_dereq_(245)(function(iter){ Array.from(iter); }), 'Arra
31421
31537
  return result;
31422
31538
  }
31423
31539
  });
31424
- },{"221":221,"222":222,"238":238,"242":242,"245":245,"279":279,"280":280,"284":284}],291:[function(_dereq_,module,exports){
31540
+
31541
+ },{"223":223,"224":224,"241":241,"246":246,"249":249,"284":284,"285":285,"289":289}],296:[function(_dereq_,module,exports){
31425
31542
  'use strict';
31426
- var setUnscope = _dereq_(282)
31427
- , step = _dereq_(246)
31428
- , Iterators = _dereq_(247)
31429
- , toIObject = _dereq_(278);
31543
+ var setUnscope = _dereq_(287)
31544
+ , step = _dereq_(250)
31545
+ , Iterators = _dereq_(251)
31546
+ , toIObject = _dereq_(283);
31430
31547
 
31431
31548
  // 22.1.3.4 Array.prototype.entries()
31432
31549
  // 22.1.3.13 Array.prototype.keys()
31433
31550
  // 22.1.3.29 Array.prototype.values()
31434
31551
  // 22.1.3.30 Array.prototype[@@iterator]()
31435
- _dereq_(244)(Array, 'Array', function(iterated, kind){
31552
+ _dereq_(248)(Array, 'Array', function(iterated, kind){
31436
31553
  this._t = toIObject(iterated); // target
31437
31554
  this._i = 0; // next index
31438
31555
  this._k = kind; // kind
@@ -31456,27 +31573,33 @@ Iterators.Arguments = Iterators.Array;
31456
31573
  setUnscope('keys');
31457
31574
  setUnscope('values');
31458
31575
  setUnscope('entries');
31459
- },{"244":244,"246":246,"247":247,"278":278,"282":282}],292:[function(_dereq_,module,exports){
31576
+ },{"248":248,"250":250,"251":251,"283":283,"287":287}],297:[function(_dereq_,module,exports){
31460
31577
  'use strict';
31461
- var $def = _dereq_(222);
31462
- $def($def.S, 'Array', {
31578
+ var $def = _dereq_(224);
31579
+
31580
+ // WebKit Array.of isn't generic
31581
+ $def($def.S + $def.F * _dereq_(230)(function(){
31582
+ function F(){}
31583
+ return !(Array.of.call(F) instanceof F);
31584
+ }), 'Array', {
31463
31585
  // 22.1.2.3 Array.of( ...items)
31464
31586
  of: function of(/* ...args */){
31465
31587
  var index = 0
31466
- , length = arguments.length
31467
- , result = new (typeof this == 'function' ? this : Array)(length);
31468
- while(length > index)result[index] = arguments[index++];
31469
- result.length = length;
31588
+ , $$ = arguments
31589
+ , $$len = $$.length
31590
+ , result = new (typeof this == 'function' ? this : Array)($$len);
31591
+ while($$len > index)result[index] = $$[index++];
31592
+ result.length = $$len;
31470
31593
  return result;
31471
31594
  }
31472
31595
  });
31473
- },{"222":222}],293:[function(_dereq_,module,exports){
31474
- _dereq_(266)(Array);
31475
- },{"266":266}],294:[function(_dereq_,module,exports){
31596
+ },{"224":224,"230":230}],298:[function(_dereq_,module,exports){
31597
+ _dereq_(271)(Array);
31598
+ },{"271":271}],299:[function(_dereq_,module,exports){
31476
31599
  'use strict';
31477
- var $ = _dereq_(248)
31478
- , isObject = _dereq_(240)
31479
- , HAS_INSTANCE = _dereq_(283)('hasInstance')
31600
+ var $ = _dereq_(252)
31601
+ , isObject = _dereq_(244)
31602
+ , HAS_INSTANCE = _dereq_(288)('hasInstance')
31480
31603
  , FunctionProto = Function.prototype;
31481
31604
  // 19.2.3.6 Function.prototype[@@hasInstance](V)
31482
31605
  if(!(HAS_INSTANCE in FunctionProto))$.setDesc(FunctionProto, HAS_INSTANCE, {value: function(O){
@@ -31486,15 +31609,15 @@ if(!(HAS_INSTANCE in FunctionProto))$.setDesc(FunctionProto, HAS_INSTANCE, {valu
31486
31609
  while(O = $.getProto(O))if(this.prototype === O)return true;
31487
31610
  return false;
31488
31611
  }});
31489
- },{"240":240,"248":248,"283":283}],295:[function(_dereq_,module,exports){
31490
- var setDesc = _dereq_(248).setDesc
31491
- , createDesc = _dereq_(259)
31492
- , has = _dereq_(233)
31612
+ },{"244":244,"252":252,"288":288}],300:[function(_dereq_,module,exports){
31613
+ var setDesc = _dereq_(252).setDesc
31614
+ , createDesc = _dereq_(263)
31615
+ , has = _dereq_(236)
31493
31616
  , FProto = Function.prototype
31494
31617
  , nameRE = /^\s*function ([^ (]*)/
31495
31618
  , NAME = 'name';
31496
31619
  // 19.2.4.2 name
31497
- NAME in FProto || _dereq_(273) && setDesc(FProto, NAME, {
31620
+ NAME in FProto || _dereq_(278) && setDesc(FProto, NAME, {
31498
31621
  configurable: true,
31499
31622
  get: function(){
31500
31623
  var match = ('' + this).match(nameRE)
@@ -31503,13 +31626,13 @@ NAME in FProto || _dereq_(273) && setDesc(FProto, NAME, {
31503
31626
  return name;
31504
31627
  }
31505
31628
  });
31506
- },{"233":233,"248":248,"259":259,"273":273}],296:[function(_dereq_,module,exports){
31629
+ },{"236":236,"252":252,"263":263,"278":278}],301:[function(_dereq_,module,exports){
31507
31630
  'use strict';
31508
- var strong = _dereq_(216);
31631
+ var strong = _dereq_(218);
31509
31632
 
31510
31633
  // 23.1 Map Objects
31511
- _dereq_(219)('Map', function(get){
31512
- return function Map(){ return get(this, arguments[0]); };
31634
+ _dereq_(221)('Map', function(get){
31635
+ return function Map(){ return get(this, arguments.length > 0 ? arguments[0] : undefined); };
31513
31636
  }, {
31514
31637
  // 23.1.3.6 Map.prototype.get(key)
31515
31638
  get: function get(key){
@@ -31521,14 +31644,14 @@ _dereq_(219)('Map', function(get){
31521
31644
  return strong.def(this, key === 0 ? 0 : key, value);
31522
31645
  }
31523
31646
  }, strong, true);
31524
- },{"216":216,"219":219}],297:[function(_dereq_,module,exports){
31647
+ },{"218":218,"221":221}],302:[function(_dereq_,module,exports){
31525
31648
  // 20.2.2.3 Math.acosh(x)
31526
- var $def = _dereq_(222)
31527
- , log1p = _dereq_(251)
31649
+ var $def = _dereq_(224)
31650
+ , log1p = _dereq_(255)
31528
31651
  , sqrt = Math.sqrt
31529
31652
  , $acosh = Math.acosh;
31530
31653
 
31531
- // V8 bug https://code.google.com/p/v8/issues/detail?id=3509
31654
+ // V8 bug https://code.google.com/p/v8/issues/detail?id=3509
31532
31655
  $def($def.S + $def.F * !($acosh && Math.floor($acosh(Number.MAX_VALUE)) == 710), 'Math', {
31533
31656
  acosh: function acosh(x){
31534
31657
  return (x = +x) < 1 ? NaN : x > 94906265.62425156
@@ -31536,46 +31659,46 @@ $def($def.S + $def.F * !($acosh && Math.floor($acosh(Number.MAX_VALUE)) == 710),
31536
31659
  : log1p(x - 1 + sqrt(x - 1) * sqrt(x + 1));
31537
31660
  }
31538
31661
  });
31539
- },{"222":222,"251":251}],298:[function(_dereq_,module,exports){
31662
+ },{"224":224,"255":255}],303:[function(_dereq_,module,exports){
31540
31663
  // 20.2.2.5 Math.asinh(x)
31541
- var $def = _dereq_(222);
31664
+ var $def = _dereq_(224);
31542
31665
 
31543
31666
  function asinh(x){
31544
31667
  return !isFinite(x = +x) || x == 0 ? x : x < 0 ? -asinh(-x) : Math.log(x + Math.sqrt(x * x + 1));
31545
31668
  }
31546
31669
 
31547
31670
  $def($def.S, 'Math', {asinh: asinh});
31548
- },{"222":222}],299:[function(_dereq_,module,exports){
31671
+ },{"224":224}],304:[function(_dereq_,module,exports){
31549
31672
  // 20.2.2.7 Math.atanh(x)
31550
- var $def = _dereq_(222);
31673
+ var $def = _dereq_(224);
31551
31674
 
31552
31675
  $def($def.S, 'Math', {
31553
31676
  atanh: function atanh(x){
31554
31677
  return (x = +x) == 0 ? x : Math.log((1 + x) / (1 - x)) / 2;
31555
31678
  }
31556
31679
  });
31557
- },{"222":222}],300:[function(_dereq_,module,exports){
31680
+ },{"224":224}],305:[function(_dereq_,module,exports){
31558
31681
  // 20.2.2.9 Math.cbrt(x)
31559
- var $def = _dereq_(222)
31560
- , sign = _dereq_(265);
31682
+ var $def = _dereq_(224)
31683
+ , sign = _dereq_(269);
31561
31684
 
31562
31685
  $def($def.S, 'Math', {
31563
31686
  cbrt: function cbrt(x){
31564
31687
  return sign(x = +x) * Math.pow(Math.abs(x), 1 / 3);
31565
31688
  }
31566
31689
  });
31567
- },{"222":222,"265":265}],301:[function(_dereq_,module,exports){
31690
+ },{"224":224,"269":269}],306:[function(_dereq_,module,exports){
31568
31691
  // 20.2.2.11 Math.clz32(x)
31569
- var $def = _dereq_(222);
31692
+ var $def = _dereq_(224);
31570
31693
 
31571
31694
  $def($def.S, 'Math', {
31572
31695
  clz32: function clz32(x){
31573
31696
  return (x >>>= 0) ? 31 - Math.floor(Math.log(x + 0.5) * Math.LOG2E) : 32;
31574
31697
  }
31575
31698
  });
31576
- },{"222":222}],302:[function(_dereq_,module,exports){
31699
+ },{"224":224}],307:[function(_dereq_,module,exports){
31577
31700
  // 20.2.2.12 Math.cosh(x)
31578
- var $def = _dereq_(222)
31701
+ var $def = _dereq_(224)
31579
31702
  , exp = Math.exp;
31580
31703
 
31581
31704
  $def($def.S, 'Math', {
@@ -31583,15 +31706,15 @@ $def($def.S, 'Math', {
31583
31706
  return (exp(x = +x) + exp(-x)) / 2;
31584
31707
  }
31585
31708
  });
31586
- },{"222":222}],303:[function(_dereq_,module,exports){
31709
+ },{"224":224}],308:[function(_dereq_,module,exports){
31587
31710
  // 20.2.2.14 Math.expm1(x)
31588
- var $def = _dereq_(222);
31711
+ var $def = _dereq_(224);
31589
31712
 
31590
- $def($def.S, 'Math', {expm1: _dereq_(226)});
31591
- },{"222":222,"226":226}],304:[function(_dereq_,module,exports){
31713
+ $def($def.S, 'Math', {expm1: _dereq_(228)});
31714
+ },{"224":224,"228":228}],309:[function(_dereq_,module,exports){
31592
31715
  // 20.2.2.16 Math.fround(x)
31593
- var $def = _dereq_(222)
31594
- , sign = _dereq_(265)
31716
+ var $def = _dereq_(224)
31717
+ , sign = _dereq_(269)
31595
31718
  , pow = Math.pow
31596
31719
  , EPSILON = pow(2, -52)
31597
31720
  , EPSILON32 = pow(2, -23)
@@ -31615,20 +31738,21 @@ $def($def.S, 'Math', {
31615
31738
  return $sign * result;
31616
31739
  }
31617
31740
  });
31618
- },{"222":222,"265":265}],305:[function(_dereq_,module,exports){
31741
+ },{"224":224,"269":269}],310:[function(_dereq_,module,exports){
31619
31742
  // 20.2.2.17 Math.hypot([value1[, value2[, … ]]])
31620
- var $def = _dereq_(222)
31743
+ var $def = _dereq_(224)
31621
31744
  , abs = Math.abs;
31622
31745
 
31623
31746
  $def($def.S, 'Math', {
31624
31747
  hypot: function hypot(value1, value2){ // eslint-disable-line no-unused-vars
31625
- var sum = 0
31626
- , i = 0
31627
- , len = arguments.length
31628
- , larg = 0
31748
+ var sum = 0
31749
+ , i = 0
31750
+ , $$ = arguments
31751
+ , $$len = $$.length
31752
+ , larg = 0
31629
31753
  , arg, div;
31630
- while(i < len){
31631
- arg = abs(arguments[i++]);
31754
+ while(i < $$len){
31755
+ arg = abs($$[i++]);
31632
31756
  if(larg < arg){
31633
31757
  div = larg / arg;
31634
31758
  sum = sum * div * div + 1;
@@ -31641,13 +31765,14 @@ $def($def.S, 'Math', {
31641
31765
  return larg === Infinity ? Infinity : larg * Math.sqrt(sum);
31642
31766
  }
31643
31767
  });
31644
- },{"222":222}],306:[function(_dereq_,module,exports){
31768
+ },{"224":224}],311:[function(_dereq_,module,exports){
31645
31769
  // 20.2.2.18 Math.imul(x, y)
31646
- var $def = _dereq_(222);
31770
+ var $def = _dereq_(224)
31771
+ , $imul = Math.imul;
31647
31772
 
31648
- // WebKit fails with big numbers
31649
- $def($def.S + $def.F * _dereq_(227)(function(){
31650
- return Math.imul(0xffffffff, 5) != -5;
31773
+ // some WebKit versions fails with big numbers, some has wrong arity
31774
+ $def($def.S + $def.F * _dereq_(230)(function(){
31775
+ return $imul(0xffffffff, 5) != -5 || $imul.length != 2;
31651
31776
  }), 'Math', {
31652
31777
  imul: function imul(x, y){
31653
31778
  var UINT16 = 0xffff
@@ -31658,51 +31783,54 @@ $def($def.S + $def.F * _dereq_(227)(function(){
31658
31783
  return 0 | xl * yl + ((UINT16 & xn >>> 16) * yl + xl * (UINT16 & yn >>> 16) << 16 >>> 0);
31659
31784
  }
31660
31785
  });
31661
- },{"222":222,"227":227}],307:[function(_dereq_,module,exports){
31786
+ },{"224":224,"230":230}],312:[function(_dereq_,module,exports){
31662
31787
  // 20.2.2.21 Math.log10(x)
31663
- var $def = _dereq_(222);
31788
+ var $def = _dereq_(224);
31664
31789
 
31665
31790
  $def($def.S, 'Math', {
31666
31791
  log10: function log10(x){
31667
31792
  return Math.log(x) / Math.LN10;
31668
31793
  }
31669
31794
  });
31670
- },{"222":222}],308:[function(_dereq_,module,exports){
31795
+ },{"224":224}],313:[function(_dereq_,module,exports){
31671
31796
  // 20.2.2.20 Math.log1p(x)
31672
- var $def = _dereq_(222);
31797
+ var $def = _dereq_(224);
31673
31798
 
31674
- $def($def.S, 'Math', {log1p: _dereq_(251)});
31675
- },{"222":222,"251":251}],309:[function(_dereq_,module,exports){
31799
+ $def($def.S, 'Math', {log1p: _dereq_(255)});
31800
+ },{"224":224,"255":255}],314:[function(_dereq_,module,exports){
31676
31801
  // 20.2.2.22 Math.log2(x)
31677
- var $def = _dereq_(222);
31802
+ var $def = _dereq_(224);
31678
31803
 
31679
31804
  $def($def.S, 'Math', {
31680
31805
  log2: function log2(x){
31681
31806
  return Math.log(x) / Math.LN2;
31682
31807
  }
31683
31808
  });
31684
- },{"222":222}],310:[function(_dereq_,module,exports){
31809
+ },{"224":224}],315:[function(_dereq_,module,exports){
31685
31810
  // 20.2.2.28 Math.sign(x)
31686
- var $def = _dereq_(222);
31811
+ var $def = _dereq_(224);
31687
31812
 
31688
- $def($def.S, 'Math', {sign: _dereq_(265)});
31689
- },{"222":222,"265":265}],311:[function(_dereq_,module,exports){
31813
+ $def($def.S, 'Math', {sign: _dereq_(269)});
31814
+ },{"224":224,"269":269}],316:[function(_dereq_,module,exports){
31690
31815
  // 20.2.2.30 Math.sinh(x)
31691
- var $def = _dereq_(222)
31692
- , expm1 = _dereq_(226)
31816
+ var $def = _dereq_(224)
31817
+ , expm1 = _dereq_(228)
31693
31818
  , exp = Math.exp;
31694
31819
 
31695
- $def($def.S, 'Math', {
31820
+ // V8 near Chromium 38 has a problem with very small numbers
31821
+ $def($def.S + $def.F * _dereq_(230)(function(){
31822
+ return !Math.sinh(-2e-17) != -2e-17;
31823
+ }), 'Math', {
31696
31824
  sinh: function sinh(x){
31697
31825
  return Math.abs(x = +x) < 1
31698
31826
  ? (expm1(x) - expm1(-x)) / 2
31699
31827
  : (exp(x - 1) - exp(-x - 1)) * (Math.E / 2);
31700
31828
  }
31701
31829
  });
31702
- },{"222":222,"226":226}],312:[function(_dereq_,module,exports){
31830
+ },{"224":224,"228":228,"230":230}],317:[function(_dereq_,module,exports){
31703
31831
  // 20.2.2.33 Math.tanh(x)
31704
- var $def = _dereq_(222)
31705
- , expm1 = _dereq_(226)
31832
+ var $def = _dereq_(224)
31833
+ , expm1 = _dereq_(228)
31706
31834
  , exp = Math.exp;
31707
31835
 
31708
31836
  $def($def.S, 'Math', {
@@ -31712,23 +31840,23 @@ $def($def.S, 'Math', {
31712
31840
  return a == Infinity ? 1 : b == Infinity ? -1 : (a - b) / (exp(x) + exp(-x));
31713
31841
  }
31714
31842
  });
31715
- },{"222":222,"226":226}],313:[function(_dereq_,module,exports){
31843
+ },{"224":224,"228":228}],318:[function(_dereq_,module,exports){
31716
31844
  // 20.2.2.34 Math.trunc(x)
31717
- var $def = _dereq_(222);
31845
+ var $def = _dereq_(224);
31718
31846
 
31719
31847
  $def($def.S, 'Math', {
31720
31848
  trunc: function trunc(it){
31721
31849
  return (it > 0 ? Math.floor : Math.ceil)(it);
31722
31850
  }
31723
31851
  });
31724
- },{"222":222}],314:[function(_dereq_,module,exports){
31852
+ },{"224":224}],319:[function(_dereq_,module,exports){
31725
31853
  'use strict';
31726
- var $ = _dereq_(248)
31727
- , global = _dereq_(232)
31728
- , has = _dereq_(233)
31729
- , cof = _dereq_(215)
31730
- , isObject = _dereq_(240)
31731
- , fails = _dereq_(227)
31854
+ var $ = _dereq_(252)
31855
+ , global = _dereq_(235)
31856
+ , has = _dereq_(236)
31857
+ , cof = _dereq_(217)
31858
+ , isObject = _dereq_(244)
31859
+ , fails = _dereq_(230)
31732
31860
  , NUMBER = 'Number'
31733
31861
  , $Number = global[NUMBER]
31734
31862
  , Base = $Number
@@ -31759,55 +31887,54 @@ if(!($Number('0o1') && $Number('0b1'))){
31759
31887
  && (BROKEN_COF ? fails(function(){ proto.valueOf.call(that); }) : cof(that) != NUMBER)
31760
31888
  ? new Base(toNumber(it)) : toNumber(it);
31761
31889
  };
31762
- $.each.call(_dereq_(273) ? $.getNames(Base) : (
31763
- // ES3:
31764
- 'MAX_VALUE,MIN_VALUE,NaN,NEGATIVE_INFINITY,POSITIVE_INFINITY,' +
31765
- // ES6 (in case, if modules with ES6 Number statics required before):
31766
- 'EPSILON,isFinite,isInteger,isNaN,isSafeInteger,MAX_SAFE_INTEGER,' +
31767
- 'MIN_SAFE_INTEGER,parseFloat,parseInt,isInteger'
31768
- ).split(','), function(key){
31769
- if(has(Base, key) && !has($Number, key)){
31770
- $.setDesc($Number, key, $.getDesc(Base, key));
31771
- }
31890
+ $.each.call(_dereq_(278) ? $.getNames(Base) : (
31891
+ // ES3:
31892
+ 'MAX_VALUE,MIN_VALUE,NaN,NEGATIVE_INFINITY,POSITIVE_INFINITY,' +
31893
+ // ES6 (in case, if modules with ES6 Number statics required before):
31894
+ 'EPSILON,isFinite,isInteger,isNaN,isSafeInteger,MAX_SAFE_INTEGER,' +
31895
+ 'MIN_SAFE_INTEGER,parseFloat,parseInt,isInteger'
31896
+ ).split(','), function(key){
31897
+ if(has(Base, key) && !has($Number, key)){
31898
+ $.setDesc($Number, key, $.getDesc(Base, key));
31772
31899
  }
31773
- );
31900
+ });
31774
31901
  $Number.prototype = proto;
31775
31902
  proto.constructor = $Number;
31776
- _dereq_(260)(global, NUMBER, $Number);
31903
+ _dereq_(264)(global, NUMBER, $Number);
31777
31904
  }
31778
- },{"215":215,"227":227,"232":232,"233":233,"240":240,"248":248,"260":260,"273":273}],315:[function(_dereq_,module,exports){
31905
+ },{"217":217,"230":230,"235":235,"236":236,"244":244,"252":252,"264":264,"278":278}],320:[function(_dereq_,module,exports){
31779
31906
  // 20.1.2.1 Number.EPSILON
31780
- var $def = _dereq_(222);
31907
+ var $def = _dereq_(224);
31781
31908
 
31782
31909
  $def($def.S, 'Number', {EPSILON: Math.pow(2, -52)});
31783
- },{"222":222}],316:[function(_dereq_,module,exports){
31910
+ },{"224":224}],321:[function(_dereq_,module,exports){
31784
31911
  // 20.1.2.2 Number.isFinite(number)
31785
- var $def = _dereq_(222)
31786
- , _isFinite = _dereq_(232).isFinite;
31912
+ var $def = _dereq_(224)
31913
+ , _isFinite = _dereq_(235).isFinite;
31787
31914
 
31788
31915
  $def($def.S, 'Number', {
31789
31916
  isFinite: function isFinite(it){
31790
31917
  return typeof it == 'number' && _isFinite(it);
31791
31918
  }
31792
31919
  });
31793
- },{"222":222,"232":232}],317:[function(_dereq_,module,exports){
31920
+ },{"224":224,"235":235}],322:[function(_dereq_,module,exports){
31794
31921
  // 20.1.2.3 Number.isInteger(number)
31795
- var $def = _dereq_(222);
31922
+ var $def = _dereq_(224);
31796
31923
 
31797
- $def($def.S, 'Number', {isInteger: _dereq_(239)});
31798
- },{"222":222,"239":239}],318:[function(_dereq_,module,exports){
31924
+ $def($def.S, 'Number', {isInteger: _dereq_(243)});
31925
+ },{"224":224,"243":243}],323:[function(_dereq_,module,exports){
31799
31926
  // 20.1.2.4 Number.isNaN(number)
31800
- var $def = _dereq_(222);
31927
+ var $def = _dereq_(224);
31801
31928
 
31802
31929
  $def($def.S, 'Number', {
31803
31930
  isNaN: function isNaN(number){
31804
31931
  return number != number;
31805
31932
  }
31806
31933
  });
31807
- },{"222":222}],319:[function(_dereq_,module,exports){
31934
+ },{"224":224}],324:[function(_dereq_,module,exports){
31808
31935
  // 20.1.2.5 Number.isSafeInteger(number)
31809
- var $def = _dereq_(222)
31810
- , isInteger = _dereq_(239)
31936
+ var $def = _dereq_(224)
31937
+ , isInteger = _dereq_(243)
31811
31938
  , abs = Math.abs;
31812
31939
 
31813
31940
  $def($def.S, 'Number', {
@@ -31815,156 +31942,158 @@ $def($def.S, 'Number', {
31815
31942
  return isInteger(number) && abs(number) <= 0x1fffffffffffff;
31816
31943
  }
31817
31944
  });
31818
- },{"222":222,"239":239}],320:[function(_dereq_,module,exports){
31945
+ },{"224":224,"243":243}],325:[function(_dereq_,module,exports){
31819
31946
  // 20.1.2.6 Number.MAX_SAFE_INTEGER
31820
- var $def = _dereq_(222);
31947
+ var $def = _dereq_(224);
31821
31948
 
31822
31949
  $def($def.S, 'Number', {MAX_SAFE_INTEGER: 0x1fffffffffffff});
31823
- },{"222":222}],321:[function(_dereq_,module,exports){
31950
+ },{"224":224}],326:[function(_dereq_,module,exports){
31824
31951
  // 20.1.2.10 Number.MIN_SAFE_INTEGER
31825
- var $def = _dereq_(222);
31952
+ var $def = _dereq_(224);
31826
31953
 
31827
31954
  $def($def.S, 'Number', {MIN_SAFE_INTEGER: -0x1fffffffffffff});
31828
- },{"222":222}],322:[function(_dereq_,module,exports){
31955
+ },{"224":224}],327:[function(_dereq_,module,exports){
31829
31956
  // 20.1.2.12 Number.parseFloat(string)
31830
- var $def = _dereq_(222);
31957
+ var $def = _dereq_(224);
31831
31958
 
31832
31959
  $def($def.S, 'Number', {parseFloat: parseFloat});
31833
- },{"222":222}],323:[function(_dereq_,module,exports){
31960
+ },{"224":224}],328:[function(_dereq_,module,exports){
31834
31961
  // 20.1.2.13 Number.parseInt(string, radix)
31835
- var $def = _dereq_(222);
31962
+ var $def = _dereq_(224);
31836
31963
 
31837
31964
  $def($def.S, 'Number', {parseInt: parseInt});
31838
- },{"222":222}],324:[function(_dereq_,module,exports){
31965
+ },{"224":224}],329:[function(_dereq_,module,exports){
31839
31966
  // 19.1.3.1 Object.assign(target, source)
31840
- var $def = _dereq_(222);
31841
- $def($def.S, 'Object', {assign: _dereq_(213)});
31842
- },{"213":213,"222":222}],325:[function(_dereq_,module,exports){
31967
+ var $def = _dereq_(224);
31968
+
31969
+ $def($def.S + $def.F, 'Object', {assign: _dereq_(215)});
31970
+ },{"215":215,"224":224}],330:[function(_dereq_,module,exports){
31843
31971
  // 19.1.2.5 Object.freeze(O)
31844
- var isObject = _dereq_(240);
31972
+ var isObject = _dereq_(244);
31845
31973
 
31846
- _dereq_(254)('freeze', function($freeze){
31974
+ _dereq_(258)('freeze', function($freeze){
31847
31975
  return function freeze(it){
31848
31976
  return $freeze && isObject(it) ? $freeze(it) : it;
31849
31977
  };
31850
31978
  });
31851
- },{"240":240,"254":254}],326:[function(_dereq_,module,exports){
31979
+ },{"244":244,"258":258}],331:[function(_dereq_,module,exports){
31852
31980
  // 19.1.2.6 Object.getOwnPropertyDescriptor(O, P)
31853
- var toIObject = _dereq_(278);
31981
+ var toIObject = _dereq_(283);
31854
31982
 
31855
- _dereq_(254)('getOwnPropertyDescriptor', function($getOwnPropertyDescriptor){
31983
+ _dereq_(258)('getOwnPropertyDescriptor', function($getOwnPropertyDescriptor){
31856
31984
  return function getOwnPropertyDescriptor(it, key){
31857
31985
  return $getOwnPropertyDescriptor(toIObject(it), key);
31858
31986
  };
31859
31987
  });
31860
- },{"254":254,"278":278}],327:[function(_dereq_,module,exports){
31988
+ },{"258":258,"283":283}],332:[function(_dereq_,module,exports){
31861
31989
  // 19.1.2.7 Object.getOwnPropertyNames(O)
31862
- _dereq_(254)('getOwnPropertyNames', function(){
31863
- return _dereq_(231).get;
31990
+ _dereq_(258)('getOwnPropertyNames', function(){
31991
+ return _dereq_(234).get;
31864
31992
  });
31865
- },{"231":231,"254":254}],328:[function(_dereq_,module,exports){
31993
+ },{"234":234,"258":258}],333:[function(_dereq_,module,exports){
31866
31994
  // 19.1.2.9 Object.getPrototypeOf(O)
31867
- var toObject = _dereq_(280);
31995
+ var toObject = _dereq_(285);
31868
31996
 
31869
- _dereq_(254)('getPrototypeOf', function($getPrototypeOf){
31997
+ _dereq_(258)('getPrototypeOf', function($getPrototypeOf){
31870
31998
  return function getPrototypeOf(it){
31871
31999
  return $getPrototypeOf(toObject(it));
31872
32000
  };
31873
32001
  });
31874
- },{"254":254,"280":280}],329:[function(_dereq_,module,exports){
32002
+ },{"258":258,"285":285}],334:[function(_dereq_,module,exports){
31875
32003
  // 19.1.2.11 Object.isExtensible(O)
31876
- var isObject = _dereq_(240);
32004
+ var isObject = _dereq_(244);
31877
32005
 
31878
- _dereq_(254)('isExtensible', function($isExtensible){
32006
+ _dereq_(258)('isExtensible', function($isExtensible){
31879
32007
  return function isExtensible(it){
31880
32008
  return isObject(it) ? $isExtensible ? $isExtensible(it) : true : false;
31881
32009
  };
31882
32010
  });
31883
- },{"240":240,"254":254}],330:[function(_dereq_,module,exports){
32011
+ },{"244":244,"258":258}],335:[function(_dereq_,module,exports){
31884
32012
  // 19.1.2.12 Object.isFrozen(O)
31885
- var isObject = _dereq_(240);
32013
+ var isObject = _dereq_(244);
31886
32014
 
31887
- _dereq_(254)('isFrozen', function($isFrozen){
32015
+ _dereq_(258)('isFrozen', function($isFrozen){
31888
32016
  return function isFrozen(it){
31889
32017
  return isObject(it) ? $isFrozen ? $isFrozen(it) : false : true;
31890
32018
  };
31891
32019
  });
31892
- },{"240":240,"254":254}],331:[function(_dereq_,module,exports){
32020
+ },{"244":244,"258":258}],336:[function(_dereq_,module,exports){
31893
32021
  // 19.1.2.13 Object.isSealed(O)
31894
- var isObject = _dereq_(240);
32022
+ var isObject = _dereq_(244);
31895
32023
 
31896
- _dereq_(254)('isSealed', function($isSealed){
32024
+ _dereq_(258)('isSealed', function($isSealed){
31897
32025
  return function isSealed(it){
31898
32026
  return isObject(it) ? $isSealed ? $isSealed(it) : false : true;
31899
32027
  };
31900
32028
  });
31901
- },{"240":240,"254":254}],332:[function(_dereq_,module,exports){
32029
+ },{"244":244,"258":258}],337:[function(_dereq_,module,exports){
31902
32030
  // 19.1.3.10 Object.is(value1, value2)
31903
- var $def = _dereq_(222);
32031
+ var $def = _dereq_(224);
31904
32032
  $def($def.S, 'Object', {
31905
- is: _dereq_(262)
32033
+ is: _dereq_(266)
31906
32034
  });
31907
- },{"222":222,"262":262}],333:[function(_dereq_,module,exports){
32035
+ },{"224":224,"266":266}],338:[function(_dereq_,module,exports){
31908
32036
  // 19.1.2.14 Object.keys(O)
31909
- var toObject = _dereq_(280);
32037
+ var toObject = _dereq_(285);
31910
32038
 
31911
- _dereq_(254)('keys', function($keys){
32039
+ _dereq_(258)('keys', function($keys){
31912
32040
  return function keys(it){
31913
32041
  return $keys(toObject(it));
31914
32042
  };
31915
32043
  });
31916
- },{"254":254,"280":280}],334:[function(_dereq_,module,exports){
32044
+ },{"258":258,"285":285}],339:[function(_dereq_,module,exports){
31917
32045
  // 19.1.2.15 Object.preventExtensions(O)
31918
- var isObject = _dereq_(240);
32046
+ var isObject = _dereq_(244);
31919
32047
 
31920
- _dereq_(254)('preventExtensions', function($preventExtensions){
32048
+ _dereq_(258)('preventExtensions', function($preventExtensions){
31921
32049
  return function preventExtensions(it){
31922
32050
  return $preventExtensions && isObject(it) ? $preventExtensions(it) : it;
31923
32051
  };
31924
32052
  });
31925
- },{"240":240,"254":254}],335:[function(_dereq_,module,exports){
32053
+ },{"244":244,"258":258}],340:[function(_dereq_,module,exports){
31926
32054
  // 19.1.2.17 Object.seal(O)
31927
- var isObject = _dereq_(240);
32055
+ var isObject = _dereq_(244);
31928
32056
 
31929
- _dereq_(254)('seal', function($seal){
32057
+ _dereq_(258)('seal', function($seal){
31930
32058
  return function seal(it){
31931
32059
  return $seal && isObject(it) ? $seal(it) : it;
31932
32060
  };
31933
32061
  });
31934
- },{"240":240,"254":254}],336:[function(_dereq_,module,exports){
32062
+ },{"244":244,"258":258}],341:[function(_dereq_,module,exports){
31935
32063
  // 19.1.3.19 Object.setPrototypeOf(O, proto)
31936
- var $def = _dereq_(222);
31937
- $def($def.S, 'Object', {setPrototypeOf: _dereq_(263).set});
31938
- },{"222":222,"263":263}],337:[function(_dereq_,module,exports){
32064
+ var $def = _dereq_(224);
32065
+ $def($def.S, 'Object', {setPrototypeOf: _dereq_(267).set});
32066
+ },{"224":224,"267":267}],342:[function(_dereq_,module,exports){
31939
32067
  'use strict';
31940
32068
  // 19.1.3.6 Object.prototype.toString()
31941
- var classof = _dereq_(214)
32069
+ var classof = _dereq_(216)
31942
32070
  , test = {};
31943
- test[_dereq_(283)('toStringTag')] = 'z';
32071
+ test[_dereq_(288)('toStringTag')] = 'z';
31944
32072
  if(test + '' != '[object z]'){
31945
- _dereq_(260)(Object.prototype, 'toString', function toString(){
32073
+ _dereq_(264)(Object.prototype, 'toString', function toString(){
31946
32074
  return '[object ' + classof(this) + ']';
31947
32075
  }, true);
31948
32076
  }
31949
- },{"214":214,"260":260,"283":283}],338:[function(_dereq_,module,exports){
32077
+ },{"216":216,"264":264,"288":288}],343:[function(_dereq_,module,exports){
31950
32078
  'use strict';
31951
- var $ = _dereq_(248)
31952
- , LIBRARY = _dereq_(250)
31953
- , global = _dereq_(232)
31954
- , ctx = _dereq_(221)
31955
- , classof = _dereq_(214)
31956
- , $def = _dereq_(222)
31957
- , isObject = _dereq_(240)
32079
+ var $ = _dereq_(252)
32080
+ , LIBRARY = _dereq_(254)
32081
+ , global = _dereq_(235)
32082
+ , ctx = _dereq_(223)
32083
+ , classof = _dereq_(216)
32084
+ , $def = _dereq_(224)
32085
+ , isObject = _dereq_(244)
31958
32086
  , anObject = _dereq_(210)
31959
32087
  , aFunction = _dereq_(209)
31960
- , strictNew = _dereq_(267)
31961
- , forOf = _dereq_(230)
31962
- , setProto = _dereq_(263).set
31963
- , same = _dereq_(262)
31964
- , species = _dereq_(266)
31965
- , SPECIES = _dereq_(283)('species')
31966
- , RECORD = _dereq_(281)('record')
31967
- , asap = _dereq_(252)
32088
+ , strictNew = _dereq_(272)
32089
+ , forOf = _dereq_(233)
32090
+ , setProto = _dereq_(267).set
32091
+ , same = _dereq_(266)
32092
+ , species = _dereq_(271)
32093
+ , SPECIES = _dereq_(288)('species')
32094
+ , speciesConstructor = _dereq_(270)
32095
+ , RECORD = _dereq_(286)('record')
32096
+ , asap = _dereq_(256)
31968
32097
  , PROMISE = 'Promise'
31969
32098
  , process = global.process
31970
32099
  , isNode = classof(process) == 'process'
@@ -31993,7 +32122,7 @@ var useNative = function(){
31993
32122
  works = false;
31994
32123
  }
31995
32124
  // actual V8 bug, https://code.google.com/p/v8/issues/detail?id=4162
31996
- if(works && _dereq_(273)){
32125
+ if(works && _dereq_(278)){
31997
32126
  var thenableThenGotten = false;
31998
32127
  P.resolve($.setDesc({}, 'then', {
31999
32128
  get: function(){ thenableThenGotten = true; }
@@ -32050,16 +32179,17 @@ var notify = function(record, isReject){
32050
32179
  chain.length = 0;
32051
32180
  record.n = false;
32052
32181
  if(isReject)setTimeout(function(){
32053
- asap(function(){
32054
- if(isUnhandled(record.p)){
32055
- if(isNode){
32056
- process.emit('unhandledRejection', value, record.p);
32057
- } else if(global.console && console.error){
32058
- console.error('Unhandled promise rejection', value);
32059
- }
32060
- }
32061
- record.a = undefined;
32062
- });
32182
+ var promise = record.p
32183
+ , handler, console;
32184
+ if(isUnhandled(promise)){
32185
+ if(isNode){
32186
+ process.emit('unhandledRejection', value, promise);
32187
+ } else if(handler = global.onunhandledrejection){
32188
+ handler({promise: promise, reason: value});
32189
+ } else if((console = global.console) && console.error){
32190
+ console.error('Unhandled promise rejection', value);
32191
+ }
32192
+ } record.a = undefined;
32063
32193
  }, 1);
32064
32194
  });
32065
32195
  };
@@ -32132,18 +32262,19 @@ if(!useNative){
32132
32262
  $reject.call(record, err);
32133
32263
  }
32134
32264
  };
32135
- _dereq_(253)(P.prototype, {
32265
+ _dereq_(257)(P.prototype, {
32136
32266
  // 25.4.5.3 Promise.prototype.then(onFulfilled, onRejected)
32137
32267
  then: function then(onFulfilled, onRejected){
32138
- var S = anObject(anObject(this).constructor)[SPECIES];
32139
32268
  var react = {
32140
32269
  ok: typeof onFulfilled == 'function' ? onFulfilled : true,
32141
32270
  fail: typeof onRejected == 'function' ? onRejected : false
32142
32271
  };
32143
- var promise = react.P = new (S != undefined ? S : P)(function(res, rej){
32144
- react.res = aFunction(res);
32145
- react.rej = aFunction(rej);
32272
+ var promise = react.P = new (speciesConstructor(this, P))(function(res, rej){
32273
+ react.res = res;
32274
+ react.rej = rej;
32146
32275
  });
32276
+ aFunction(react.res);
32277
+ aFunction(react.rej);
32147
32278
  var record = this[RECORD];
32148
32279
  record.c.push(react);
32149
32280
  if(record.a)record.a.push(react);
@@ -32159,9 +32290,9 @@ if(!useNative){
32159
32290
 
32160
32291
  // export
32161
32292
  $def($def.G + $def.W + $def.F * !useNative, {Promise: P});
32162
- _dereq_(274)(P, PROMISE);
32293
+ _dereq_(279)(P, PROMISE);
32163
32294
  species(P);
32164
- species(Wrapper = _dereq_(220)[PROMISE]);
32295
+ species(Wrapper = _dereq_(222)[PROMISE]);
32165
32296
 
32166
32297
  // statics
32167
32298
  $def($def.S + $def.F * !useNative, PROMISE, {
@@ -32177,7 +32308,7 @@ $def($def.S + $def.F * (!useNative || testResolve(true)), PROMISE, {
32177
32308
  ? x : new this(function(res){ res(x); });
32178
32309
  }
32179
32310
  });
32180
- $def($def.S + $def.F * !(useNative && _dereq_(245)(function(iter){
32311
+ $def($def.S + $def.F * !(useNative && _dereq_(249)(function(iter){
32181
32312
  P.all(iter)['catch'](function(){});
32182
32313
  })), PROMISE, {
32183
32314
  // 25.4.4.1 Promise.all(iterable)
@@ -32207,9 +32338,9 @@ $def($def.S + $def.F * !(useNative && _dereq_(245)(function(iter){
32207
32338
  });
32208
32339
  }
32209
32340
  });
32210
- },{"209":209,"210":210,"214":214,"220":220,"221":221,"222":222,"230":230,"232":232,"240":240,"245":245,"248":248,"250":250,"252":252,"253":253,"262":262,"263":263,"266":266,"267":267,"273":273,"274":274,"281":281,"283":283}],339:[function(_dereq_,module,exports){
32341
+ },{"209":209,"210":210,"216":216,"222":222,"223":223,"224":224,"233":233,"235":235,"244":244,"249":249,"252":252,"254":254,"256":256,"257":257,"266":266,"267":267,"270":270,"271":271,"272":272,"278":278,"279":279,"286":286,"288":288}],344:[function(_dereq_,module,exports){
32211
32342
  // 26.1.1 Reflect.apply(target, thisArgument, argumentsList)
32212
- var $def = _dereq_(222)
32343
+ var $def = _dereq_(224)
32213
32344
  , _apply = Function.apply;
32214
32345
 
32215
32346
  $def($def.S, 'Reflect', {
@@ -32217,20 +32348,26 @@ $def($def.S, 'Reflect', {
32217
32348
  return _apply.call(target, thisArgument, argumentsList);
32218
32349
  }
32219
32350
  });
32220
- },{"222":222}],340:[function(_dereq_,module,exports){
32351
+ },{"224":224}],345:[function(_dereq_,module,exports){
32221
32352
  // 26.1.2 Reflect.construct(target, argumentsList [, newTarget])
32222
- var $ = _dereq_(248)
32223
- , $def = _dereq_(222)
32353
+ var $ = _dereq_(252)
32354
+ , $def = _dereq_(224)
32224
32355
  , aFunction = _dereq_(209)
32225
32356
  , anObject = _dereq_(210)
32226
- , isObject = _dereq_(240)
32227
- , bind = Function.bind || _dereq_(220).Function.prototype.bind;
32228
-
32229
- $def($def.S, 'Reflect', {
32357
+ , isObject = _dereq_(244)
32358
+ , bind = Function.bind || _dereq_(222).Function.prototype.bind;
32359
+
32360
+ // MS Edge supports only 2 arguments
32361
+ // FF Nightly sets third argument as `new.target`, but does not create `this` from it
32362
+ $def($def.S + $def.F * _dereq_(230)(function(){
32363
+ function F(){}
32364
+ return !(Reflect.construct(function(){}, [], F) instanceof F);
32365
+ }), 'Reflect', {
32230
32366
  construct: function construct(Target, args /*, newTarget*/){
32231
32367
  aFunction(Target);
32232
- if(arguments.length < 3){
32233
- // w/o newTarget, optimization for 0-4 arguments
32368
+ var newTarget = arguments.length < 3 ? Target : aFunction(arguments[2]);
32369
+ if(Target == newTarget){
32370
+ // w/o altered newTarget, optimization for 0-4 arguments
32234
32371
  if(args != undefined)switch(anObject(args).length){
32235
32372
  case 0: return new Target;
32236
32373
  case 1: return new Target(args[0]);
@@ -32238,26 +32375,26 @@ $def($def.S, 'Reflect', {
32238
32375
  case 3: return new Target(args[0], args[1], args[2]);
32239
32376
  case 4: return new Target(args[0], args[1], args[2], args[3]);
32240
32377
  }
32241
- // w/o newTarget, lot of arguments case
32378
+ // w/o altered newTarget, lot of arguments case
32242
32379
  var $args = [null];
32243
32380
  $args.push.apply($args, args);
32244
32381
  return new (bind.apply(Target, $args));
32245
32382
  }
32246
- // with newTarget, not support built-in constructors
32247
- var proto = aFunction(arguments[2]).prototype
32383
+ // with altered newTarget, not support built-in constructors
32384
+ var proto = newTarget.prototype
32248
32385
  , instance = $.create(isObject(proto) ? proto : Object.prototype)
32249
32386
  , result = Function.apply.call(Target, instance, args);
32250
32387
  return isObject(result) ? result : instance;
32251
32388
  }
32252
32389
  });
32253
- },{"209":209,"210":210,"220":220,"222":222,"240":240,"248":248}],341:[function(_dereq_,module,exports){
32390
+ },{"209":209,"210":210,"222":222,"224":224,"230":230,"244":244,"252":252}],346:[function(_dereq_,module,exports){
32254
32391
  // 26.1.3 Reflect.defineProperty(target, propertyKey, attributes)
32255
- var $ = _dereq_(248)
32256
- , $def = _dereq_(222)
32392
+ var $ = _dereq_(252)
32393
+ , $def = _dereq_(224)
32257
32394
  , anObject = _dereq_(210);
32258
32395
 
32259
32396
  // MS Edge has broken Reflect.defineProperty - throwing instead of returning false
32260
- $def($def.S + $def.F * _dereq_(227)(function(){
32397
+ $def($def.S + $def.F * _dereq_(230)(function(){
32261
32398
  Reflect.defineProperty($.setDesc({}, 1, {value: 1}), 1, {value: 2});
32262
32399
  }), 'Reflect', {
32263
32400
  defineProperty: function defineProperty(target, propertyKey, attributes){
@@ -32270,10 +32407,10 @@ $def($def.S + $def.F * _dereq_(227)(function(){
32270
32407
  }
32271
32408
  }
32272
32409
  });
32273
- },{"210":210,"222":222,"227":227,"248":248}],342:[function(_dereq_,module,exports){
32410
+ },{"210":210,"224":224,"230":230,"252":252}],347:[function(_dereq_,module,exports){
32274
32411
  // 26.1.4 Reflect.deleteProperty(target, propertyKey)
32275
- var $def = _dereq_(222)
32276
- , getDesc = _dereq_(248).getDesc
32412
+ var $def = _dereq_(224)
32413
+ , getDesc = _dereq_(252).getDesc
32277
32414
  , anObject = _dereq_(210);
32278
32415
 
32279
32416
  $def($def.S, 'Reflect', {
@@ -32282,10 +32419,10 @@ $def($def.S, 'Reflect', {
32282
32419
  return desc && !desc.configurable ? false : delete target[propertyKey];
32283
32420
  }
32284
32421
  });
32285
- },{"210":210,"222":222,"248":248}],343:[function(_dereq_,module,exports){
32422
+ },{"210":210,"224":224,"252":252}],348:[function(_dereq_,module,exports){
32286
32423
  'use strict';
32287
32424
  // 26.1.5 Reflect.enumerate(target)
32288
- var $def = _dereq_(222)
32425
+ var $def = _dereq_(224)
32289
32426
  , anObject = _dereq_(210);
32290
32427
  var Enumerate = function(iterated){
32291
32428
  this._t = anObject(iterated); // target
@@ -32294,7 +32431,7 @@ var Enumerate = function(iterated){
32294
32431
  , key;
32295
32432
  for(key in iterated)keys.push(key);
32296
32433
  };
32297
- _dereq_(243)(Enumerate, 'Object', function(){
32434
+ _dereq_(247)(Enumerate, 'Object', function(){
32298
32435
  var that = this
32299
32436
  , keys = that._k
32300
32437
  , key;
@@ -32309,10 +32446,10 @@ $def($def.S, 'Reflect', {
32309
32446
  return new Enumerate(target);
32310
32447
  }
32311
32448
  });
32312
- },{"210":210,"222":222,"243":243}],344:[function(_dereq_,module,exports){
32449
+ },{"210":210,"224":224,"247":247}],349:[function(_dereq_,module,exports){
32313
32450
  // 26.1.7 Reflect.getOwnPropertyDescriptor(target, propertyKey)
32314
- var $ = _dereq_(248)
32315
- , $def = _dereq_(222)
32451
+ var $ = _dereq_(252)
32452
+ , $def = _dereq_(224)
32316
32453
  , anObject = _dereq_(210);
32317
32454
 
32318
32455
  $def($def.S, 'Reflect', {
@@ -32320,10 +32457,10 @@ $def($def.S, 'Reflect', {
32320
32457
  return $.getDesc(anObject(target), propertyKey);
32321
32458
  }
32322
32459
  });
32323
- },{"210":210,"222":222,"248":248}],345:[function(_dereq_,module,exports){
32460
+ },{"210":210,"224":224,"252":252}],350:[function(_dereq_,module,exports){
32324
32461
  // 26.1.8 Reflect.getPrototypeOf(target)
32325
- var $def = _dereq_(222)
32326
- , getProto = _dereq_(248).getProto
32462
+ var $def = _dereq_(224)
32463
+ , getProto = _dereq_(252).getProto
32327
32464
  , anObject = _dereq_(210);
32328
32465
 
32329
32466
  $def($def.S, 'Reflect', {
@@ -32331,12 +32468,12 @@ $def($def.S, 'Reflect', {
32331
32468
  return getProto(anObject(target));
32332
32469
  }
32333
32470
  });
32334
- },{"210":210,"222":222,"248":248}],346:[function(_dereq_,module,exports){
32471
+ },{"210":210,"224":224,"252":252}],351:[function(_dereq_,module,exports){
32335
32472
  // 26.1.6 Reflect.get(target, propertyKey [, receiver])
32336
- var $ = _dereq_(248)
32337
- , has = _dereq_(233)
32338
- , $def = _dereq_(222)
32339
- , isObject = _dereq_(240)
32473
+ var $ = _dereq_(252)
32474
+ , has = _dereq_(236)
32475
+ , $def = _dereq_(224)
32476
+ , isObject = _dereq_(244)
32340
32477
  , anObject = _dereq_(210);
32341
32478
 
32342
32479
  function get(target, propertyKey/*, receiver*/){
@@ -32352,18 +32489,18 @@ function get(target, propertyKey/*, receiver*/){
32352
32489
  }
32353
32490
 
32354
32491
  $def($def.S, 'Reflect', {get: get});
32355
- },{"210":210,"222":222,"233":233,"240":240,"248":248}],347:[function(_dereq_,module,exports){
32492
+ },{"210":210,"224":224,"236":236,"244":244,"252":252}],352:[function(_dereq_,module,exports){
32356
32493
  // 26.1.9 Reflect.has(target, propertyKey)
32357
- var $def = _dereq_(222);
32494
+ var $def = _dereq_(224);
32358
32495
 
32359
32496
  $def($def.S, 'Reflect', {
32360
32497
  has: function has(target, propertyKey){
32361
32498
  return propertyKey in target;
32362
32499
  }
32363
32500
  });
32364
- },{"222":222}],348:[function(_dereq_,module,exports){
32501
+ },{"224":224}],353:[function(_dereq_,module,exports){
32365
32502
  // 26.1.10 Reflect.isExtensible(target)
32366
- var $def = _dereq_(222)
32503
+ var $def = _dereq_(224)
32367
32504
  , anObject = _dereq_(210)
32368
32505
  , $isExtensible = Object.isExtensible;
32369
32506
 
@@ -32373,14 +32510,14 @@ $def($def.S, 'Reflect', {
32373
32510
  return $isExtensible ? $isExtensible(target) : true;
32374
32511
  }
32375
32512
  });
32376
- },{"210":210,"222":222}],349:[function(_dereq_,module,exports){
32513
+ },{"210":210,"224":224}],354:[function(_dereq_,module,exports){
32377
32514
  // 26.1.11 Reflect.ownKeys(target)
32378
- var $def = _dereq_(222);
32515
+ var $def = _dereq_(224);
32379
32516
 
32380
- $def($def.S, 'Reflect', {ownKeys: _dereq_(256)});
32381
- },{"222":222,"256":256}],350:[function(_dereq_,module,exports){
32517
+ $def($def.S, 'Reflect', {ownKeys: _dereq_(260)});
32518
+ },{"224":224,"260":260}],355:[function(_dereq_,module,exports){
32382
32519
  // 26.1.12 Reflect.preventExtensions(target)
32383
- var $def = _dereq_(222)
32520
+ var $def = _dereq_(224)
32384
32521
  , anObject = _dereq_(210)
32385
32522
  , $preventExtensions = Object.preventExtensions;
32386
32523
 
@@ -32395,10 +32532,10 @@ $def($def.S, 'Reflect', {
32395
32532
  }
32396
32533
  }
32397
32534
  });
32398
- },{"210":210,"222":222}],351:[function(_dereq_,module,exports){
32535
+ },{"210":210,"224":224}],356:[function(_dereq_,module,exports){
32399
32536
  // 26.1.14 Reflect.setPrototypeOf(target, proto)
32400
- var $def = _dereq_(222)
32401
- , setProto = _dereq_(263);
32537
+ var $def = _dereq_(224)
32538
+ , setProto = _dereq_(267);
32402
32539
 
32403
32540
  if(setProto)$def($def.S, 'Reflect', {
32404
32541
  setPrototypeOf: function setPrototypeOf(target, proto){
@@ -32411,14 +32548,14 @@ if(setProto)$def($def.S, 'Reflect', {
32411
32548
  }
32412
32549
  }
32413
32550
  });
32414
- },{"222":222,"263":263}],352:[function(_dereq_,module,exports){
32551
+ },{"224":224,"267":267}],357:[function(_dereq_,module,exports){
32415
32552
  // 26.1.13 Reflect.set(target, propertyKey, V [, receiver])
32416
- var $ = _dereq_(248)
32417
- , has = _dereq_(233)
32418
- , $def = _dereq_(222)
32419
- , createDesc = _dereq_(259)
32553
+ var $ = _dereq_(252)
32554
+ , has = _dereq_(236)
32555
+ , $def = _dereq_(224)
32556
+ , createDesc = _dereq_(263)
32420
32557
  , anObject = _dereq_(210)
32421
- , isObject = _dereq_(240);
32558
+ , isObject = _dereq_(244);
32422
32559
 
32423
32560
  function set(target, propertyKey, V/*, receiver*/){
32424
32561
  var receiver = arguments.length < 4 ? target : arguments[3]
@@ -32441,59 +32578,55 @@ function set(target, propertyKey, V/*, receiver*/){
32441
32578
  }
32442
32579
 
32443
32580
  $def($def.S, 'Reflect', {set: set});
32444
- },{"210":210,"222":222,"233":233,"240":240,"248":248,"259":259}],353:[function(_dereq_,module,exports){
32445
- var $ = _dereq_(248)
32446
- , global = _dereq_(232)
32447
- , cof = _dereq_(215)
32448
- , $flags = _dereq_(229)
32449
- , $RegExp = global.RegExp
32450
- , Base = $RegExp
32451
- , proto = $RegExp.prototype
32452
- , re = /a/g
32453
- // "new" creates a new object
32454
- , CORRECT_NEW = new $RegExp(re) !== re
32455
- // RegExp allows a regex with flags as the pattern
32456
- , ALLOWS_RE_WITH_FLAGS = function(){
32457
- try {
32458
- return $RegExp(re, 'i') == '/a/i';
32459
- } catch(e){ /* empty */ }
32460
- }();
32461
-
32462
- if(_dereq_(273)){
32463
- if(!CORRECT_NEW || !ALLOWS_RE_WITH_FLAGS){
32464
- $RegExp = function RegExp(pattern, flags){
32465
- var patternIsRegExp = cof(pattern) == 'RegExp'
32466
- , flagsIsUndefined = flags === undefined;
32467
- if(!(this instanceof $RegExp) && patternIsRegExp && flagsIsUndefined)return pattern;
32468
- return CORRECT_NEW
32469
- ? new Base(patternIsRegExp && !flagsIsUndefined ? pattern.source : pattern, flags)
32470
- : new Base(patternIsRegExp ? pattern.source : pattern
32471
- , patternIsRegExp && flagsIsUndefined ? $flags.call(pattern) : flags);
32472
- };
32473
- $.each.call($.getNames(Base), function(key){
32474
- key in $RegExp || $.setDesc($RegExp, key, {
32475
- configurable: true,
32476
- get: function(){ return Base[key]; },
32477
- set: function(it){ Base[key] = it; }
32478
- });
32581
+ },{"210":210,"224":224,"236":236,"244":244,"252":252,"263":263}],358:[function(_dereq_,module,exports){
32582
+ var $ = _dereq_(252)
32583
+ , global = _dereq_(235)
32584
+ , isRegExp = _dereq_(245)
32585
+ , $flags = _dereq_(232)
32586
+ , $RegExp = global.RegExp
32587
+ , Base = $RegExp
32588
+ , proto = $RegExp.prototype
32589
+ , re1 = /a/g
32590
+ , re2 = /a/g
32591
+ // "new" creates a new object, old webkit buggy here
32592
+ , CORRECT_NEW = new $RegExp(re1) !== re1;
32593
+
32594
+ if(_dereq_(278) && (!CORRECT_NEW || _dereq_(230)(function(){
32595
+ re2[_dereq_(288)('match')] = false;
32596
+ // RegExp constructor can alter flags and IsRegExp works correct with @@match
32597
+ return $RegExp(re1) != re1 || $RegExp(re2) == re2 || $RegExp(re1, 'i') != '/a/i';
32598
+ }))){
32599
+ $RegExp = function RegExp(p, f){
32600
+ var piRE = isRegExp(p)
32601
+ , fiU = f === undefined;
32602
+ return !(this instanceof $RegExp) && piRE && p.constructor === $RegExp && fiU ? p
32603
+ : CORRECT_NEW
32604
+ ? new Base(piRE && !fiU ? p.source : p, f)
32605
+ : Base((piRE = p instanceof $RegExp) ? p.source : p, piRE && fiU ? $flags.call(p) : f);
32606
+ };
32607
+ $.each.call($.getNames(Base), function(key){
32608
+ key in $RegExp || $.setDesc($RegExp, key, {
32609
+ configurable: true,
32610
+ get: function(){ return Base[key]; },
32611
+ set: function(it){ Base[key] = it; }
32479
32612
  });
32480
- proto.constructor = $RegExp;
32481
- $RegExp.prototype = proto;
32482
- _dereq_(260)(global, 'RegExp', $RegExp);
32483
- }
32613
+ });
32614
+ proto.constructor = $RegExp;
32615
+ $RegExp.prototype = proto;
32616
+ _dereq_(264)(global, 'RegExp', $RegExp);
32484
32617
  }
32485
32618
 
32486
- _dereq_(266)($RegExp);
32487
- },{"215":215,"229":229,"232":232,"248":248,"260":260,"266":266,"273":273}],354:[function(_dereq_,module,exports){
32619
+ _dereq_(271)($RegExp);
32620
+ },{"230":230,"232":232,"235":235,"245":245,"252":252,"264":264,"271":271,"278":278,"288":288}],359:[function(_dereq_,module,exports){
32488
32621
  // 21.2.5.3 get RegExp.prototype.flags()
32489
- var $ = _dereq_(248);
32490
- if(_dereq_(273) && /./g.flags != 'g')$.setDesc(RegExp.prototype, 'flags', {
32622
+ var $ = _dereq_(252);
32623
+ if(_dereq_(278) && /./g.flags != 'g')$.setDesc(RegExp.prototype, 'flags', {
32491
32624
  configurable: true,
32492
- get: _dereq_(229)
32625
+ get: _dereq_(232)
32493
32626
  });
32494
- },{"229":229,"248":248,"273":273}],355:[function(_dereq_,module,exports){
32627
+ },{"232":232,"252":252,"278":278}],360:[function(_dereq_,module,exports){
32495
32628
  // @@match logic
32496
- _dereq_(228)('match', 1, function(defined, MATCH){
32629
+ _dereq_(231)('match', 1, function(defined, MATCH){
32497
32630
  // 21.1.3.11 String.prototype.match(regexp)
32498
32631
  return function match(regexp){
32499
32632
  'use strict';
@@ -32502,9 +32635,9 @@ _dereq_(228)('match', 1, function(defined, MATCH){
32502
32635
  return fn !== undefined ? fn.call(regexp, O) : new RegExp(regexp)[MATCH](String(O));
32503
32636
  };
32504
32637
  });
32505
- },{"228":228}],356:[function(_dereq_,module,exports){
32638
+ },{"231":231}],361:[function(_dereq_,module,exports){
32506
32639
  // @@replace logic
32507
- _dereq_(228)('replace', 2, function(defined, REPLACE, $replace){
32640
+ _dereq_(231)('replace', 2, function(defined, REPLACE, $replace){
32508
32641
  // 21.1.3.14 String.prototype.replace(searchValue, replaceValue)
32509
32642
  return function replace(searchValue, replaceValue){
32510
32643
  'use strict';
@@ -32515,9 +32648,9 @@ _dereq_(228)('replace', 2, function(defined, REPLACE, $replace){
32515
32648
  : $replace.call(String(O), searchValue, replaceValue);
32516
32649
  };
32517
32650
  });
32518
- },{"228":228}],357:[function(_dereq_,module,exports){
32651
+ },{"231":231}],362:[function(_dereq_,module,exports){
32519
32652
  // @@search logic
32520
- _dereq_(228)('search', 1, function(defined, SEARCH){
32653
+ _dereq_(231)('search', 1, function(defined, SEARCH){
32521
32654
  // 21.1.3.15 String.prototype.search(regexp)
32522
32655
  return function search(regexp){
32523
32656
  'use strict';
@@ -32526,9 +32659,9 @@ _dereq_(228)('search', 1, function(defined, SEARCH){
32526
32659
  return fn !== undefined ? fn.call(regexp, O) : new RegExp(regexp)[SEARCH](String(O));
32527
32660
  };
32528
32661
  });
32529
- },{"228":228}],358:[function(_dereq_,module,exports){
32662
+ },{"231":231}],363:[function(_dereq_,module,exports){
32530
32663
  // @@split logic
32531
- _dereq_(228)('split', 2, function(defined, SPLIT, $split){
32664
+ _dereq_(231)('split', 2, function(defined, SPLIT, $split){
32532
32665
  // 21.1.3.17 String.prototype.split(separator, limit)
32533
32666
  return function split(separator, limit){
32534
32667
  'use strict';
@@ -32539,50 +32672,54 @@ _dereq_(228)('split', 2, function(defined, SPLIT, $split){
32539
32672
  : $split.call(String(O), separator, limit);
32540
32673
  };
32541
32674
  });
32542
- },{"228":228}],359:[function(_dereq_,module,exports){
32675
+ },{"231":231}],364:[function(_dereq_,module,exports){
32543
32676
  'use strict';
32544
- var strong = _dereq_(216);
32677
+ var strong = _dereq_(218);
32545
32678
 
32546
32679
  // 23.2 Set Objects
32547
- _dereq_(219)('Set', function(get){
32548
- return function Set(){ return get(this, arguments[0]); };
32680
+ _dereq_(221)('Set', function(get){
32681
+ return function Set(){ return get(this, arguments.length > 0 ? arguments[0] : undefined); };
32549
32682
  }, {
32550
32683
  // 23.2.3.1 Set.prototype.add(value)
32551
32684
  add: function add(value){
32552
32685
  return strong.def(this, value = value === 0 ? 0 : value, value);
32553
32686
  }
32554
32687
  }, strong);
32555
- },{"216":216,"219":219}],360:[function(_dereq_,module,exports){
32688
+ },{"218":218,"221":221}],365:[function(_dereq_,module,exports){
32556
32689
  'use strict';
32557
- var $def = _dereq_(222)
32558
- , $at = _dereq_(268)(false);
32690
+ var $def = _dereq_(224)
32691
+ , $at = _dereq_(273)(false);
32559
32692
  $def($def.P, 'String', {
32560
32693
  // 21.1.3.3 String.prototype.codePointAt(pos)
32561
32694
  codePointAt: function codePointAt(pos){
32562
32695
  return $at(this, pos);
32563
32696
  }
32564
32697
  });
32565
- },{"222":222,"268":268}],361:[function(_dereq_,module,exports){
32698
+ },{"224":224,"273":273}],366:[function(_dereq_,module,exports){
32699
+ // 21.1.3.6 String.prototype.endsWith(searchString [, endPosition])
32566
32700
  'use strict';
32567
- var $def = _dereq_(222)
32568
- , toLength = _dereq_(279)
32569
- , context = _dereq_(269);
32701
+ var $def = _dereq_(224)
32702
+ , toLength = _dereq_(284)
32703
+ , context = _dereq_(274)
32704
+ , ENDS_WITH = 'endsWith'
32705
+ , $endsWith = ''[ENDS_WITH];
32570
32706
 
32571
- // should throw error on regex
32572
- $def($def.P + $def.F * !_dereq_(227)(function(){ 'q'.endsWith(/./); }), 'String', {
32573
- // 21.1.3.6 String.prototype.endsWith(searchString [, endPosition])
32707
+ $def($def.P + $def.F * _dereq_(229)(ENDS_WITH), 'String', {
32574
32708
  endsWith: function endsWith(searchString /*, endPosition = @length */){
32575
- var that = context(this, searchString, 'endsWith')
32576
- , endPosition = arguments[1]
32709
+ var that = context(this, searchString, ENDS_WITH)
32710
+ , $$ = arguments
32711
+ , endPosition = $$.length > 1 ? $$[1] : undefined
32577
32712
  , len = toLength(that.length)
32578
32713
  , end = endPosition === undefined ? len : Math.min(toLength(endPosition), len)
32579
32714
  , search = String(searchString);
32580
- return that.slice(end - search.length, end) === search;
32715
+ return $endsWith
32716
+ ? $endsWith.call(that, search, end)
32717
+ : that.slice(end - search.length, end) === search;
32581
32718
  }
32582
32719
  });
32583
- },{"222":222,"227":227,"269":269,"279":279}],362:[function(_dereq_,module,exports){
32584
- var $def = _dereq_(222)
32585
- , toIndex = _dereq_(276)
32720
+ },{"224":224,"229":229,"274":274,"284":284}],367:[function(_dereq_,module,exports){
32721
+ var $def = _dereq_(224)
32722
+ , toIndex = _dereq_(281)
32586
32723
  , fromCharCode = String.fromCharCode
32587
32724
  , $fromCodePoint = String.fromCodePoint;
32588
32725
 
@@ -32590,12 +32727,13 @@ var $def = _dereq_(222)
32590
32727
  $def($def.S + $def.F * (!!$fromCodePoint && $fromCodePoint.length != 1), 'String', {
32591
32728
  // 21.1.2.2 String.fromCodePoint(...codePoints)
32592
32729
  fromCodePoint: function fromCodePoint(x){ // eslint-disable-line no-unused-vars
32593
- var res = []
32594
- , len = arguments.length
32595
- , i = 0
32730
+ var res = []
32731
+ , $$ = arguments
32732
+ , $$len = $$.length
32733
+ , i = 0
32596
32734
  , code;
32597
- while(len > i){
32598
- code = +arguments[i++];
32735
+ while($$len > i){
32736
+ code = +$$[i++];
32599
32737
  if(toIndex(code, 0x10ffff) !== code)throw RangeError(code + ' is not a valid code point');
32600
32738
  res.push(code < 0x10000
32601
32739
  ? fromCharCode(code)
@@ -32604,23 +32742,24 @@ $def($def.S + $def.F * (!!$fromCodePoint && $fromCodePoint.length != 1), 'String
32604
32742
  } return res.join('');
32605
32743
  }
32606
32744
  });
32607
- },{"222":222,"276":276}],363:[function(_dereq_,module,exports){
32745
+ },{"224":224,"281":281}],368:[function(_dereq_,module,exports){
32746
+ // 21.1.3.7 String.prototype.includes(searchString, position = 0)
32608
32747
  'use strict';
32609
- var $def = _dereq_(222)
32610
- , context = _dereq_(269);
32748
+ var $def = _dereq_(224)
32749
+ , context = _dereq_(274)
32750
+ , INCLUDES = 'includes';
32611
32751
 
32612
- $def($def.P, 'String', {
32613
- // 21.1.3.7 String.prototype.includes(searchString, position = 0)
32752
+ $def($def.P + $def.F * _dereq_(229)(INCLUDES), 'String', {
32614
32753
  includes: function includes(searchString /*, position = 0 */){
32615
- return !!~context(this, searchString, 'includes').indexOf(searchString, arguments[1]);
32754
+ return !!~context(this, searchString, INCLUDES).indexOf(searchString, arguments.length > 1 ? arguments[1] : undefined);
32616
32755
  }
32617
32756
  });
32618
- },{"222":222,"269":269}],364:[function(_dereq_,module,exports){
32757
+ },{"224":224,"229":229,"274":274}],369:[function(_dereq_,module,exports){
32619
32758
  'use strict';
32620
- var $at = _dereq_(268)(true);
32759
+ var $at = _dereq_(273)(true);
32621
32760
 
32622
32761
  // 21.1.3.27 String.prototype[@@iterator]()
32623
- _dereq_(244)(String, 'String', function(iterated){
32762
+ _dereq_(248)(String, 'String', function(iterated){
32624
32763
  this._t = String(iterated); // target
32625
32764
  this._i = 0; // next index
32626
32765
  // 21.1.5.2.1 %StringIteratorPrototype%.next()
@@ -32633,80 +32772,89 @@ _dereq_(244)(String, 'String', function(iterated){
32633
32772
  this._i += point.length;
32634
32773
  return {value: point, done: false};
32635
32774
  });
32636
- },{"244":244,"268":268}],365:[function(_dereq_,module,exports){
32637
- var $def = _dereq_(222)
32638
- , toIObject = _dereq_(278)
32639
- , toLength = _dereq_(279);
32775
+ },{"248":248,"273":273}],370:[function(_dereq_,module,exports){
32776
+ var $def = _dereq_(224)
32777
+ , toIObject = _dereq_(283)
32778
+ , toLength = _dereq_(284);
32640
32779
 
32641
32780
  $def($def.S, 'String', {
32642
32781
  // 21.1.2.4 String.raw(callSite, ...substitutions)
32643
32782
  raw: function raw(callSite){
32644
- var tpl = toIObject(callSite.raw)
32645
- , len = toLength(tpl.length)
32646
- , sln = arguments.length
32647
- , res = []
32648
- , i = 0;
32783
+ var tpl = toIObject(callSite.raw)
32784
+ , len = toLength(tpl.length)
32785
+ , $$ = arguments
32786
+ , $$len = $$.length
32787
+ , res = []
32788
+ , i = 0;
32649
32789
  while(len > i){
32650
32790
  res.push(String(tpl[i++]));
32651
- if(i < sln)res.push(String(arguments[i]));
32791
+ if(i < $$len)res.push(String($$[i]));
32652
32792
  } return res.join('');
32653
32793
  }
32654
32794
  });
32655
- },{"222":222,"278":278,"279":279}],366:[function(_dereq_,module,exports){
32656
- var $def = _dereq_(222);
32795
+ },{"224":224,"283":283,"284":284}],371:[function(_dereq_,module,exports){
32796
+ var $def = _dereq_(224);
32657
32797
 
32658
32798
  $def($def.P, 'String', {
32659
32799
  // 21.1.3.13 String.prototype.repeat(count)
32660
- repeat: _dereq_(271)
32800
+ repeat: _dereq_(276)
32661
32801
  });
32662
- },{"222":222,"271":271}],367:[function(_dereq_,module,exports){
32802
+ },{"224":224,"276":276}],372:[function(_dereq_,module,exports){
32803
+ // 21.1.3.18 String.prototype.startsWith(searchString [, position ])
32663
32804
  'use strict';
32664
- var $def = _dereq_(222)
32665
- , toLength = _dereq_(279)
32666
- , context = _dereq_(269);
32805
+ var $def = _dereq_(224)
32806
+ , toLength = _dereq_(284)
32807
+ , context = _dereq_(274)
32808
+ , STARTS_WITH = 'startsWith'
32809
+ , $startsWith = ''[STARTS_WITH];
32667
32810
 
32668
- // should throw error on regex
32669
- $def($def.P + $def.F * !_dereq_(227)(function(){ 'q'.startsWith(/./); }), 'String', {
32670
- // 21.1.3.18 String.prototype.startsWith(searchString [, position ])
32811
+ $def($def.P + $def.F * _dereq_(229)(STARTS_WITH), 'String', {
32671
32812
  startsWith: function startsWith(searchString /*, position = 0 */){
32672
- var that = context(this, searchString, 'startsWith')
32673
- , index = toLength(Math.min(arguments[1], that.length))
32813
+ var that = context(this, searchString, STARTS_WITH)
32814
+ , $$ = arguments
32815
+ , index = toLength(Math.min($$.length > 1 ? $$[1] : undefined, that.length))
32674
32816
  , search = String(searchString);
32675
- return that.slice(index, index + search.length) === search;
32817
+ return $startsWith
32818
+ ? $startsWith.call(that, search, index)
32819
+ : that.slice(index, index + search.length) === search;
32676
32820
  }
32677
32821
  });
32678
- },{"222":222,"227":227,"269":269,"279":279}],368:[function(_dereq_,module,exports){
32822
+ },{"224":224,"229":229,"274":274,"284":284}],373:[function(_dereq_,module,exports){
32679
32823
  'use strict';
32680
32824
  // 21.1.3.25 String.prototype.trim()
32681
- _dereq_(272)('trim', function($trim){
32825
+ _dereq_(277)('trim', function($trim){
32682
32826
  return function trim(){
32683
32827
  return $trim(this, 3);
32684
32828
  };
32685
32829
  });
32686
- },{"272":272}],369:[function(_dereq_,module,exports){
32830
+ },{"277":277}],374:[function(_dereq_,module,exports){
32687
32831
  'use strict';
32688
32832
  // ECMAScript 6 symbols shim
32689
- var $ = _dereq_(248)
32690
- , global = _dereq_(232)
32691
- , has = _dereq_(233)
32692
- , SUPPORT_DESC = _dereq_(273)
32693
- , $def = _dereq_(222)
32694
- , $redef = _dereq_(260)
32695
- , shared = _dereq_(264)
32696
- , setTag = _dereq_(274)
32697
- , uid = _dereq_(281)
32698
- , wks = _dereq_(283)
32699
- , keyOf = _dereq_(249)
32700
- , $names = _dereq_(231)
32701
- , enumKeys = _dereq_(225)
32833
+ var $ = _dereq_(252)
32834
+ , global = _dereq_(235)
32835
+ , has = _dereq_(236)
32836
+ , SUPPORT_DESC = _dereq_(278)
32837
+ , $def = _dereq_(224)
32838
+ , $redef = _dereq_(264)
32839
+ , $fails = _dereq_(230)
32840
+ , shared = _dereq_(268)
32841
+ , setTag = _dereq_(279)
32842
+ , uid = _dereq_(286)
32843
+ , wks = _dereq_(288)
32844
+ , keyOf = _dereq_(253)
32845
+ , $names = _dereq_(234)
32846
+ , enumKeys = _dereq_(227)
32847
+ , isArray = _dereq_(242)
32702
32848
  , anObject = _dereq_(210)
32703
- , toIObject = _dereq_(278)
32704
- , createDesc = _dereq_(259)
32849
+ , toIObject = _dereq_(283)
32850
+ , createDesc = _dereq_(263)
32705
32851
  , getDesc = $.getDesc
32706
32852
  , setDesc = $.setDesc
32707
- , $create = $.create
32853
+ , _create = $.create
32708
32854
  , getNames = $names.get
32709
32855
  , $Symbol = global.Symbol
32856
+ , $JSON = global.JSON
32857
+ , _stringify = $JSON && $JSON.stringify
32710
32858
  , setter = false
32711
32859
  , HIDDEN = wks('_hidden')
32712
32860
  , isEnum = $.isEnum
@@ -32715,25 +32863,20 @@ var $ = _dereq_(248)
32715
32863
  , useNative = typeof $Symbol == 'function'
32716
32864
  , ObjectProto = Object.prototype;
32717
32865
 
32718
- var setSymbolDesc = SUPPORT_DESC ? function(){ // fallback for old Android
32719
- try {
32720
- return $create(setDesc({}, HIDDEN, {
32721
- get: function(){
32722
- return setDesc(this, HIDDEN, {value: false})[HIDDEN];
32723
- }
32724
- }))[HIDDEN] || setDesc;
32725
- } catch(e){
32726
- return function(it, key, D){
32727
- var protoDesc = getDesc(ObjectProto, key);
32728
- if(protoDesc)delete ObjectProto[key];
32729
- setDesc(it, key, D);
32730
- if(protoDesc && it !== ObjectProto)setDesc(ObjectProto, key, protoDesc);
32731
- };
32732
- }
32733
- }() : setDesc;
32866
+ // fallback for old Android, https://code.google.com/p/v8/issues/detail?id=687
32867
+ var setSymbolDesc = SUPPORT_DESC && $fails(function(){
32868
+ return _create(setDesc({}, 'a', {
32869
+ get: function(){ return setDesc(this, 'a', {value: 7}).a; }
32870
+ })).a != 7;
32871
+ }) ? function(it, key, D){
32872
+ var protoDesc = getDesc(ObjectProto, key);
32873
+ if(protoDesc)delete ObjectProto[key];
32874
+ setDesc(it, key, D);
32875
+ if(protoDesc && it !== ObjectProto)setDesc(ObjectProto, key, protoDesc);
32876
+ } : setDesc;
32734
32877
 
32735
32878
  var wrap = function(tag){
32736
- var sym = AllSymbols[tag] = $create($Symbol.prototype);
32879
+ var sym = AllSymbols[tag] = _create($Symbol.prototype);
32737
32880
  sym._k = tag;
32738
32881
  SUPPORT_DESC && setter && setSymbolDesc(ObjectProto, tag, {
32739
32882
  configurable: true,
@@ -32745,76 +32888,106 @@ var wrap = function(tag){
32745
32888
  return sym;
32746
32889
  };
32747
32890
 
32748
- function defineProperty(it, key, D){
32891
+ var isSymbol = function(it){
32892
+ return typeof it == 'symbol';
32893
+ };
32894
+
32895
+ var $defineProperty = function defineProperty(it, key, D){
32749
32896
  if(D && has(AllSymbols, key)){
32750
32897
  if(!D.enumerable){
32751
32898
  if(!has(it, HIDDEN))setDesc(it, HIDDEN, createDesc(1, {}));
32752
32899
  it[HIDDEN][key] = true;
32753
32900
  } else {
32754
32901
  if(has(it, HIDDEN) && it[HIDDEN][key])it[HIDDEN][key] = false;
32755
- D = $create(D, {enumerable: createDesc(0, false)});
32902
+ D = _create(D, {enumerable: createDesc(0, false)});
32756
32903
  } return setSymbolDesc(it, key, D);
32757
32904
  } return setDesc(it, key, D);
32758
- }
32759
- function defineProperties(it, P){
32905
+ };
32906
+ var $defineProperties = function defineProperties(it, P){
32760
32907
  anObject(it);
32761
32908
  var keys = enumKeys(P = toIObject(P))
32762
32909
  , i = 0
32763
32910
  , l = keys.length
32764
32911
  , key;
32765
- while(l > i)defineProperty(it, key = keys[i++], P[key]);
32912
+ while(l > i)$defineProperty(it, key = keys[i++], P[key]);
32766
32913
  return it;
32767
- }
32768
- function create(it, P){
32769
- return P === undefined ? $create(it) : defineProperties($create(it), P);
32770
- }
32771
- function propertyIsEnumerable(key){
32914
+ };
32915
+ var $create = function create(it, P){
32916
+ return P === undefined ? _create(it) : $defineProperties(_create(it), P);
32917
+ };
32918
+ var $propertyIsEnumerable = function propertyIsEnumerable(key){
32772
32919
  var E = isEnum.call(this, key);
32773
32920
  return E || !has(this, key) || !has(AllSymbols, key) || has(this, HIDDEN) && this[HIDDEN][key]
32774
32921
  ? E : true;
32775
- }
32776
- function getOwnPropertyDescriptor(it, key){
32922
+ };
32923
+ var $getOwnPropertyDescriptor = function getOwnPropertyDescriptor(it, key){
32777
32924
  var D = getDesc(it = toIObject(it), key);
32778
32925
  if(D && has(AllSymbols, key) && !(has(it, HIDDEN) && it[HIDDEN][key]))D.enumerable = true;
32779
32926
  return D;
32780
- }
32781
- function getOwnPropertyNames(it){
32927
+ };
32928
+ var $getOwnPropertyNames = function getOwnPropertyNames(it){
32782
32929
  var names = getNames(toIObject(it))
32783
32930
  , result = []
32784
32931
  , i = 0
32785
32932
  , key;
32786
32933
  while(names.length > i)if(!has(AllSymbols, key = names[i++]) && key != HIDDEN)result.push(key);
32787
32934
  return result;
32788
- }
32789
- function getOwnPropertySymbols(it){
32935
+ };
32936
+ var $getOwnPropertySymbols = function getOwnPropertySymbols(it){
32790
32937
  var names = getNames(toIObject(it))
32791
32938
  , result = []
32792
32939
  , i = 0
32793
32940
  , key;
32794
32941
  while(names.length > i)if(has(AllSymbols, key = names[i++]))result.push(AllSymbols[key]);
32795
32942
  return result;
32796
- }
32943
+ };
32944
+ var $stringify = function stringify(it){
32945
+ var args = [it]
32946
+ , i = 1
32947
+ , $$ = arguments
32948
+ , replacer, $replacer;
32949
+ while($$.length > i)args.push($$[i++]);
32950
+ replacer = args[1];
32951
+ if(typeof replacer == 'function')$replacer = replacer;
32952
+ if($replacer || !isArray(replacer))replacer = function(key, value){
32953
+ if($replacer)value = $replacer.call(this, key, value);
32954
+ if(!isSymbol(value))return value;
32955
+ };
32956
+ args[1] = replacer;
32957
+ return _stringify.apply($JSON, args);
32958
+ };
32959
+ var buggyJSON = $fails(function(){
32960
+ var S = $Symbol();
32961
+ // MS Edge converts symbol values to JSON as {}
32962
+ // WebKit converts symbol values to JSON as null
32963
+ // V8 throws on boxed symbols
32964
+ return _stringify([S]) != '[null]' || _stringify({a: S}) != '{}' || _stringify(Object(S)) != '{}';
32965
+ });
32797
32966
 
32798
32967
  // 19.4.1.1 Symbol([description])
32799
32968
  if(!useNative){
32800
32969
  $Symbol = function Symbol(){
32801
- if(this instanceof $Symbol)throw TypeError('Symbol is not a constructor');
32802
- return wrap(uid(arguments[0]));
32970
+ if(isSymbol(this))throw TypeError('Symbol is not a constructor');
32971
+ return wrap(uid(arguments.length > 0 ? arguments[0] : undefined));
32803
32972
  };
32804
- $redef($Symbol.prototype, 'toString', function(){
32973
+ $redef($Symbol.prototype, 'toString', function toString(){
32805
32974
  return this._k;
32806
32975
  });
32807
32976
 
32808
- $.create = create;
32809
- $.isEnum = propertyIsEnumerable;
32810
- $.getDesc = getOwnPropertyDescriptor;
32811
- $.setDesc = defineProperty;
32812
- $.setDescs = defineProperties;
32813
- $.getNames = $names.get = getOwnPropertyNames;
32814
- $.getSymbols = getOwnPropertySymbols;
32977
+ isSymbol = function(it){
32978
+ return it instanceof $Symbol;
32979
+ };
32980
+
32981
+ $.create = $create;
32982
+ $.isEnum = $propertyIsEnumerable;
32983
+ $.getDesc = $getOwnPropertyDescriptor;
32984
+ $.setDesc = $defineProperty;
32985
+ $.setDescs = $defineProperties;
32986
+ $.getNames = $names.get = $getOwnPropertyNames;
32987
+ $.getSymbols = $getOwnPropertySymbols;
32815
32988
 
32816
- if(SUPPORT_DESC && !_dereq_(250)){
32817
- $redef(ObjectProto, 'propertyIsEnumerable', propertyIsEnumerable, true);
32989
+ if(SUPPORT_DESC && !_dereq_(254)){
32990
+ $redef(ObjectProto, 'propertyIsEnumerable', $propertyIsEnumerable, true);
32818
32991
  }
32819
32992
  }
32820
32993
 
@@ -32844,13 +33017,12 @@ var symbolStatics = {
32844
33017
  // 19.4.2.13 Symbol.toStringTag
32845
33018
  // 19.4.2.14 Symbol.unscopables
32846
33019
  $.each.call((
32847
- 'hasInstance,isConcatSpreadable,iterator,match,replace,search,' +
32848
- 'species,split,toPrimitive,toStringTag,unscopables'
32849
- ).split(','), function(it){
32850
- var sym = wks(it);
32851
- symbolStatics[it] = useNative ? sym : wrap(sym);
32852
- }
32853
- );
33020
+ 'hasInstance,isConcatSpreadable,iterator,match,replace,search,' +
33021
+ 'species,split,toPrimitive,toStringTag,unscopables'
33022
+ ).split(','), function(it){
33023
+ var sym = wks(it);
33024
+ symbolStatics[it] = useNative ? sym : wrap(sym);
33025
+ });
32854
33026
 
32855
33027
  setter = true;
32856
33028
 
@@ -32860,39 +33032,42 @@ $def($def.S, 'Symbol', symbolStatics);
32860
33032
 
32861
33033
  $def($def.S + $def.F * !useNative, 'Object', {
32862
33034
  // 19.1.2.2 Object.create(O [, Properties])
32863
- create: create,
33035
+ create: $create,
32864
33036
  // 19.1.2.4 Object.defineProperty(O, P, Attributes)
32865
- defineProperty: defineProperty,
33037
+ defineProperty: $defineProperty,
32866
33038
  // 19.1.2.3 Object.defineProperties(O, Properties)
32867
- defineProperties: defineProperties,
33039
+ defineProperties: $defineProperties,
32868
33040
  // 19.1.2.6 Object.getOwnPropertyDescriptor(O, P)
32869
- getOwnPropertyDescriptor: getOwnPropertyDescriptor,
33041
+ getOwnPropertyDescriptor: $getOwnPropertyDescriptor,
32870
33042
  // 19.1.2.7 Object.getOwnPropertyNames(O)
32871
- getOwnPropertyNames: getOwnPropertyNames,
33043
+ getOwnPropertyNames: $getOwnPropertyNames,
32872
33044
  // 19.1.2.8 Object.getOwnPropertySymbols(O)
32873
- getOwnPropertySymbols: getOwnPropertySymbols
33045
+ getOwnPropertySymbols: $getOwnPropertySymbols
32874
33046
  });
32875
33047
 
33048
+ // 24.3.2 JSON.stringify(value [, replacer [, space]])
33049
+ $JSON && $def($def.S + $def.F * (!useNative || buggyJSON), 'JSON', {stringify: $stringify});
33050
+
32876
33051
  // 19.4.3.5 Symbol.prototype[@@toStringTag]
32877
33052
  setTag($Symbol, 'Symbol');
32878
33053
  // 20.2.1.9 Math[@@toStringTag]
32879
33054
  setTag(Math, 'Math', true);
32880
33055
  // 24.3.3 JSON[@@toStringTag]
32881
33056
  setTag(global.JSON, 'JSON', true);
32882
- },{"210":210,"222":222,"225":225,"231":231,"232":232,"233":233,"248":248,"249":249,"250":250,"259":259,"260":260,"264":264,"273":273,"274":274,"278":278,"281":281,"283":283}],370:[function(_dereq_,module,exports){
33057
+ },{"210":210,"224":224,"227":227,"230":230,"234":234,"235":235,"236":236,"242":242,"252":252,"253":253,"254":254,"263":263,"264":264,"268":268,"278":278,"279":279,"283":283,"286":286,"288":288}],375:[function(_dereq_,module,exports){
32883
33058
  'use strict';
32884
- var $ = _dereq_(248)
32885
- , weak = _dereq_(218)
32886
- , isObject = _dereq_(240)
32887
- , has = _dereq_(233)
33059
+ var $ = _dereq_(252)
33060
+ , weak = _dereq_(220)
33061
+ , isObject = _dereq_(244)
33062
+ , has = _dereq_(236)
32888
33063
  , frozenStore = weak.frozenStore
32889
33064
  , WEAK = weak.WEAK
32890
33065
  , isExtensible = Object.isExtensible || isObject
32891
33066
  , tmp = {};
32892
33067
 
32893
33068
  // 23.3 WeakMap Objects
32894
- var $WeakMap = _dereq_(219)('WeakMap', function(get){
32895
- return function WeakMap(){ return get(this, arguments[0]); };
33069
+ var $WeakMap = _dereq_(221)('WeakMap', function(get){
33070
+ return function WeakMap(){ return get(this, arguments.length > 0 ? arguments[0] : undefined); };
32896
33071
  }, {
32897
33072
  // 23.3.3.3 WeakMap.prototype.get(key)
32898
33073
  get: function get(key){
@@ -32912,7 +33087,7 @@ if(new $WeakMap().set((Object.freeze || Object)(tmp), 7).get(tmp) != 7){
32912
33087
  $.each.call(['delete', 'has', 'get', 'set'], function(key){
32913
33088
  var proto = $WeakMap.prototype
32914
33089
  , method = proto[key];
32915
- _dereq_(260)(proto, key, function(a, b){
33090
+ _dereq_(264)(proto, key, function(a, b){
32916
33091
  // store frozen objects on leaky map
32917
33092
  if(isObject(a) && !isExtensible(a)){
32918
33093
  var result = frozenStore(this)[key](a, b);
@@ -32922,52 +33097,52 @@ if(new $WeakMap().set((Object.freeze || Object)(tmp), 7).get(tmp) != 7){
32922
33097
  });
32923
33098
  });
32924
33099
  }
32925
- },{"218":218,"219":219,"233":233,"240":240,"248":248,"260":260}],371:[function(_dereq_,module,exports){
33100
+ },{"220":220,"221":221,"236":236,"244":244,"252":252,"264":264}],376:[function(_dereq_,module,exports){
32926
33101
  'use strict';
32927
- var weak = _dereq_(218);
33102
+ var weak = _dereq_(220);
32928
33103
 
32929
33104
  // 23.4 WeakSet Objects
32930
- _dereq_(219)('WeakSet', function(get){
32931
- return function WeakSet(){ return get(this, arguments[0]); };
33105
+ _dereq_(221)('WeakSet', function(get){
33106
+ return function WeakSet(){ return get(this, arguments.length > 0 ? arguments[0] : undefined); };
32932
33107
  }, {
32933
33108
  // 23.4.3.1 WeakSet.prototype.add(value)
32934
33109
  add: function add(value){
32935
33110
  return weak.def(this, value, true);
32936
33111
  }
32937
33112
  }, weak, false, true);
32938
- },{"218":218,"219":219}],372:[function(_dereq_,module,exports){
33113
+ },{"220":220,"221":221}],377:[function(_dereq_,module,exports){
32939
33114
  'use strict';
32940
- var $def = _dereq_(222)
32941
- , $includes = _dereq_(211)(true);
33115
+ var $def = _dereq_(224)
33116
+ , $includes = _dereq_(213)(true);
32942
33117
  $def($def.P, 'Array', {
32943
33118
  // https://github.com/domenic/Array.prototype.includes
32944
33119
  includes: function includes(el /*, fromIndex = 0 */){
32945
- return $includes(this, el, arguments[1]);
33120
+ return $includes(this, el, arguments.length > 1 ? arguments[1] : undefined);
32946
33121
  }
32947
33122
  });
32948
- _dereq_(282)('includes');
32949
- },{"211":211,"222":222,"282":282}],373:[function(_dereq_,module,exports){
33123
+ _dereq_(287)('includes');
33124
+ },{"213":213,"224":224,"287":287}],378:[function(_dereq_,module,exports){
32950
33125
  // https://github.com/DavidBruant/Map-Set.prototype.toJSON
32951
- var $def = _dereq_(222);
33126
+ var $def = _dereq_(224);
32952
33127
 
32953
- $def($def.P, 'Map', {toJSON: _dereq_(217)('Map')});
32954
- },{"217":217,"222":222}],374:[function(_dereq_,module,exports){
33128
+ $def($def.P, 'Map', {toJSON: _dereq_(219)('Map')});
33129
+ },{"219":219,"224":224}],379:[function(_dereq_,module,exports){
32955
33130
  // http://goo.gl/XkBrjD
32956
- var $def = _dereq_(222)
32957
- , $entries = _dereq_(255)(true);
33131
+ var $def = _dereq_(224)
33132
+ , $entries = _dereq_(259)(true);
32958
33133
 
32959
33134
  $def($def.S, 'Object', {
32960
33135
  entries: function entries(it){
32961
33136
  return $entries(it);
32962
33137
  }
32963
33138
  });
32964
- },{"222":222,"255":255}],375:[function(_dereq_,module,exports){
33139
+ },{"224":224,"259":259}],380:[function(_dereq_,module,exports){
32965
33140
  // https://gist.github.com/WebReflection/9353781
32966
- var $ = _dereq_(248)
32967
- , $def = _dereq_(222)
32968
- , ownKeys = _dereq_(256)
32969
- , toIObject = _dereq_(278)
32970
- , createDesc = _dereq_(259);
33141
+ var $ = _dereq_(252)
33142
+ , $def = _dereq_(224)
33143
+ , ownKeys = _dereq_(260)
33144
+ , toIObject = _dereq_(283)
33145
+ , createDesc = _dereq_(263);
32971
33146
 
32972
33147
  $def($def.S, 'Object', {
32973
33148
  getOwnPropertyDescriptors: function getOwnPropertyDescriptors(object){
@@ -32985,81 +33160,81 @@ $def($def.S, 'Object', {
32985
33160
  } return result;
32986
33161
  }
32987
33162
  });
32988
- },{"222":222,"248":248,"256":256,"259":259,"278":278}],376:[function(_dereq_,module,exports){
33163
+ },{"224":224,"252":252,"260":260,"263":263,"283":283}],381:[function(_dereq_,module,exports){
32989
33164
  // http://goo.gl/XkBrjD
32990
- var $def = _dereq_(222)
32991
- , $values = _dereq_(255)(false);
33165
+ var $def = _dereq_(224)
33166
+ , $values = _dereq_(259)(false);
32992
33167
 
32993
33168
  $def($def.S, 'Object', {
32994
33169
  values: function values(it){
32995
33170
  return $values(it);
32996
33171
  }
32997
33172
  });
32998
- },{"222":222,"255":255}],377:[function(_dereq_,module,exports){
33173
+ },{"224":224,"259":259}],382:[function(_dereq_,module,exports){
32999
33174
  // https://github.com/benjamingr/RexExp.escape
33000
- var $def = _dereq_(222)
33001
- , $re = _dereq_(261)(/[\\^$*+?.()|[\]{}]/g, '\\$&');
33175
+ var $def = _dereq_(224)
33176
+ , $re = _dereq_(265)(/[\\^$*+?.()|[\]{}]/g, '\\$&');
33002
33177
  $def($def.S, 'RegExp', {escape: function escape(it){ return $re(it); }});
33003
33178
 
33004
- },{"222":222,"261":261}],378:[function(_dereq_,module,exports){
33179
+ },{"224":224,"265":265}],383:[function(_dereq_,module,exports){
33005
33180
  // https://github.com/DavidBruant/Map-Set.prototype.toJSON
33006
- var $def = _dereq_(222);
33181
+ var $def = _dereq_(224);
33007
33182
 
33008
- $def($def.P, 'Set', {toJSON: _dereq_(217)('Set')});
33009
- },{"217":217,"222":222}],379:[function(_dereq_,module,exports){
33183
+ $def($def.P, 'Set', {toJSON: _dereq_(219)('Set')});
33184
+ },{"219":219,"224":224}],384:[function(_dereq_,module,exports){
33010
33185
  // https://github.com/mathiasbynens/String.prototype.at
33011
33186
  'use strict';
33012
- var $def = _dereq_(222)
33013
- , $at = _dereq_(268)(true);
33187
+ var $def = _dereq_(224)
33188
+ , $at = _dereq_(273)(true);
33014
33189
  $def($def.P, 'String', {
33015
33190
  at: function at(pos){
33016
33191
  return $at(this, pos);
33017
33192
  }
33018
33193
  });
33019
- },{"222":222,"268":268}],380:[function(_dereq_,module,exports){
33194
+ },{"224":224,"273":273}],385:[function(_dereq_,module,exports){
33020
33195
  'use strict';
33021
- var $def = _dereq_(222)
33022
- , $pad = _dereq_(270);
33196
+ var $def = _dereq_(224)
33197
+ , $pad = _dereq_(275);
33023
33198
  $def($def.P, 'String', {
33024
33199
  padLeft: function padLeft(maxLength /*, fillString = ' ' */){
33025
- return $pad(this, maxLength, arguments[1], true);
33200
+ return $pad(this, maxLength, arguments.length > 1 ? arguments[1] : undefined, true);
33026
33201
  }
33027
33202
  });
33028
- },{"222":222,"270":270}],381:[function(_dereq_,module,exports){
33203
+ },{"224":224,"275":275}],386:[function(_dereq_,module,exports){
33029
33204
  'use strict';
33030
- var $def = _dereq_(222)
33031
- , $pad = _dereq_(270);
33205
+ var $def = _dereq_(224)
33206
+ , $pad = _dereq_(275);
33032
33207
  $def($def.P, 'String', {
33033
33208
  padRight: function padRight(maxLength /*, fillString = ' ' */){
33034
- return $pad(this, maxLength, arguments[1], false);
33209
+ return $pad(this, maxLength, arguments.length > 1 ? arguments[1] : undefined, false);
33035
33210
  }
33036
33211
  });
33037
- },{"222":222,"270":270}],382:[function(_dereq_,module,exports){
33212
+ },{"224":224,"275":275}],387:[function(_dereq_,module,exports){
33038
33213
  'use strict';
33039
33214
  // https://github.com/sebmarkbage/ecmascript-string-left-right-trim
33040
- _dereq_(272)('trimLeft', function($trim){
33215
+ _dereq_(277)('trimLeft', function($trim){
33041
33216
  return function trimLeft(){
33042
33217
  return $trim(this, 1);
33043
33218
  };
33044
33219
  });
33045
- },{"272":272}],383:[function(_dereq_,module,exports){
33220
+ },{"277":277}],388:[function(_dereq_,module,exports){
33046
33221
  'use strict';
33047
33222
  // https://github.com/sebmarkbage/ecmascript-string-left-right-trim
33048
- _dereq_(272)('trimRight', function($trim){
33223
+ _dereq_(277)('trimRight', function($trim){
33049
33224
  return function trimRight(){
33050
33225
  return $trim(this, 2);
33051
33226
  };
33052
33227
  });
33053
- },{"272":272}],384:[function(_dereq_,module,exports){
33228
+ },{"277":277}],389:[function(_dereq_,module,exports){
33054
33229
  // JavaScript 1.6 / Strawman array statics shim
33055
- var $ = _dereq_(248)
33056
- , $def = _dereq_(222)
33057
- , $Array = _dereq_(220).Array || Array
33230
+ var $ = _dereq_(252)
33231
+ , $def = _dereq_(224)
33232
+ , $Array = _dereq_(222).Array || Array
33058
33233
  , statics = {};
33059
33234
  var setStatics = function(keys, length){
33060
33235
  $.each.call(keys.split(','), function(key){
33061
33236
  if(length == undefined && key in $Array)statics[key] = $Array[key];
33062
- else if(key in [])statics[key] = _dereq_(221)(Function.call, [][key], length);
33237
+ else if(key in [])statics[key] = _dereq_(223)(Function.call, [][key], length);
33063
33238
  });
33064
33239
  };
33065
33240
  setStatics('pop,reverse,shift,keys,values,entries', 1);
@@ -33067,12 +33242,12 @@ setStatics('indexOf,every,some,forEach,map,filter,find,findIndex,includes', 3);
33067
33242
  setStatics('join,slice,concat,push,splice,unshift,sort,lastIndexOf,' +
33068
33243
  'reduce,reduceRight,copyWithin,fill');
33069
33244
  $def($def.S, 'Array', statics);
33070
- },{"220":220,"221":221,"222":222,"248":248}],385:[function(_dereq_,module,exports){
33071
- _dereq_(291);
33072
- var global = _dereq_(232)
33073
- , hide = _dereq_(234)
33074
- , Iterators = _dereq_(247)
33075
- , ITERATOR = _dereq_(283)('iterator')
33245
+ },{"222":222,"223":223,"224":224,"252":252}],390:[function(_dereq_,module,exports){
33246
+ _dereq_(296);
33247
+ var global = _dereq_(235)
33248
+ , hide = _dereq_(237)
33249
+ , Iterators = _dereq_(251)
33250
+ , ITERATOR = _dereq_(288)('iterator')
33076
33251
  , NL = global.NodeList
33077
33252
  , HTC = global.HTMLCollection
33078
33253
  , NLProto = NL && NL.prototype
@@ -33080,19 +33255,19 @@ var global = _dereq_(232)
33080
33255
  , ArrayValues = Iterators.NodeList = Iterators.HTMLCollection = Iterators.Array;
33081
33256
  if(NL && !(ITERATOR in NLProto))hide(NLProto, ITERATOR, ArrayValues);
33082
33257
  if(HTC && !(ITERATOR in HTCProto))hide(HTCProto, ITERATOR, ArrayValues);
33083
- },{"232":232,"234":234,"247":247,"283":283,"291":291}],386:[function(_dereq_,module,exports){
33084
- var $def = _dereq_(222)
33085
- , $task = _dereq_(275);
33258
+ },{"235":235,"237":237,"251":251,"288":288,"296":296}],391:[function(_dereq_,module,exports){
33259
+ var $def = _dereq_(224)
33260
+ , $task = _dereq_(280);
33086
33261
  $def($def.G + $def.B, {
33087
33262
  setImmediate: $task.set,
33088
33263
  clearImmediate: $task.clear
33089
33264
  });
33090
- },{"222":222,"275":275}],387:[function(_dereq_,module,exports){
33265
+ },{"224":224,"280":280}],392:[function(_dereq_,module,exports){
33091
33266
  // ie9- setTimeout & setInterval additional parameters fix
33092
- var global = _dereq_(232)
33093
- , $def = _dereq_(222)
33094
- , invoke = _dereq_(236)
33095
- , partial = _dereq_(257)
33267
+ var global = _dereq_(235)
33268
+ , $def = _dereq_(224)
33269
+ , invoke = _dereq_(239)
33270
+ , partial = _dereq_(261)
33096
33271
  , navigator = global.navigator
33097
33272
  , MSIE = !!navigator && /MSIE .\./.test(navigator.userAgent); // <- dirty ie9- check
33098
33273
  var wrap = function(set){
@@ -33108,40 +33283,35 @@ $def($def.G + $def.B + $def.F * MSIE, {
33108
33283
  setTimeout: wrap(global.setTimeout),
33109
33284
  setInterval: wrap(global.setInterval)
33110
33285
  });
33111
- },{"222":222,"232":232,"236":236,"257":257}],388:[function(_dereq_,module,exports){
33112
- _dereq_(285);
33113
- _dereq_(369);
33114
- _dereq_(324);
33115
- _dereq_(332);
33116
- _dereq_(336);
33286
+ },{"224":224,"235":235,"239":239,"261":261}],393:[function(_dereq_,module,exports){
33287
+ _dereq_(290);
33288
+ _dereq_(374);
33289
+ _dereq_(329);
33117
33290
  _dereq_(337);
33118
- _dereq_(325);
33291
+ _dereq_(341);
33292
+ _dereq_(342);
33293
+ _dereq_(330);
33294
+ _dereq_(340);
33295
+ _dereq_(339);
33119
33296
  _dereq_(335);
33297
+ _dereq_(336);
33120
33298
  _dereq_(334);
33121
- _dereq_(330);
33122
33299
  _dereq_(331);
33123
- _dereq_(329);
33124
- _dereq_(326);
33125
- _dereq_(328);
33126
33300
  _dereq_(333);
33127
- _dereq_(327);
33128
- _dereq_(295);
33129
- _dereq_(294);
33130
- _dereq_(314);
33131
- _dereq_(315);
33132
- _dereq_(316);
33133
- _dereq_(317);
33134
- _dereq_(318);
33301
+ _dereq_(338);
33302
+ _dereq_(332);
33303
+ _dereq_(300);
33304
+ _dereq_(299);
33135
33305
  _dereq_(319);
33136
33306
  _dereq_(320);
33137
33307
  _dereq_(321);
33138
33308
  _dereq_(322);
33139
33309
  _dereq_(323);
33140
- _dereq_(297);
33141
- _dereq_(298);
33142
- _dereq_(299);
33143
- _dereq_(300);
33144
- _dereq_(301);
33310
+ _dereq_(324);
33311
+ _dereq_(325);
33312
+ _dereq_(326);
33313
+ _dereq_(327);
33314
+ _dereq_(328);
33145
33315
  _dereq_(302);
33146
33316
  _dereq_(303);
33147
33317
  _dereq_(304);
@@ -33154,66 +33324,71 @@ _dereq_(310);
33154
33324
  _dereq_(311);
33155
33325
  _dereq_(312);
33156
33326
  _dereq_(313);
33157
- _dereq_(362);
33327
+ _dereq_(314);
33328
+ _dereq_(315);
33329
+ _dereq_(316);
33330
+ _dereq_(317);
33331
+ _dereq_(318);
33332
+ _dereq_(367);
33333
+ _dereq_(370);
33334
+ _dereq_(373);
33335
+ _dereq_(369);
33158
33336
  _dereq_(365);
33159
- _dereq_(368);
33160
- _dereq_(364);
33161
- _dereq_(360);
33162
- _dereq_(361);
33163
- _dereq_(363);
33164
33337
  _dereq_(366);
33165
- _dereq_(367);
33166
- _dereq_(290);
33167
- _dereq_(292);
33338
+ _dereq_(368);
33339
+ _dereq_(371);
33340
+ _dereq_(372);
33341
+ _dereq_(295);
33342
+ _dereq_(297);
33343
+ _dereq_(296);
33344
+ _dereq_(298);
33168
33345
  _dereq_(291);
33346
+ _dereq_(292);
33347
+ _dereq_(294);
33169
33348
  _dereq_(293);
33170
- _dereq_(286);
33171
- _dereq_(287);
33172
- _dereq_(289);
33173
- _dereq_(288);
33174
- _dereq_(353);
33175
- _dereq_(354);
33176
- _dereq_(355);
33177
- _dereq_(356);
33178
- _dereq_(357);
33179
33349
  _dereq_(358);
33180
- _dereq_(338);
33181
- _dereq_(296);
33182
33350
  _dereq_(359);
33183
- _dereq_(370);
33184
- _dereq_(371);
33185
- _dereq_(339);
33186
- _dereq_(340);
33187
- _dereq_(341);
33188
- _dereq_(342);
33351
+ _dereq_(360);
33352
+ _dereq_(361);
33353
+ _dereq_(362);
33354
+ _dereq_(363);
33189
33355
  _dereq_(343);
33190
- _dereq_(346);
33356
+ _dereq_(301);
33357
+ _dereq_(364);
33358
+ _dereq_(375);
33359
+ _dereq_(376);
33191
33360
  _dereq_(344);
33192
33361
  _dereq_(345);
33362
+ _dereq_(346);
33193
33363
  _dereq_(347);
33194
33364
  _dereq_(348);
33365
+ _dereq_(351);
33195
33366
  _dereq_(349);
33196
33367
  _dereq_(350);
33197
33368
  _dereq_(352);
33198
- _dereq_(351);
33199
- _dereq_(372);
33200
- _dereq_(379);
33201
- _dereq_(380);
33202
- _dereq_(381);
33203
- _dereq_(382);
33204
- _dereq_(383);
33369
+ _dereq_(353);
33370
+ _dereq_(354);
33371
+ _dereq_(355);
33372
+ _dereq_(357);
33373
+ _dereq_(356);
33205
33374
  _dereq_(377);
33206
- _dereq_(375);
33207
- _dereq_(376);
33208
- _dereq_(374);
33209
- _dereq_(373);
33210
- _dereq_(378);
33211
33375
  _dereq_(384);
33212
- _dereq_(387);
33213
- _dereq_(386);
33214
33376
  _dereq_(385);
33215
- module.exports = _dereq_(220);
33216
- },{"220":220,"285":285,"286":286,"287":287,"288":288,"289":289,"290":290,"291":291,"292":292,"293":293,"294":294,"295":295,"296":296,"297":297,"298":298,"299":299,"300":300,"301":301,"302":302,"303":303,"304":304,"305":305,"306":306,"307":307,"308":308,"309":309,"310":310,"311":311,"312":312,"313":313,"314":314,"315":315,"316":316,"317":317,"318":318,"319":319,"320":320,"321":321,"322":322,"323":323,"324":324,"325":325,"326":326,"327":327,"328":328,"329":329,"330":330,"331":331,"332":332,"333":333,"334":334,"335":335,"336":336,"337":337,"338":338,"339":339,"340":340,"341":341,"342":342,"343":343,"344":344,"345":345,"346":346,"347":347,"348":348,"349":349,"350":350,"351":351,"352":352,"353":353,"354":354,"355":355,"356":356,"357":357,"358":358,"359":359,"360":360,"361":361,"362":362,"363":363,"364":364,"365":365,"366":366,"367":367,"368":368,"369":369,"370":370,"371":371,"372":372,"373":373,"374":374,"375":375,"376":376,"377":377,"378":378,"379":379,"380":380,"381":381,"382":382,"383":383,"384":384,"385":385,"386":386,"387":387}],389:[function(_dereq_,module,exports){
33377
+ _dereq_(386);
33378
+ _dereq_(387);
33379
+ _dereq_(388);
33380
+ _dereq_(382);
33381
+ _dereq_(380);
33382
+ _dereq_(381);
33383
+ _dereq_(379);
33384
+ _dereq_(378);
33385
+ _dereq_(383);
33386
+ _dereq_(389);
33387
+ _dereq_(392);
33388
+ _dereq_(391);
33389
+ _dereq_(390);
33390
+ module.exports = _dereq_(222);
33391
+ },{"222":222,"290":290,"291":291,"292":292,"293":293,"294":294,"295":295,"296":296,"297":297,"298":298,"299":299,"300":300,"301":301,"302":302,"303":303,"304":304,"305":305,"306":306,"307":307,"308":308,"309":309,"310":310,"311":311,"312":312,"313":313,"314":314,"315":315,"316":316,"317":317,"318":318,"319":319,"320":320,"321":321,"322":322,"323":323,"324":324,"325":325,"326":326,"327":327,"328":328,"329":329,"330":330,"331":331,"332":332,"333":333,"334":334,"335":335,"336":336,"337":337,"338":338,"339":339,"340":340,"341":341,"342":342,"343":343,"344":344,"345":345,"346":346,"347":347,"348":348,"349":349,"350":350,"351":351,"352":352,"353":353,"354":354,"355":355,"356":356,"357":357,"358":358,"359":359,"360":360,"361":361,"362":362,"363":363,"364":364,"365":365,"366":366,"367":367,"368":368,"369":369,"370":370,"371":371,"372":372,"373":373,"374":374,"375":375,"376":376,"377":377,"378":378,"379":379,"380":380,"381":381,"382":382,"383":383,"384":384,"385":385,"386":386,"387":387,"388":388,"389":389,"390":390,"391":391,"392":392}],394:[function(_dereq_,module,exports){
33217
33392
 
33218
33393
  /**
33219
33394
  * This is the common logic for both the Node.js and web browser
@@ -33227,7 +33402,7 @@ exports.coerce = coerce;
33227
33402
  exports.disable = disable;
33228
33403
  exports.enable = enable;
33229
33404
  exports.enabled = enabled;
33230
- exports.humanize = _dereq_(391);
33405
+ exports.humanize = _dereq_(396);
33231
33406
 
33232
33407
  /**
33233
33408
  * The currently active debug mode names, and names to skip.
@@ -33412,7 +33587,7 @@ function coerce(val) {
33412
33587
  return val;
33413
33588
  }
33414
33589
 
33415
- },{"391":391}],390:[function(_dereq_,module,exports){
33590
+ },{"396":396}],395:[function(_dereq_,module,exports){
33416
33591
  (function (process){
33417
33592
 
33418
33593
  /**
@@ -33428,7 +33603,7 @@ var util = _dereq_(13);
33428
33603
  * Expose `debug()` as the module.
33429
33604
  */
33430
33605
 
33431
- exports = module.exports = _dereq_(389);
33606
+ exports = module.exports = _dereq_(394);
33432
33607
  exports.log = log;
33433
33608
  exports.formatArgs = formatArgs;
33434
33609
  exports.save = save;
@@ -33625,7 +33800,7 @@ function createWritableStdioStream (fd) {
33625
33800
  exports.enable(load());
33626
33801
 
33627
33802
  }).call(this,_dereq_(10))
33628
- },{"1":1,"10":10,"11":11,"13":13,"389":389}],391:[function(_dereq_,module,exports){
33803
+ },{"1":1,"10":10,"11":11,"13":13,"394":394}],396:[function(_dereq_,module,exports){
33629
33804
  /**
33630
33805
  * Helpers.
33631
33806
  */
@@ -33752,7 +33927,7 @@ function plural(ms, n, name) {
33752
33927
  return Math.ceil(ms / n) + ' ' + name + 's';
33753
33928
  }
33754
33929
 
33755
- },{}],392:[function(_dereq_,module,exports){
33930
+ },{}],397:[function(_dereq_,module,exports){
33756
33931
  'use strict';
33757
33932
  var repeating = _dereq_(590);
33758
33933
 
@@ -33873,7 +34048,7 @@ module.exports = function (str) {
33873
34048
  };
33874
34049
  };
33875
34050
 
33876
- },{"590":590}],393:[function(_dereq_,module,exports){
34051
+ },{"590":590}],398:[function(_dereq_,module,exports){
33877
34052
  /*
33878
34053
  Copyright (C) 2013 Yusuke Suzuki <utatane.tea@gmail.com>
33879
34054
 
@@ -34019,7 +34194,7 @@ module.exports = function (str) {
34019
34194
  }());
34020
34195
  /* vim: set sw=4 ts=4 et tw=80 : */
34021
34196
 
34022
- },{}],394:[function(_dereq_,module,exports){
34197
+ },{}],399:[function(_dereq_,module,exports){
34023
34198
  /*
34024
34199
  Copyright (C) 2013-2014 Yusuke Suzuki <utatane.tea@gmail.com>
34025
34200
  Copyright (C) 2014 Ivan Nikulin <ifaaan@gmail.com>
@@ -34156,7 +34331,7 @@ module.exports = function (str) {
34156
34331
  }());
34157
34332
  /* vim: set sw=4 ts=4 et tw=80 : */
34158
34333
 
34159
- },{}],395:[function(_dereq_,module,exports){
34334
+ },{}],400:[function(_dereq_,module,exports){
34160
34335
  /*
34161
34336
  Copyright (C) 2013 Yusuke Suzuki <utatane.tea@gmail.com>
34162
34337
 
@@ -34184,7 +34359,7 @@ module.exports = function (str) {
34184
34359
  (function () {
34185
34360
  'use strict';
34186
34361
 
34187
- var code = _dereq_(394);
34362
+ var code = _dereq_(399);
34188
34363
 
34189
34364
  function isStrictModeReservedWordES6(id) {
34190
34365
  switch (id) {
@@ -34323,7 +34498,7 @@ module.exports = function (str) {
34323
34498
  }());
34324
34499
  /* vim: set sw=4 ts=4 et tw=80 : */
34325
34500
 
34326
- },{"394":394}],396:[function(_dereq_,module,exports){
34501
+ },{"399":399}],401:[function(_dereq_,module,exports){
34327
34502
  /*
34328
34503
  Copyright (C) 2013 Yusuke Suzuki <utatane.tea@gmail.com>
34329
34504
 
@@ -34352,13 +34527,13 @@ module.exports = function (str) {
34352
34527
  (function () {
34353
34528
  'use strict';
34354
34529
 
34355
- exports.ast = _dereq_(393);
34356
- exports.code = _dereq_(394);
34357
- exports.keyword = _dereq_(395);
34530
+ exports.ast = _dereq_(398);
34531
+ exports.code = _dereq_(399);
34532
+ exports.keyword = _dereq_(400);
34358
34533
  }());
34359
34534
  /* vim: set sw=4 ts=4 et tw=80 : */
34360
34535
 
34361
- },{"393":393,"394":394,"395":395}],397:[function(_dereq_,module,exports){
34536
+ },{"398":398,"399":399,"400":400}],402:[function(_dereq_,module,exports){
34362
34537
  module.exports={
34363
34538
  "builtin": {
34364
34539
  "Array": false,
@@ -35109,269 +35284,33 @@ module.exports={
35109
35284
  }
35110
35285
  }
35111
35286
 
35112
- },{}],398:[function(_dereq_,module,exports){
35113
- module.exports = _dereq_(397);
35287
+ },{}],403:[function(_dereq_,module,exports){
35288
+ module.exports = _dereq_(402);
35114
35289
 
35115
- },{"397":397}],399:[function(_dereq_,module,exports){
35290
+ },{"402":402}],404:[function(_dereq_,module,exports){
35116
35291
  // https://github.com/paulmillr/es6-shim
35117
35292
  // http://people.mozilla.org/~jorendorff/es6-draft.html#sec-number.isinteger
35118
- var isNaN = _dereq_(402);
35119
- var isFinite = _dereq_(400);
35293
+ var isFinite = _dereq_(405);
35120
35294
  module.exports = Number.isInteger || function(val) {
35121
- return typeof val === "number" &&
35122
- ! isNaN(val) &&
35123
- isFinite(val) &&
35124
- parseInt(val, 10) === val;
35295
+ return typeof val === "number" &&
35296
+ isFinite(val) &&
35297
+ Math.floor(val) === val;
35125
35298
  };
35126
35299
 
35127
- },{"400":400,"402":402}],400:[function(_dereq_,module,exports){
35300
+ },{"405":405}],405:[function(_dereq_,module,exports){
35128
35301
  'use strict';
35129
- var numberIsNan = _dereq_(401);
35302
+ var numberIsNan = _dereq_(406);
35130
35303
 
35131
35304
  module.exports = Number.isFinite || function (val) {
35132
35305
  return !(typeof val !== 'number' || numberIsNan(val) || val === Infinity || val === -Infinity);
35133
35306
  };
35134
35307
 
35135
- },{"401":401}],401:[function(_dereq_,module,exports){
35308
+ },{"406":406}],406:[function(_dereq_,module,exports){
35136
35309
  'use strict';
35137
35310
  module.exports = Number.isNaN || function (x) {
35138
35311
  return x !== x;
35139
35312
  };
35140
35313
 
35141
- },{}],402:[function(_dereq_,module,exports){
35142
- 'use strict';
35143
-
35144
- var define = _dereq_(403);
35145
-
35146
- /* http://www.ecma-international.org/ecma-262/6.0/#sec-number.isnan */
35147
-
35148
- var numberIsNaN = function isNaN(value) {
35149
- return value !== value;
35150
- };
35151
-
35152
- define(numberIsNaN, {
35153
- shim: function shimNumberIsNaN() {
35154
- if (!Number.isNaN) {
35155
- define(Number, { isNaN: numberIsNaN });
35156
- }
35157
- return Number.isNaN || numberIsNaN;
35158
- }
35159
- });
35160
-
35161
- module.exports = numberIsNaN;
35162
-
35163
- },{"403":403}],403:[function(_dereq_,module,exports){
35164
- 'use strict';
35165
-
35166
- var keys = _dereq_(405);
35167
- var foreach = _dereq_(404);
35168
- var hasSymbols = typeof Symbol === 'function' && typeof Symbol() === 'symbol';
35169
-
35170
- var toStr = Object.prototype.toString;
35171
-
35172
- var isFunction = function (fn) {
35173
- return typeof fn === 'function' && toStr.call(fn) === '[object Function]';
35174
- };
35175
-
35176
- var arePropertyDescriptorsSupported = function () {
35177
- var obj = {};
35178
- try {
35179
- Object.defineProperty(obj, 'x', { value: obj, enumerable: false });
35180
- /* eslint-disable no-unused-vars */
35181
- for (var _ in obj) { return false; }
35182
- /* eslint-enable no-unused-vars */
35183
- return obj.x === obj;
35184
- } catch (e) { /* this is IE 8. */
35185
- return false;
35186
- }
35187
- };
35188
- var supportsDescriptors = Object.defineProperty && arePropertyDescriptorsSupported();
35189
-
35190
- var defineProperty = function (object, name, value, predicate) {
35191
- if (name in object && (!isFunction(predicate) || !predicate())) {
35192
- return;
35193
- }
35194
- if (supportsDescriptors) {
35195
- Object.defineProperty(object, name, {
35196
- configurable: true,
35197
- enumerable: false,
35198
- writable: true,
35199
- value: value
35200
- });
35201
- } else {
35202
- object[name] = value;
35203
- }
35204
- };
35205
-
35206
- var defineProperties = function (object, map) {
35207
- var predicates = arguments.length > 2 ? arguments[2] : {};
35208
- var props = keys(map);
35209
- if (hasSymbols) {
35210
- props = props.concat(Object.getOwnPropertySymbols(map));
35211
- }
35212
- foreach(props, function (name) {
35213
- defineProperty(object, name, map[name], predicates[name]);
35214
- });
35215
- };
35216
-
35217
- defineProperties.supportsDescriptors = !!supportsDescriptors;
35218
-
35219
- module.exports = defineProperties;
35220
-
35221
- },{"404":404,"405":405}],404:[function(_dereq_,module,exports){
35222
-
35223
- var hasOwn = Object.prototype.hasOwnProperty;
35224
- var toString = Object.prototype.toString;
35225
-
35226
- module.exports = function forEach (obj, fn, ctx) {
35227
- if (toString.call(fn) !== '[object Function]') {
35228
- throw new TypeError('iterator must be a function');
35229
- }
35230
- var l = obj.length;
35231
- if (l === +l) {
35232
- for (var i = 0; i < l; i++) {
35233
- fn.call(ctx, obj[i], i, obj);
35234
- }
35235
- } else {
35236
- for (var k in obj) {
35237
- if (hasOwn.call(obj, k)) {
35238
- fn.call(ctx, obj[k], k, obj);
35239
- }
35240
- }
35241
- }
35242
- };
35243
-
35244
-
35245
- },{}],405:[function(_dereq_,module,exports){
35246
- 'use strict';
35247
-
35248
- // modified from https://github.com/es-shims/es5-shim
35249
- var has = Object.prototype.hasOwnProperty;
35250
- var toStr = Object.prototype.toString;
35251
- var slice = Array.prototype.slice;
35252
- var isArgs = _dereq_(406);
35253
- var hasDontEnumBug = !({ 'toString': null }).propertyIsEnumerable('toString');
35254
- var hasProtoEnumBug = function () {}.propertyIsEnumerable('prototype');
35255
- var dontEnums = [
35256
- 'toString',
35257
- 'toLocaleString',
35258
- 'valueOf',
35259
- 'hasOwnProperty',
35260
- 'isPrototypeOf',
35261
- 'propertyIsEnumerable',
35262
- 'constructor'
35263
- ];
35264
- var equalsConstructorPrototype = function (o) {
35265
- var ctor = o.constructor;
35266
- return ctor && ctor.prototype === o;
35267
- };
35268
- var blacklistedKeys = {
35269
- $window: true,
35270
- $console: true,
35271
- $parent: true,
35272
- $self: true,
35273
- $frames: true
35274
- };
35275
- var hasAutomationEqualityBug = (function () {
35276
- /* global window */
35277
- if (typeof window === 'undefined') { return false; }
35278
- for (var k in window) {
35279
- if (!blacklistedKeys['$' + k] && has.call(window, k) && window[k] !== null && typeof window[k] === 'object') {
35280
- try {
35281
- equalsConstructorPrototype(window[k]);
35282
- } catch (e) {
35283
- return true;
35284
- }
35285
- }
35286
- }
35287
- return false;
35288
- }());
35289
-
35290
- var keysShim = function keys(object) {
35291
- var isObject = object !== null && typeof object === 'object';
35292
- var isFunction = toStr.call(object) === '[object Function]';
35293
- var isArguments = isArgs(object);
35294
- var isString = isObject && toStr.call(object) === '[object String]';
35295
- var theKeys = [];
35296
-
35297
- if (!isObject && !isFunction && !isArguments) {
35298
- throw new TypeError('Object.keys called on a non-object');
35299
- }
35300
-
35301
- var skipProto = hasProtoEnumBug && isFunction;
35302
- if (isString && object.length > 0 && !has.call(object, 0)) {
35303
- for (var i = 0; i < object.length; ++i) {
35304
- theKeys.push(String(i));
35305
- }
35306
- }
35307
-
35308
- if (isArguments && object.length > 0) {
35309
- for (var j = 0; j < object.length; ++j) {
35310
- theKeys.push(String(j));
35311
- }
35312
- } else {
35313
- for (var name in object) {
35314
- if (!(skipProto && name === 'prototype') && has.call(object, name)) {
35315
- theKeys.push(String(name));
35316
- }
35317
- }
35318
- }
35319
-
35320
- if (hasDontEnumBug) {
35321
- var skipConstructor = hasAutomationEqualityBug || equalsConstructorPrototype(object);
35322
-
35323
- for (var k = 0; k < dontEnums.length; ++k) {
35324
- if (!(skipConstructor && dontEnums[k] === 'constructor') && has.call(object, dontEnums[k])) {
35325
- theKeys.push(dontEnums[k]);
35326
- }
35327
- }
35328
- }
35329
- return theKeys;
35330
- };
35331
-
35332
- keysShim.shim = function shimObjectKeys() {
35333
- if (!Object.keys) {
35334
- Object.keys = keysShim;
35335
- } else {
35336
- var keysWorksWithArguments = (function () {
35337
- // Safari 5.0 bug
35338
- return (Object.keys(arguments) || '').length === 2;
35339
- }(1, 2));
35340
- if (!keysWorksWithArguments) {
35341
- var originalKeys = Object.keys;
35342
- Object.keys = function keys(object) {
35343
- if (isArgs(object)) {
35344
- return originalKeys(slice.call(object));
35345
- } else {
35346
- return originalKeys(object);
35347
- }
35348
- };
35349
- }
35350
- }
35351
- return Object.keys || keysShim;
35352
- };
35353
-
35354
- module.exports = keysShim;
35355
-
35356
- },{"406":406}],406:[function(_dereq_,module,exports){
35357
- 'use strict';
35358
-
35359
- var toStr = Object.prototype.toString;
35360
-
35361
- module.exports = function isArguments(value) {
35362
- var str = toStr.call(value);
35363
- var isArgs = str === '[object Arguments]';
35364
- if (!isArgs) {
35365
- isArgs = str !== '[object Array]' &&
35366
- value !== null &&
35367
- typeof value === 'object' &&
35368
- typeof value.length === 'number' &&
35369
- value.length >= 0 &&
35370
- toStr.call(value.callee) === '[object Function]';
35371
- }
35372
- return isArgs;
35373
- };
35374
-
35375
35314
  },{}],407:[function(_dereq_,module,exports){
35376
35315
  // Copyright 2014, 2015 Simon Lydell
35377
35316
  // X11 (“MIT”) Licensed. (See LICENSE.)
@@ -36240,7 +36179,7 @@ var baseFlatten = _dereq_(441),
36240
36179
 
36241
36180
  /**
36242
36181
  * Flattens a nested array. If `isDeep` is `true` the array is recursively
36243
- * flattened, otherwise it is only flattened a single level.
36182
+ * flattened, otherwise it's only flattened a single level.
36244
36183
  *
36245
36184
  * @static
36246
36185
  * @memberOf _
@@ -36354,7 +36293,7 @@ var baseCallback = _dereq_(435),
36354
36293
  * [`SameValueZero`](http://ecma-international.org/ecma-262/6.0/#sec-samevaluezero)
36355
36294
  * for equality comparisons, in which only the first occurence of each element
36356
36295
  * is kept. Providing `true` for `isSorted` performs a faster search algorithm
36357
- * for sorted arrays. If an iteratee function is provided it is invoked for
36296
+ * for sorted arrays. If an iteratee function is provided it's invoked for
36358
36297
  * each element in the array to generate the criterion by which uniqueness
36359
36298
  * is computed. The `iteratee` is bound to `thisArg` and invoked with three
36360
36299
  * arguments: (value, index, array).
@@ -36474,9 +36413,9 @@ var baseIndexOf = _dereq_(448),
36474
36413
  var nativeMax = Math.max;
36475
36414
 
36476
36415
  /**
36477
- * Checks if `value` is in `collection` using
36416
+ * Checks if `target` is in `collection` using
36478
36417
  * [`SameValueZero`](http://ecma-international.org/ecma-262/6.0/#sec-samevaluezero)
36479
- * for equality comparisons. If `fromIndex` is negative, it is used as the offset
36418
+ * for equality comparisons. If `fromIndex` is negative, it's used as the offset
36480
36419
  * from the end of `collection`.
36481
36420
  *
36482
36421
  * @static
@@ -36774,7 +36713,7 @@ var nativeMax = Math.max;
36774
36713
  * Creates a function that invokes `func` with the `this` binding of the
36775
36714
  * created function and arguments from `start` and beyond provided as an array.
36776
36715
  *
36777
- * **Note:** This method is based on the [rest parameter](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Functions/rest_parameters).
36716
+ * **Note:** This method is based on the [rest parameter](https://developer.mozilla.org/Web/JavaScript/Reference/Functions/rest_parameters).
36778
36717
  *
36779
36718
  * @static
36780
36719
  * @memberOf _
@@ -38120,7 +38059,7 @@ var LARGE_ARRAY_SIZE = 200;
38120
38059
  * @private
38121
38060
  * @param {Array} array The array to inspect.
38122
38061
  * @param {Function} [iteratee] The function invoked per iteration.
38123
- * @returns {Array} Returns the new duplicate-value-free array.
38062
+ * @returns {Array} Returns the new duplicate free array.
38124
38063
  */
38125
38064
  function baseUniq(array, iteratee) {
38126
38065
  var index = -1,
@@ -39130,7 +39069,7 @@ module.exports = shimKeys;
39130
39069
  * @private
39131
39070
  * @param {Array} array The array to inspect.
39132
39071
  * @param {Function} [iteratee] The function invoked per iteration.
39133
- * @returns {Array} Returns the new duplicate-value-free array.
39072
+ * @returns {Array} Returns the new duplicate free array.
39134
39073
  */
39135
39074
  function sortedUniq(array, iteratee) {
39136
39075
  var seen,
@@ -39206,10 +39145,10 @@ var baseClone = _dereq_(436),
39206
39145
 
39207
39146
  /**
39208
39147
  * Creates a clone of `value`. If `isDeep` is `true` nested objects are cloned,
39209
- * otherwise they are assigned by reference. If `customizer` is provided it is
39148
+ * otherwise they are assigned by reference. If `customizer` is provided it's
39210
39149
  * invoked to produce the cloned values. If `customizer` returns `undefined`
39211
39150
  * cloning is handled by the method instead. The `customizer` is bound to
39212
- * `thisArg` and invoked with two argument; (value [, index|key, object]).
39151
+ * `thisArg` and invoked with up to three argument; (value [, index|key, object]).
39213
39152
  *
39214
39153
  * **Note:** This method is loosely based on the
39215
39154
  * [structured clone algorithm](http://www.w3.org/TR/html5/infrastructure.html#internal-structured-cloning-algorithm).
@@ -39265,7 +39204,7 @@ function clone(value, isDeep, customizer, thisArg) {
39265
39204
  isDeep = false;
39266
39205
  }
39267
39206
  return typeof customizer == 'function'
39268
- ? baseClone(value, isDeep, bindCallback(customizer, thisArg, 1))
39207
+ ? baseClone(value, isDeep, bindCallback(customizer, thisArg, 3))
39269
39208
  : baseClone(value, isDeep);
39270
39209
  }
39271
39210
 
@@ -39276,10 +39215,10 @@ var baseClone = _dereq_(436),
39276
39215
  bindCallback = _dereq_(466);
39277
39216
 
39278
39217
  /**
39279
- * Creates a deep clone of `value`. If `customizer` is provided it is invoked
39218
+ * Creates a deep clone of `value`. If `customizer` is provided it's invoked
39280
39219
  * to produce the cloned values. If `customizer` returns `undefined` cloning
39281
39220
  * is handled by the method instead. The `customizer` is bound to `thisArg`
39282
- * and invoked with two argument; (value [, index|key, object]).
39221
+ * and invoked with up to three argument; (value [, index|key, object]).
39283
39222
  *
39284
39223
  * **Note:** This method is loosely based on the
39285
39224
  * [structured clone algorithm](http://www.w3.org/TR/html5/infrastructure.html#internal-structured-cloning-algorithm).
@@ -39322,7 +39261,7 @@ var baseClone = _dereq_(436),
39322
39261
  */
39323
39262
  function cloneDeep(value, customizer, thisArg) {
39324
39263
  return typeof customizer == 'function'
39325
- ? baseClone(value, true, bindCallback(customizer, thisArg, 1))
39264
+ ? baseClone(value, true, bindCallback(customizer, thisArg, 3))
39326
39265
  : baseClone(value, true);
39327
39266
  }
39328
39267
 
@@ -39453,7 +39392,7 @@ var isArguments = _dereq_(502),
39453
39392
  keys = _dereq_(519);
39454
39393
 
39455
39394
  /**
39456
- * Checks if `value` is empty. A value is considered empty unless it is an
39395
+ * Checks if `value` is empty. A value is considered empty unless it's an
39457
39396
  * `arguments` object, array, string, or jQuery-like collection with a length
39458
39397
  * greater than `0` or an object with own enumerable properties.
39459
39398
  *
@@ -39526,7 +39465,7 @@ var objToString = objectProto.toString;
39526
39465
  function isFunction(value) {
39527
39466
  // The use of `Object#toString` avoids issues with the `typeof` operator
39528
39467
  // in older versions of Chrome and Safari which return 'function' for regexes
39529
- // and Safari 8 equivalents which return 'object' for typed array constructors.
39468
+ // and Safari 8 which returns 'object' for typed array constructors.
39530
39469
  return isObject(value) && objToString.call(value) == funcTag;
39531
39470
  }
39532
39471
 
@@ -39919,7 +39858,7 @@ var assignWith = _dereq_(433),
39919
39858
  /**
39920
39859
  * Assigns own enumerable properties of source object(s) to the destination
39921
39860
  * object. Subsequent sources overwrite property assignments of previous sources.
39922
- * If `customizer` is provided it is invoked to produce the assigned values.
39861
+ * If `customizer` is provided it's invoked to produce the assigned values.
39923
39862
  * The `customizer` is bound to `thisArg` and invoked with five arguments:
39924
39863
  * (objectValue, sourceValue, key, object, source).
39925
39864
  *
@@ -40166,7 +40105,7 @@ var baseMerge = _dereq_(455),
40166
40105
  * Recursively merges own enumerable properties of the source object(s), that
40167
40106
  * don't resolve to `undefined` into the destination object. Subsequent sources
40168
40107
  * overwrite property assignments of previous sources. If `customizer` is
40169
- * provided it is invoked to produce the merged values of the destination and
40108
+ * provided it's invoked to produce the merged values of the destination and
40170
40109
  * source properties. If `customizer` returns `undefined` merging is handled
40171
40110
  * by the method instead. The `customizer` is bound to `thisArg` and invoked
40172
40111
  * with five arguments: (objectValue, sourceValue, key, object, source).
@@ -40686,6 +40625,7 @@ function parse (pattern, isSub) {
40686
40625
  var escaping = false
40687
40626
  // ? => one single character
40688
40627
  var patternListStack = []
40628
+ var negativeLists = []
40689
40629
  var plType
40690
40630
  var stateChar
40691
40631
  var inClass = false
@@ -40786,9 +40726,13 @@ function parse (pattern, isSub) {
40786
40726
  }
40787
40727
 
40788
40728
  plType = stateChar
40789
- patternListStack.push({ type: plType, start: i - 1, reStart: re.length })
40729
+ patternListStack.push({
40730
+ type: plType,
40731
+ start: i - 1,
40732
+ reStart: re.length
40733
+ })
40790
40734
  // negation is (?:(?!js)[^/]*)
40791
- re += stateChar === '!' ? '(?:(?!' : '(?:'
40735
+ re += stateChar === '!' ? '(?:(?!(?:' : '(?:'
40792
40736
  this.debug('plType %j %j', stateChar, re)
40793
40737
  stateChar = false
40794
40738
  continue
@@ -40802,12 +40746,15 @@ function parse (pattern, isSub) {
40802
40746
  clearStateChar()
40803
40747
  hasMagic = true
40804
40748
  re += ')'
40805
- plType = patternListStack.pop().type
40749
+ var pl = patternListStack.pop()
40750
+ plType = pl.type
40806
40751
  // negation is (?:(?!js)[^/]*)
40807
40752
  // The others are (?:<pattern>)<type>
40808
40753
  switch (plType) {
40809
40754
  case '!':
40810
- re += '[^/]*?)'
40755
+ negativeLists.push(pl)
40756
+ re += ')[^/]*?)'
40757
+ pl.reEnd = re.length
40811
40758
  break
40812
40759
  case '?':
40813
40760
  case '+':
@@ -40921,7 +40868,7 @@ function parse (pattern, isSub) {
40921
40868
  // and escape any | chars that were passed through as-is for the regexp.
40922
40869
  // Go through and escape them, taking care not to double-escape any
40923
40870
  // | chars that were already escaped.
40924
- for (var pl = patternListStack.pop(); pl; pl = patternListStack.pop()) {
40871
+ for (pl = patternListStack.pop(); pl; pl = patternListStack.pop()) {
40925
40872
  var tail = re.slice(pl.reStart + 3)
40926
40873
  // maybe some even number of \, then maybe 1 \, followed by a |
40927
40874
  tail = tail.replace(/((?:\\{2})*)(\\?)\|/g, function (_, $1, $2) {
@@ -40964,12 +40911,49 @@ function parse (pattern, isSub) {
40964
40911
  case '(': addPatternStart = true
40965
40912
  }
40966
40913
 
40914
+ // Hack to work around lack of negative lookbehind in JS
40915
+ // A pattern like: *.!(x).!(y|z) needs to ensure that a name
40916
+ // like 'a.xyz.yz' doesn't match. So, the first negative
40917
+ // lookahead, has to look ALL the way ahead, to the end of
40918
+ // the pattern.
40919
+ for (var n = negativeLists.length - 1; n > -1; n--) {
40920
+ var nl = negativeLists[n]
40921
+
40922
+ var nlBefore = re.slice(0, nl.reStart)
40923
+ var nlFirst = re.slice(nl.reStart, nl.reEnd - 8)
40924
+ var nlLast = re.slice(nl.reEnd - 8, nl.reEnd)
40925
+ var nlAfter = re.slice(nl.reEnd)
40926
+
40927
+ nlLast += nlAfter
40928
+
40929
+ // Handle nested stuff like *(*.js|!(*.json)), where open parens
40930
+ // mean that we should *not* include the ) in the bit that is considered
40931
+ // "after" the negated section.
40932
+ var openParensBefore = nlBefore.split('(').length - 1
40933
+ var cleanAfter = nlAfter
40934
+ for (i = 0; i < openParensBefore; i++) {
40935
+ cleanAfter = cleanAfter.replace(/\)[+*?]?/, '')
40936
+ }
40937
+ nlAfter = cleanAfter
40938
+
40939
+ var dollar = ''
40940
+ if (nlAfter === '' && isSub !== SUBPARSE) {
40941
+ dollar = '$'
40942
+ }
40943
+ var newRe = nlBefore + nlFirst + nlAfter + dollar + nlLast
40944
+ re = newRe
40945
+ }
40946
+
40967
40947
  // if the re is not "" at this point, then we need to make sure
40968
40948
  // it doesn't match against an empty path part.
40969
40949
  // Otherwise a/* will match a/, which it should not.
40970
- if (re !== '' && hasMagic) re = '(?=.)' + re
40950
+ if (re !== '' && hasMagic) {
40951
+ re = '(?=.)' + re
40952
+ }
40971
40953
 
40972
- if (addPatternStart) re = patternStart + re
40954
+ if (addPatternStart) {
40955
+ re = patternStart + re
40956
+ }
40973
40957
 
40974
40958
  // parsing just a piece of a larger pattern.
40975
40959
  if (isSub === SUBPARSE) {
@@ -58676,10 +58660,10 @@ module.exports = function (str, n) {
58676
58660
  };
58677
58661
 
58678
58662
  },{"591":591}],591:[function(_dereq_,module,exports){
58679
- arguments[4][400][0].apply(exports,arguments)
58680
- },{"400":400,"592":592}],592:[function(_dereq_,module,exports){
58681
- arguments[4][401][0].apply(exports,arguments)
58682
- },{"401":401}],593:[function(_dereq_,module,exports){
58663
+ arguments[4][405][0].apply(exports,arguments)
58664
+ },{"405":405,"592":592}],592:[function(_dereq_,module,exports){
58665
+ arguments[4][406][0].apply(exports,arguments)
58666
+ },{"406":406}],593:[function(_dereq_,module,exports){
58683
58667
  'use strict';
58684
58668
  module.exports = /^#!.*/;
58685
58669
 
@@ -61658,7 +61642,7 @@ resolve.relative = function (loc) {
61658
61642
  },{"1":1,"10":10}],609:[function(_dereq_,module,exports){
61659
61643
  module.exports={
61660
61644
  "name": "babel-core",
61661
- "version": "5.8.29",
61645
+ "version": "5.8.30",
61662
61646
  "description": "A compiler for writing next generation JavaScript",
61663
61647
  "author": "Sebastian McKenzie <sebmck@gmail.com>",
61664
61648
  "homepage": "https://babeljs.io/",
@@ -62632,7 +62616,7 @@ pp.parseObjPropValue = function (prop, startPos, startLoc, isGenerator, isAsync,
62632
62616
  prop.kind = "init";
62633
62617
  prop.method = true;
62634
62618
  prop.value = this.parseMethod(isGenerator, isAsync);
62635
- } else if (!prop.computed && prop.key.type === "Identifier" && (prop.key.name === "get" || prop.key.name === "set") && (!this.match(_tokenizerTypes.types.comma) && !this.match(_tokenizerTypes.types.braceR))) {
62619
+ } else if (!prop.computed && prop.key.type === "Identifier" && (prop.key.name === "get" || prop.key.name === "set") && !this.match(_tokenizerTypes.types.comma) && !this.match(_tokenizerTypes.types.braceR)) {
62636
62620
  if (isGenerator || isAsync || isPattern) this.unexpected();
62637
62621
  prop.kind = prop.key.name;
62638
62622
  this.parsePropertyName(prop);
@@ -63863,7 +63847,7 @@ pp.parseClass = function (node, isStatement) {
63863
63847
  };
63864
63848
 
63865
63849
  pp.isClassProperty = function () {
63866
- return this.match(_tokenizerTypes.types.eq) || (this.match(_tokenizerTypes.types.semi) || this.canInsertSemicolon());
63850
+ return this.match(_tokenizerTypes.types.eq) || this.match(_tokenizerTypes.types.semi) || this.canInsertSemicolon();
63867
63851
  };
63868
63852
 
63869
63853
  pp.parseClassProperty = function (node) {