babel-source 5.6.7 → 5.6.11

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -163,10 +163,8 @@
163
163
  }
164
164
  };
165
165
 
166
- babelHelpers.slicedToArray = function (arr, i) {
167
- if (Array.isArray(arr)) {
168
- return arr;
169
- } else if (Symbol.iterator in Object(arr)) {
166
+ babelHelpers.slicedToArray = (function () {
167
+ function sliceIterator(arr, i) {
170
168
  var _arr = [];
171
169
  var _n = true;
172
170
  var _d = false;
@@ -190,10 +188,18 @@
190
188
  }
191
189
 
192
190
  return _arr;
193
- } else {
194
- throw new TypeError("Invalid attempt to destructure non-iterable instance");
195
191
  }
196
- };
192
+
193
+ return function (arr, i) {
194
+ if (Array.isArray(arr)) {
195
+ return arr;
196
+ } else if (Symbol.iterator in Object(arr)) {
197
+ return sliceIterator(arr, i);
198
+ } else {
199
+ throw new TypeError("Invalid attempt to destructure non-iterable instance");
200
+ }
201
+ };
202
+ })();
197
203
 
198
204
  babelHelpers.slicedToArrayLoose = function (arr, i) {
199
205
  if (Array.isArray(arr)) {
@@ -230,12 +236,18 @@
230
236
  babelHelpers.bind = Function.prototype.bind;
231
237
 
232
238
  babelHelpers.defineProperty = function (obj, key, value) {
233
- return Object.defineProperty(obj, key, {
234
- value: value,
235
- enumerable: true,
236
- configurable: true,
237
- writable: true
238
- });
239
+ if (key in obj) {
240
+ Object.defineProperty(obj, key, {
241
+ value: value,
242
+ enumerable: true,
243
+ configurable: true,
244
+ writable: true
245
+ });
246
+ } else {
247
+ obj[key] = value;
248
+ }
249
+
250
+ return obj;
239
251
  };
240
252
 
241
253
  babelHelpers.asyncToGenerator = function (fn) {
@@ -2,16 +2,274 @@
2
2
  (function (global){
3
3
  "use strict";
4
4
 
5
+ var _toolsProtectJs2 = require("./tools/protect.js");
6
+
7
+ var _toolsProtectJs3 = _interopRequireDefault(_toolsProtectJs2);
8
+
5
9
  require("core-js/shim");
6
10
 
7
11
  require("regenerator/runtime");
8
12
 
13
+ _toolsProtectJs3["default"](module);
14
+
15
+ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
16
+
9
17
  if (global._babelPolyfill) {
10
18
  throw new Error("only one instance of babel/polyfill is allowed");
11
19
  }
12
20
  global._babelPolyfill = true;
13
21
  }).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
14
- },{"core-js/shim":91,"regenerator/runtime":92}],2:[function(require,module,exports){
22
+ },{"./tools/protect.js":2,"core-js/shim":93,"regenerator/runtime":94}],2:[function(require,module,exports){
23
+ (function (__dirname){
24
+ "use strict";
25
+
26
+ exports.__esModule = true;
27
+
28
+ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
29
+
30
+ var _path = require("path");
31
+
32
+ var _path2 = _interopRequireDefault(_path);
33
+
34
+ var root = _path2["default"].resolve(__dirname, "../../../");
35
+
36
+ exports["default"] = function (module) {
37
+ if (module.parent && module.parent.filename.indexOf(root) !== 0) {
38
+ throw new Error("Don't hotlink internal Babel files.");
39
+ }
40
+ };
41
+
42
+ module.exports = exports["default"];
43
+ }).call(this,"/lib/babel/tools")
44
+ },{"path":3}],3:[function(require,module,exports){
45
+ (function (process){
46
+ // Copyright Joyent, Inc. and other Node contributors.
47
+ //
48
+ // Permission is hereby granted, free of charge, to any person obtaining a
49
+ // copy of this software and associated documentation files (the
50
+ // "Software"), to deal in the Software without restriction, including
51
+ // without limitation the rights to use, copy, modify, merge, publish,
52
+ // distribute, sublicense, and/or sell copies of the Software, and to permit
53
+ // persons to whom the Software is furnished to do so, subject to the
54
+ // following conditions:
55
+ //
56
+ // The above copyright notice and this permission notice shall be included
57
+ // in all copies or substantial portions of the Software.
58
+ //
59
+ // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
60
+ // OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
61
+ // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN
62
+ // NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
63
+ // DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
64
+ // OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
65
+ // USE OR OTHER DEALINGS IN THE SOFTWARE.
66
+
67
+ // resolves . and .. elements in a path array with directory names there
68
+ // must be no slashes, empty elements, or device names (c:\) in the array
69
+ // (so also no leading and trailing slashes - it does not distinguish
70
+ // relative and absolute paths)
71
+ function normalizeArray(parts, allowAboveRoot) {
72
+ // if the path tries to go above the root, `up` ends up > 0
73
+ var up = 0;
74
+ for (var i = parts.length - 1; i >= 0; i--) {
75
+ var last = parts[i];
76
+ if (last === '.') {
77
+ parts.splice(i, 1);
78
+ } else if (last === '..') {
79
+ parts.splice(i, 1);
80
+ up++;
81
+ } else if (up) {
82
+ parts.splice(i, 1);
83
+ up--;
84
+ }
85
+ }
86
+
87
+ // if the path is allowed to go above the root, restore leading ..s
88
+ if (allowAboveRoot) {
89
+ for (; up--; up) {
90
+ parts.unshift('..');
91
+ }
92
+ }
93
+
94
+ return parts;
95
+ }
96
+
97
+ // Split a filename into [root, dir, basename, ext], unix version
98
+ // 'root' is just a slash, or nothing.
99
+ var splitPathRe =
100
+ /^(\/?|)([\s\S]*?)((?:\.{1,2}|[^\/]+?|)(\.[^.\/]*|))(?:[\/]*)$/;
101
+ var splitPath = function(filename) {
102
+ return splitPathRe.exec(filename).slice(1);
103
+ };
104
+
105
+ // path.resolve([from ...], to)
106
+ // posix version
107
+ exports.resolve = function() {
108
+ var resolvedPath = '',
109
+ resolvedAbsolute = false;
110
+
111
+ for (var i = arguments.length - 1; i >= -1 && !resolvedAbsolute; i--) {
112
+ var path = (i >= 0) ? arguments[i] : process.cwd();
113
+
114
+ // Skip empty and invalid entries
115
+ if (typeof path !== 'string') {
116
+ throw new TypeError('Arguments to path.resolve must be strings');
117
+ } else if (!path) {
118
+ continue;
119
+ }
120
+
121
+ resolvedPath = path + '/' + resolvedPath;
122
+ resolvedAbsolute = path.charAt(0) === '/';
123
+ }
124
+
125
+ // At this point the path should be resolved to a full absolute path, but
126
+ // handle relative paths to be safe (might happen when process.cwd() fails)
127
+
128
+ // Normalize the path
129
+ resolvedPath = normalizeArray(filter(resolvedPath.split('/'), function(p) {
130
+ return !!p;
131
+ }), !resolvedAbsolute).join('/');
132
+
133
+ return ((resolvedAbsolute ? '/' : '') + resolvedPath) || '.';
134
+ };
135
+
136
+ // path.normalize(path)
137
+ // posix version
138
+ exports.normalize = function(path) {
139
+ var isAbsolute = exports.isAbsolute(path),
140
+ trailingSlash = substr(path, -1) === '/';
141
+
142
+ // Normalize the path
143
+ path = normalizeArray(filter(path.split('/'), function(p) {
144
+ return !!p;
145
+ }), !isAbsolute).join('/');
146
+
147
+ if (!path && !isAbsolute) {
148
+ path = '.';
149
+ }
150
+ if (path && trailingSlash) {
151
+ path += '/';
152
+ }
153
+
154
+ return (isAbsolute ? '/' : '') + path;
155
+ };
156
+
157
+ // posix version
158
+ exports.isAbsolute = function(path) {
159
+ return path.charAt(0) === '/';
160
+ };
161
+
162
+ // posix version
163
+ exports.join = function() {
164
+ var paths = Array.prototype.slice.call(arguments, 0);
165
+ return exports.normalize(filter(paths, function(p, index) {
166
+ if (typeof p !== 'string') {
167
+ throw new TypeError('Arguments to path.join must be strings');
168
+ }
169
+ return p;
170
+ }).join('/'));
171
+ };
172
+
173
+
174
+ // path.relative(from, to)
175
+ // posix version
176
+ exports.relative = function(from, to) {
177
+ from = exports.resolve(from).substr(1);
178
+ to = exports.resolve(to).substr(1);
179
+
180
+ function trim(arr) {
181
+ var start = 0;
182
+ for (; start < arr.length; start++) {
183
+ if (arr[start] !== '') break;
184
+ }
185
+
186
+ var end = arr.length - 1;
187
+ for (; end >= 0; end--) {
188
+ if (arr[end] !== '') break;
189
+ }
190
+
191
+ if (start > end) return [];
192
+ return arr.slice(start, end - start + 1);
193
+ }
194
+
195
+ var fromParts = trim(from.split('/'));
196
+ var toParts = trim(to.split('/'));
197
+
198
+ var length = Math.min(fromParts.length, toParts.length);
199
+ var samePartsLength = length;
200
+ for (var i = 0; i < length; i++) {
201
+ if (fromParts[i] !== toParts[i]) {
202
+ samePartsLength = i;
203
+ break;
204
+ }
205
+ }
206
+
207
+ var outputParts = [];
208
+ for (var i = samePartsLength; i < fromParts.length; i++) {
209
+ outputParts.push('..');
210
+ }
211
+
212
+ outputParts = outputParts.concat(toParts.slice(samePartsLength));
213
+
214
+ return outputParts.join('/');
215
+ };
216
+
217
+ exports.sep = '/';
218
+ exports.delimiter = ':';
219
+
220
+ exports.dirname = function(path) {
221
+ var result = splitPath(path),
222
+ root = result[0],
223
+ dir = result[1];
224
+
225
+ if (!root && !dir) {
226
+ // No dirname whatsoever
227
+ return '.';
228
+ }
229
+
230
+ if (dir) {
231
+ // It has a dirname, strip trailing slash
232
+ dir = dir.substr(0, dir.length - 1);
233
+ }
234
+
235
+ return root + dir;
236
+ };
237
+
238
+
239
+ exports.basename = function(path, ext) {
240
+ var f = splitPath(path)[2];
241
+ // TODO: make this comparison case-insensitive on windows?
242
+ if (ext && f.substr(-1 * ext.length) === ext) {
243
+ f = f.substr(0, f.length - ext.length);
244
+ }
245
+ return f;
246
+ };
247
+
248
+
249
+ exports.extname = function(path) {
250
+ return splitPath(path)[3];
251
+ };
252
+
253
+ function filter (xs, f) {
254
+ if (xs.filter) return xs.filter(f);
255
+ var res = [];
256
+ for (var i = 0; i < xs.length; i++) {
257
+ if (f(xs[i], i, xs)) res.push(xs[i]);
258
+ }
259
+ return res;
260
+ }
261
+
262
+ // String.prototype.substr - negative index don't work in IE8
263
+ var substr = 'ab'.substr(-1) === 'b'
264
+ ? function (str, start, len) { return str.substr(start, len) }
265
+ : function (str, start, len) {
266
+ if (start < 0) start = str.length + start;
267
+ return str.substr(start, len);
268
+ }
269
+ ;
270
+
271
+ }).call(this,require('_process'))
272
+ },{"_process":4}],4:[function(require,module,exports){
15
273
  // shim for using process in browser
16
274
 
17
275
  var process = module.exports = {};
@@ -71,7 +329,7 @@ process.chdir = function (dir) {
71
329
  };
72
330
  process.umask = function() { return 0; };
73
331
 
74
- },{}],3:[function(require,module,exports){
332
+ },{}],5:[function(require,module,exports){
75
333
  // false -> Array#indexOf
76
334
  // true -> Array#includes
77
335
  var $ = require('./$');
@@ -89,7 +347,7 @@ module.exports = function(IS_INCLUDES){
89
347
  } return !IS_INCLUDES && -1;
90
348
  };
91
349
  };
92
- },{"./$":24}],4:[function(require,module,exports){
350
+ },{"./$":26}],6:[function(require,module,exports){
93
351
  // 0 -> Array#forEach
94
352
  // 1 -> Array#map
95
353
  // 2 -> Array#filter
@@ -130,7 +388,7 @@ module.exports = function(TYPE){
130
388
  return IS_FIND_INDEX ? -1 : IS_SOME || IS_EVERY ? IS_EVERY : result;
131
389
  };
132
390
  };
133
- },{"./$":24,"./$.ctx":12}],5:[function(require,module,exports){
391
+ },{"./$":26,"./$.ctx":14}],7:[function(require,module,exports){
134
392
  var $ = require('./$');
135
393
  function assert(condition, msg1, msg2){
136
394
  if(!condition)throw TypeError(msg2 ? msg1 + msg2 : msg1);
@@ -149,7 +407,7 @@ assert.inst = function(it, Constructor, name){
149
407
  return it;
150
408
  };
151
409
  module.exports = assert;
152
- },{"./$":24}],6:[function(require,module,exports){
410
+ },{"./$":26}],8:[function(require,module,exports){
153
411
  var $ = require('./$')
154
412
  , enumKeys = require('./$.enum-keys');
155
413
  // 19.1.2.1 Object.assign(target, source, ...)
@@ -169,7 +427,7 @@ module.exports = Object.assign || function assign(target, source){
169
427
  }
170
428
  return T;
171
429
  };
172
- },{"./$":24,"./$.enum-keys":15}],7:[function(require,module,exports){
430
+ },{"./$":26,"./$.enum-keys":17}],9:[function(require,module,exports){
173
431
  var $ = require('./$')
174
432
  , TAG = require('./$.wks')('toStringTag')
175
433
  , toString = {}.toString;
@@ -185,7 +443,7 @@ cof.set = function(it, tag, stat){
185
443
  if(it && !$.has(it = stat ? it : it.prototype, TAG))$.hide(it, TAG, tag);
186
444
  };
187
445
  module.exports = cof;
188
- },{"./$":24,"./$.wks":42}],8:[function(require,module,exports){
446
+ },{"./$":26,"./$.wks":44}],10:[function(require,module,exports){
189
447
  'use strict';
190
448
  var $ = require('./$')
191
449
  , ctx = require('./$.ctx')
@@ -341,7 +599,7 @@ module.exports = {
341
599
  }, IS_MAP ? 'entries' : 'values' , !IS_MAP, true);
342
600
  }
343
601
  };
344
- },{"./$":24,"./$.assert":5,"./$.ctx":12,"./$.for-of":16,"./$.iter":23,"./$.iter-define":21,"./$.mix":26,"./$.uid":40}],9:[function(require,module,exports){
602
+ },{"./$":26,"./$.assert":7,"./$.ctx":14,"./$.for-of":18,"./$.iter":25,"./$.iter-define":23,"./$.mix":28,"./$.uid":42}],11:[function(require,module,exports){
345
603
  // https://github.com/DavidBruant/Map-Set.prototype.toJSON
346
604
  var $def = require('./$.def')
347
605
  , forOf = require('./$.for-of');
@@ -354,7 +612,7 @@ module.exports = function(NAME){
354
612
  }
355
613
  });
356
614
  };
357
- },{"./$.def":13,"./$.for-of":16}],10:[function(require,module,exports){
615
+ },{"./$.def":15,"./$.for-of":18}],12:[function(require,module,exports){
358
616
  'use strict';
359
617
  var $ = require('./$')
360
618
  , safe = require('./$.uid').safe
@@ -438,7 +696,7 @@ module.exports = {
438
696
  WEAK: WEAK,
439
697
  ID: ID
440
698
  };
441
- },{"./$":24,"./$.array-methods":4,"./$.assert":5,"./$.for-of":16,"./$.mix":26,"./$.uid":40}],11:[function(require,module,exports){
699
+ },{"./$":26,"./$.array-methods":6,"./$.assert":7,"./$.for-of":18,"./$.mix":28,"./$.uid":42}],13:[function(require,module,exports){
442
700
  'use strict';
443
701
  var $ = require('./$')
444
702
  , $def = require('./$.def')
@@ -506,7 +764,7 @@ module.exports = function(NAME, wrapper, methods, common, IS_MAP, IS_WEAK){
506
764
 
507
765
  return C;
508
766
  };
509
- },{"./$":24,"./$.assert":5,"./$.cof":7,"./$.def":13,"./$.for-of":16,"./$.iter":23,"./$.iter-detect":22,"./$.mix":26,"./$.redef":29,"./$.species":34}],12:[function(require,module,exports){
767
+ },{"./$":26,"./$.assert":7,"./$.cof":9,"./$.def":15,"./$.for-of":18,"./$.iter":25,"./$.iter-detect":24,"./$.mix":28,"./$.redef":31,"./$.species":36}],14:[function(require,module,exports){
510
768
  // Optional / simple context binding
511
769
  var assertFunction = require('./$.assert').fn;
512
770
  module.exports = function(fn, that, length){
@@ -526,7 +784,7 @@ module.exports = function(fn, that, length){
526
784
  return fn.apply(that, arguments);
527
785
  };
528
786
  };
529
- },{"./$.assert":5}],13:[function(require,module,exports){
787
+ },{"./$.assert":7}],15:[function(require,module,exports){
530
788
  var $ = require('./$')
531
789
  , global = $.g
532
790
  , core = $.core
@@ -569,7 +827,7 @@ function $def(type, name, source){
569
827
  }
570
828
  }
571
829
  module.exports = $def;
572
- },{"./$":24,"./$.redef":29}],14:[function(require,module,exports){
830
+ },{"./$":26,"./$.redef":31}],16:[function(require,module,exports){
573
831
  var $ = require('./$')
574
832
  , document = $.g.document
575
833
  , isObject = $.isObject
@@ -578,7 +836,7 @@ var $ = require('./$')
578
836
  module.exports = function(it){
579
837
  return is ? document.createElement(it) : {};
580
838
  };
581
- },{"./$":24}],15:[function(require,module,exports){
839
+ },{"./$":26}],17:[function(require,module,exports){
582
840
  var $ = require('./$');
583
841
  module.exports = function(it){
584
842
  var keys = $.getKeys(it)
@@ -589,7 +847,7 @@ module.exports = function(it){
589
847
  });
590
848
  return keys;
591
849
  };
592
- },{"./$":24}],16:[function(require,module,exports){
850
+ },{"./$":26}],18:[function(require,module,exports){
593
851
  var ctx = require('./$.ctx')
594
852
  , get = require('./$.iter').get
595
853
  , call = require('./$.iter-call');
@@ -603,13 +861,13 @@ module.exports = function(iterable, entries, fn, that){
603
861
  }
604
862
  }
605
863
  };
606
- },{"./$.ctx":12,"./$.iter":23,"./$.iter-call":20}],17:[function(require,module,exports){
864
+ },{"./$.ctx":14,"./$.iter":25,"./$.iter-call":22}],19:[function(require,module,exports){
607
865
  module.exports = function($){
608
866
  $.FW = true;
609
867
  $.path = $.g;
610
868
  return $;
611
869
  };
612
- },{}],18:[function(require,module,exports){
870
+ },{}],20:[function(require,module,exports){
613
871
  // fallback for IE11 buggy Object.getOwnPropertyNames with iframe and window
614
872
  var $ = require('./$')
615
873
  , toString = {}.toString
@@ -630,7 +888,7 @@ module.exports.get = function getOwnPropertyNames(it){
630
888
  if(windowNames && toString.call(it) == '[object Window]')return getWindowNames(it);
631
889
  return getNames($.toObject(it));
632
890
  };
633
- },{"./$":24}],19:[function(require,module,exports){
891
+ },{"./$":26}],21:[function(require,module,exports){
634
892
  // Fast apply
635
893
  // http://jsperf.lnkit.com/fast-apply/5
636
894
  module.exports = function(fn, args, that){
@@ -650,7 +908,7 @@ module.exports = function(fn, args, that){
650
908
  : fn.call(that, args[0], args[1], args[2], args[3], args[4]);
651
909
  } return fn.apply(that, args);
652
910
  };
653
- },{}],20:[function(require,module,exports){
911
+ },{}],22:[function(require,module,exports){
654
912
  var assertObject = require('./$.assert').obj;
655
913
  function close(iterator){
656
914
  var ret = iterator['return'];
@@ -666,7 +924,7 @@ function call(iterator, fn, value, entries){
666
924
  }
667
925
  call.close = close;
668
926
  module.exports = call;
669
- },{"./$.assert":5}],21:[function(require,module,exports){
927
+ },{"./$.assert":7}],23:[function(require,module,exports){
670
928
  var $def = require('./$.def')
671
929
  , $redef = require('./$.redef')
672
930
  , $ = require('./$')
@@ -717,7 +975,7 @@ module.exports = function(Base, NAME, Constructor, next, DEFAULT, IS_SET, FORCE)
717
975
  } else $def($def.P + $def.F * $iter.BUGGY, NAME, methods);
718
976
  }
719
977
  };
720
- },{"./$":24,"./$.cof":7,"./$.def":13,"./$.iter":23,"./$.redef":29,"./$.wks":42}],22:[function(require,module,exports){
978
+ },{"./$":26,"./$.cof":9,"./$.def":15,"./$.iter":25,"./$.redef":31,"./$.wks":44}],24:[function(require,module,exports){
721
979
  var SYMBOL_ITERATOR = require('./$.wks')('iterator')
722
980
  , SAFE_CLOSING = false;
723
981
  try {
@@ -737,7 +995,7 @@ module.exports = function(exec){
737
995
  } catch(e){ /* empty */ }
738
996
  return safe;
739
997
  };
740
- },{"./$.wks":42}],23:[function(require,module,exports){
998
+ },{"./$.wks":44}],25:[function(require,module,exports){
741
999
  'use strict';
742
1000
  var $ = require('./$')
743
1001
  , cof = require('./$.cof')
@@ -787,7 +1045,7 @@ module.exports = {
787
1045
  cof.set(Constructor, NAME + ' Iterator');
788
1046
  }
789
1047
  };
790
- },{"./$":24,"./$.assert":5,"./$.cof":7,"./$.shared":33,"./$.wks":42}],24:[function(require,module,exports){
1048
+ },{"./$":26,"./$.assert":7,"./$.cof":9,"./$.shared":35,"./$.wks":44}],26:[function(require,module,exports){
791
1049
  'use strict';
792
1050
  var global = typeof self != 'undefined' ? self : Function('return this')()
793
1051
  , core = {}
@@ -884,7 +1142,7 @@ var $ = module.exports = require('./$.fw')({
884
1142
  /* eslint-disable no-undef */
885
1143
  if(typeof __e != 'undefined')__e = core;
886
1144
  if(typeof __g != 'undefined')__g = global;
887
- },{"./$.fw":17}],25:[function(require,module,exports){
1145
+ },{"./$.fw":19}],27:[function(require,module,exports){
888
1146
  var $ = require('./$');
889
1147
  module.exports = function(object, el){
890
1148
  var O = $.toObject(object)
@@ -894,13 +1152,13 @@ module.exports = function(object, el){
894
1152
  , key;
895
1153
  while(length > index)if(O[key = keys[index++]] === el)return key;
896
1154
  };
897
- },{"./$":24}],26:[function(require,module,exports){
1155
+ },{"./$":26}],28:[function(require,module,exports){
898
1156
  var $redef = require('./$.redef');
899
1157
  module.exports = function(target, src){
900
1158
  for(var key in src)$redef(target, key, src[key]);
901
1159
  return target;
902
1160
  };
903
- },{"./$.redef":29}],27:[function(require,module,exports){
1161
+ },{"./$.redef":31}],29:[function(require,module,exports){
904
1162
  var $ = require('./$')
905
1163
  , assertObject = require('./$.assert').obj;
906
1164
  module.exports = function ownKeys(it){
@@ -909,7 +1167,7 @@ module.exports = function ownKeys(it){
909
1167
  , getSymbols = $.getSymbols;
910
1168
  return getSymbols ? keys.concat(getSymbols(it)) : keys;
911
1169
  };
912
- },{"./$":24,"./$.assert":5}],28:[function(require,module,exports){
1170
+ },{"./$":26,"./$.assert":7}],30:[function(require,module,exports){
913
1171
  'use strict';
914
1172
  var $ = require('./$')
915
1173
  , invoke = require('./$.invoke')
@@ -933,7 +1191,7 @@ module.exports = function(/* ...pargs */){
933
1191
  return invoke(fn, args, that);
934
1192
  };
935
1193
  };
936
- },{"./$":24,"./$.assert":5,"./$.invoke":19}],29:[function(require,module,exports){
1194
+ },{"./$":26,"./$.assert":7,"./$.invoke":21}],31:[function(require,module,exports){
937
1195
  var $ = require('./$')
938
1196
  , tpl = String({}.hasOwnProperty)
939
1197
  , SRC = require('./$.uid').safe('src')
@@ -964,7 +1222,7 @@ $.core.inspectSource = function(it){
964
1222
  };
965
1223
 
966
1224
  module.exports = $redef;
967
- },{"./$":24,"./$.uid":40}],30:[function(require,module,exports){
1225
+ },{"./$":26,"./$.uid":42}],32:[function(require,module,exports){
968
1226
  'use strict';
969
1227
  module.exports = function(regExp, replace, isStatic){
970
1228
  var replacer = replace === Object(replace) ? function(part){
@@ -974,11 +1232,11 @@ module.exports = function(regExp, replace, isStatic){
974
1232
  return String(isStatic ? it : this).replace(regExp, replacer);
975
1233
  };
976
1234
  };
977
- },{}],31:[function(require,module,exports){
1235
+ },{}],33:[function(require,module,exports){
978
1236
  module.exports = Object.is || function is(x, y){
979
1237
  return x === y ? x !== 0 || 1 / x === 1 / y : x != x && y != y;
980
1238
  };
981
- },{}],32:[function(require,module,exports){
1239
+ },{}],34:[function(require,module,exports){
982
1240
  // Works with __proto__ only. Old v8 can't work with null proto objects.
983
1241
  /* eslint-disable no-proto */
984
1242
  var $ = require('./$')
@@ -1004,14 +1262,14 @@ module.exports = {
1004
1262
  : undefined),
1005
1263
  check: check
1006
1264
  };
1007
- },{"./$":24,"./$.assert":5,"./$.ctx":12}],33:[function(require,module,exports){
1265
+ },{"./$":26,"./$.assert":7,"./$.ctx":14}],35:[function(require,module,exports){
1008
1266
  var $ = require('./$')
1009
1267
  , SHARED = '__core-js_shared__'
1010
1268
  , store = $.g[SHARED] || ($.g[SHARED] = {});
1011
1269
  module.exports = function(key){
1012
1270
  return store[key] || (store[key] = {});
1013
1271
  };
1014
- },{"./$":24}],34:[function(require,module,exports){
1272
+ },{"./$":26}],36:[function(require,module,exports){
1015
1273
  var $ = require('./$')
1016
1274
  , SPECIES = require('./$.wks')('species');
1017
1275
  module.exports = function(C){
@@ -1020,7 +1278,7 @@ module.exports = function(C){
1020
1278
  get: $.that
1021
1279
  });
1022
1280
  };
1023
- },{"./$":24,"./$.wks":42}],35:[function(require,module,exports){
1281
+ },{"./$":26,"./$.wks":44}],37:[function(require,module,exports){
1024
1282
  // true -> String#at
1025
1283
  // false -> String#codePointAt
1026
1284
  var $ = require('./$');
@@ -1038,7 +1296,7 @@ module.exports = function(TO_STRING){
1038
1296
  : TO_STRING ? s.slice(i, i + 2) : (a - 0xd800 << 10) + (b - 0xdc00) + 0x10000;
1039
1297
  };
1040
1298
  };
1041
- },{"./$":24}],36:[function(require,module,exports){
1299
+ },{"./$":26}],38:[function(require,module,exports){
1042
1300
  // http://wiki.ecmascript.org/doku.php?id=strawman:string_padding
1043
1301
  var $ = require('./$')
1044
1302
  , repeat = require('./$.string-repeat');
@@ -1071,7 +1329,7 @@ module.exports = function(that, minLength, fillChar, left){
1071
1329
  // 11. Return a String made from S, followed by sFillVal.
1072
1330
  return left ? sFillVal.concat(S) : S.concat(sFillVal);
1073
1331
  };
1074
- },{"./$":24,"./$.string-repeat":37}],37:[function(require,module,exports){
1332
+ },{"./$":26,"./$.string-repeat":39}],39:[function(require,module,exports){
1075
1333
  'use strict';
1076
1334
  var $ = require('./$');
1077
1335
 
@@ -1083,7 +1341,7 @@ module.exports = function repeat(count){
1083
1341
  for(;n > 0; (n >>>= 1) && (str += str))if(n & 1)res += str;
1084
1342
  return res;
1085
1343
  };
1086
- },{"./$":24}],38:[function(require,module,exports){
1344
+ },{"./$":26}],40:[function(require,module,exports){
1087
1345
  'use strict';
1088
1346
  var $ = require('./$')
1089
1347
  , ctx = require('./$.ctx')
@@ -1163,7 +1421,7 @@ module.exports = {
1163
1421
  set: setTask,
1164
1422
  clear: clearTask
1165
1423
  };
1166
- },{"./$":24,"./$.cof":7,"./$.ctx":12,"./$.dom-create":14,"./$.invoke":19}],39:[function(require,module,exports){
1424
+ },{"./$":26,"./$.cof":9,"./$.ctx":14,"./$.dom-create":16,"./$.invoke":21}],41:[function(require,module,exports){
1167
1425
  module.exports = function(exec){
1168
1426
  try {
1169
1427
  exec();
@@ -1172,28 +1430,28 @@ module.exports = function(exec){
1172
1430
  return true;
1173
1431
  }
1174
1432
  };
1175
- },{}],40:[function(require,module,exports){
1433
+ },{}],42:[function(require,module,exports){
1176
1434
  var sid = 0;
1177
1435
  function uid(key){
1178
1436
  return 'Symbol('.concat(key === undefined ? '' : key, ')_', (++sid + Math.random()).toString(36));
1179
1437
  }
1180
1438
  uid.safe = require('./$').g.Symbol || uid;
1181
1439
  module.exports = uid;
1182
- },{"./$":24}],41:[function(require,module,exports){
1440
+ },{"./$":26}],43:[function(require,module,exports){
1183
1441
  // 22.1.3.31 Array.prototype[@@unscopables]
1184
1442
  var UNSCOPABLES = require('./$.wks')('unscopables');
1185
1443
  if(!(UNSCOPABLES in []))require('./$').hide(Array.prototype, UNSCOPABLES, {});
1186
1444
  module.exports = function(key){
1187
1445
  [][UNSCOPABLES][key] = true;
1188
1446
  };
1189
- },{"./$":24,"./$.wks":42}],42:[function(require,module,exports){
1447
+ },{"./$":26,"./$.wks":44}],44:[function(require,module,exports){
1190
1448
  var global = require('./$').g
1191
1449
  , store = require('./$.shared')('wks');
1192
1450
  module.exports = function(name){
1193
1451
  return store[name] || (store[name] =
1194
1452
  global.Symbol && global.Symbol[name] || require('./$.uid').safe('Symbol.' + name));
1195
1453
  };
1196
- },{"./$":24,"./$.shared":33,"./$.uid":40}],43:[function(require,module,exports){
1454
+ },{"./$":26,"./$.shared":35,"./$.uid":42}],45:[function(require,module,exports){
1197
1455
  var $ = require('./$')
1198
1456
  , cel = require('./$.dom-create')
1199
1457
  , cof = require('./$.cof')
@@ -1514,7 +1772,7 @@ if(classof(function(){ return arguments; }()) == 'Object')cof.classof = function
1514
1772
  var tag = classof(it);
1515
1773
  return tag == 'Object' && isFunction(it.callee) ? 'Arguments' : tag;
1516
1774
  };
1517
- },{"./$":24,"./$.array-includes":3,"./$.array-methods":4,"./$.assert":5,"./$.cof":7,"./$.def":13,"./$.dom-create":14,"./$.invoke":19,"./$.replacer":30,"./$.throws":39,"./$.uid":40}],44:[function(require,module,exports){
1775
+ },{"./$":26,"./$.array-includes":5,"./$.array-methods":6,"./$.assert":7,"./$.cof":9,"./$.def":15,"./$.dom-create":16,"./$.invoke":21,"./$.replacer":32,"./$.throws":41,"./$.uid":42}],46:[function(require,module,exports){
1518
1776
  'use strict';
1519
1777
  var $ = require('./$')
1520
1778
  , $def = require('./$.def')
@@ -1544,7 +1802,7 @@ $def($def.P, 'Array', {
1544
1802
  }
1545
1803
  });
1546
1804
  require('./$.unscope')('copyWithin');
1547
- },{"./$":24,"./$.def":13,"./$.unscope":41}],45:[function(require,module,exports){
1805
+ },{"./$":26,"./$.def":15,"./$.unscope":43}],47:[function(require,module,exports){
1548
1806
  'use strict';
1549
1807
  var $ = require('./$')
1550
1808
  , $def = require('./$.def')
@@ -1562,7 +1820,7 @@ $def($def.P, 'Array', {
1562
1820
  }
1563
1821
  });
1564
1822
  require('./$.unscope')('fill');
1565
- },{"./$":24,"./$.def":13,"./$.unscope":41}],46:[function(require,module,exports){
1823
+ },{"./$":26,"./$.def":15,"./$.unscope":43}],48:[function(require,module,exports){
1566
1824
  'use strict';
1567
1825
  // 22.1.3.9 Array.prototype.findIndex(predicate, thisArg = undefined)
1568
1826
  var KEY = 'findIndex'
@@ -1577,7 +1835,7 @@ $def($def.P + $def.F * forced, 'Array', {
1577
1835
  }
1578
1836
  });
1579
1837
  require('./$.unscope')(KEY);
1580
- },{"./$.array-methods":4,"./$.def":13,"./$.unscope":41}],47:[function(require,module,exports){
1838
+ },{"./$.array-methods":6,"./$.def":15,"./$.unscope":43}],49:[function(require,module,exports){
1581
1839
  'use strict';
1582
1840
  // 22.1.3.8 Array.prototype.find(predicate, thisArg = undefined)
1583
1841
  var KEY = 'find'
@@ -1592,7 +1850,7 @@ $def($def.P + $def.F * forced, 'Array', {
1592
1850
  }
1593
1851
  });
1594
1852
  require('./$.unscope')(KEY);
1595
- },{"./$.array-methods":4,"./$.def":13,"./$.unscope":41}],48:[function(require,module,exports){
1853
+ },{"./$.array-methods":6,"./$.def":15,"./$.unscope":43}],50:[function(require,module,exports){
1596
1854
  var $ = require('./$')
1597
1855
  , ctx = require('./$.ctx')
1598
1856
  , $def = require('./$.def')
@@ -1625,7 +1883,7 @@ $def($def.S + $def.F * !require('./$.iter-detect')(function(iter){ Array.from(it
1625
1883
  return result;
1626
1884
  }
1627
1885
  });
1628
- },{"./$":24,"./$.ctx":12,"./$.def":13,"./$.iter":23,"./$.iter-call":20,"./$.iter-detect":22}],49:[function(require,module,exports){
1886
+ },{"./$":26,"./$.ctx":14,"./$.def":15,"./$.iter":25,"./$.iter-call":22,"./$.iter-detect":24}],51:[function(require,module,exports){
1629
1887
  var $ = require('./$')
1630
1888
  , setUnscope = require('./$.unscope')
1631
1889
  , ITER = require('./$.uid').safe('iter')
@@ -1660,7 +1918,7 @@ Iterators.Arguments = Iterators.Array;
1660
1918
  setUnscope('keys');
1661
1919
  setUnscope('values');
1662
1920
  setUnscope('entries');
1663
- },{"./$":24,"./$.iter":23,"./$.iter-define":21,"./$.uid":40,"./$.unscope":41}],50:[function(require,module,exports){
1921
+ },{"./$":26,"./$.iter":25,"./$.iter-define":23,"./$.uid":42,"./$.unscope":43}],52:[function(require,module,exports){
1664
1922
  var $def = require('./$.def');
1665
1923
  $def($def.S, 'Array', {
1666
1924
  // 22.1.2.3 Array.of( ...items)
@@ -1674,9 +1932,9 @@ $def($def.S, 'Array', {
1674
1932
  return result;
1675
1933
  }
1676
1934
  });
1677
- },{"./$.def":13}],51:[function(require,module,exports){
1935
+ },{"./$.def":15}],53:[function(require,module,exports){
1678
1936
  require('./$.species')(Array);
1679
- },{"./$.species":34}],52:[function(require,module,exports){
1937
+ },{"./$.species":36}],54:[function(require,module,exports){
1680
1938
  var $ = require('./$')
1681
1939
  , HAS_INSTANCE = require('./$.wks')('hasInstance')
1682
1940
  , FunctionProto = Function.prototype;
@@ -1688,7 +1946,7 @@ if(!(HAS_INSTANCE in FunctionProto))$.setDesc(FunctionProto, HAS_INSTANCE, {valu
1688
1946
  while(O = $.getProto(O))if(this.prototype === O)return true;
1689
1947
  return false;
1690
1948
  }});
1691
- },{"./$":24,"./$.wks":42}],53:[function(require,module,exports){
1949
+ },{"./$":26,"./$.wks":44}],55:[function(require,module,exports){
1692
1950
  'use strict';
1693
1951
  var $ = require('./$')
1694
1952
  , NAME = 'name'
@@ -1707,7 +1965,7 @@ NAME in FunctionProto || $.FW && $.DESC && setDesc(FunctionProto, NAME, {
1707
1965
  $.has(this, NAME) || setDesc(this, NAME, $.desc(0, value));
1708
1966
  }
1709
1967
  });
1710
- },{"./$":24}],54:[function(require,module,exports){
1968
+ },{"./$":26}],56:[function(require,module,exports){
1711
1969
  'use strict';
1712
1970
  var strong = require('./$.collection-strong');
1713
1971
 
@@ -1725,7 +1983,7 @@ require('./$.collection')('Map', function(get){
1725
1983
  return strong.def(this, key === 0 ? 0 : key, value);
1726
1984
  }
1727
1985
  }, strong, true);
1728
- },{"./$.collection":11,"./$.collection-strong":8}],55:[function(require,module,exports){
1986
+ },{"./$.collection":13,"./$.collection-strong":10}],57:[function(require,module,exports){
1729
1987
  var Infinity = 1 / 0
1730
1988
  , $def = require('./$.def')
1731
1989
  , E = Math.E
@@ -1851,7 +2109,7 @@ $def($def.S, 'Math', {
1851
2109
  return (it > 0 ? floor : ceil)(it);
1852
2110
  }
1853
2111
  });
1854
- },{"./$.def":13}],56:[function(require,module,exports){
2112
+ },{"./$.def":15}],58:[function(require,module,exports){
1855
2113
  'use strict';
1856
2114
  var $ = require('./$')
1857
2115
  , isObject = $.isObject
@@ -1896,7 +2154,7 @@ if($.FW && !($Number('0o1') && $Number('0b1'))){
1896
2154
  proto.constructor = $Number;
1897
2155
  require('./$.redef')($.g, NUMBER, $Number);
1898
2156
  }
1899
- },{"./$":24,"./$.redef":29}],57:[function(require,module,exports){
2157
+ },{"./$":26,"./$.redef":31}],59:[function(require,module,exports){
1900
2158
  var $ = require('./$')
1901
2159
  , $def = require('./$.def')
1902
2160
  , abs = Math.abs
@@ -1932,21 +2190,21 @@ $def($def.S, 'Number', {
1932
2190
  // 20.1.2.13 Number.parseInt(string, radix)
1933
2191
  parseInt: parseInt
1934
2192
  });
1935
- },{"./$":24,"./$.def":13}],58:[function(require,module,exports){
2193
+ },{"./$":26,"./$.def":15}],60:[function(require,module,exports){
1936
2194
  // 19.1.3.1 Object.assign(target, source)
1937
2195
  var $def = require('./$.def');
1938
2196
  $def($def.S, 'Object', {assign: require('./$.assign')});
1939
- },{"./$.assign":6,"./$.def":13}],59:[function(require,module,exports){
2197
+ },{"./$.assign":8,"./$.def":15}],61:[function(require,module,exports){
1940
2198
  // 19.1.3.10 Object.is(value1, value2)
1941
2199
  var $def = require('./$.def');
1942
2200
  $def($def.S, 'Object', {
1943
2201
  is: require('./$.same')
1944
2202
  });
1945
- },{"./$.def":13,"./$.same":31}],60:[function(require,module,exports){
2203
+ },{"./$.def":15,"./$.same":33}],62:[function(require,module,exports){
1946
2204
  // 19.1.3.19 Object.setPrototypeOf(O, proto)
1947
2205
  var $def = require('./$.def');
1948
2206
  $def($def.S, 'Object', {setPrototypeOf: require('./$.set-proto').set});
1949
- },{"./$.def":13,"./$.set-proto":32}],61:[function(require,module,exports){
2207
+ },{"./$.def":15,"./$.set-proto":34}],63:[function(require,module,exports){
1950
2208
  var $ = require('./$')
1951
2209
  , $def = require('./$.def')
1952
2210
  , isObject = $.isObject
@@ -1983,7 +2241,7 @@ $.each.call(('freeze,seal,preventExtensions,isFrozen,isSealed,isExtensible,' +
1983
2241
  }
1984
2242
  $def($def.S + $def.F * forced, 'Object', method);
1985
2243
  });
1986
- },{"./$":24,"./$.def":13,"./$.get-names":18}],62:[function(require,module,exports){
2244
+ },{"./$":26,"./$.def":15,"./$.get-names":20}],64:[function(require,module,exports){
1987
2245
  'use strict';
1988
2246
  // 19.1.3.6 Object.prototype.toString()
1989
2247
  var cof = require('./$.cof')
@@ -1994,7 +2252,7 @@ if(require('./$').FW && cof(tmp) != 'z'){
1994
2252
  return '[object ' + cof.classof(this) + ']';
1995
2253
  }, true);
1996
2254
  }
1997
- },{"./$":24,"./$.cof":7,"./$.redef":29,"./$.wks":42}],63:[function(require,module,exports){
2255
+ },{"./$":26,"./$.cof":9,"./$.redef":31,"./$.wks":44}],65:[function(require,module,exports){
1998
2256
  'use strict';
1999
2257
  var $ = require('./$')
2000
2258
  , ctx = require('./$.ctx')
@@ -2256,7 +2514,7 @@ $def($def.S + $def.F * !(useNative && require('./$.iter-detect')(function(iter){
2256
2514
  });
2257
2515
  }
2258
2516
  });
2259
- },{"./$":24,"./$.assert":5,"./$.cof":7,"./$.ctx":12,"./$.def":13,"./$.for-of":16,"./$.iter-detect":22,"./$.mix":26,"./$.same":31,"./$.set-proto":32,"./$.species":34,"./$.task":38,"./$.uid":40,"./$.wks":42}],64:[function(require,module,exports){
2517
+ },{"./$":26,"./$.assert":7,"./$.cof":9,"./$.ctx":14,"./$.def":15,"./$.for-of":18,"./$.iter-detect":24,"./$.mix":28,"./$.same":33,"./$.set-proto":34,"./$.species":36,"./$.task":40,"./$.uid":42,"./$.wks":44}],66:[function(require,module,exports){
2260
2518
  var $ = require('./$')
2261
2519
  , $def = require('./$.def')
2262
2520
  , setProto = require('./$.set-proto')
@@ -2402,7 +2660,7 @@ $def($def.S + $def.F * buggyEnumerate, 'Reflect', {
2402
2660
  });
2403
2661
 
2404
2662
  $def($def.S, 'Reflect', reflect);
2405
- },{"./$":24,"./$.assert":5,"./$.def":13,"./$.iter":23,"./$.own-keys":27,"./$.set-proto":32,"./$.uid":40,"./$.wks":42}],65:[function(require,module,exports){
2663
+ },{"./$":26,"./$.assert":7,"./$.def":15,"./$.iter":25,"./$.own-keys":29,"./$.set-proto":34,"./$.uid":42,"./$.wks":44}],67:[function(require,module,exports){
2406
2664
  var $ = require('./$')
2407
2665
  , cof = require('./$.cof')
2408
2666
  , $RegExp = $.g.RegExp
@@ -2446,7 +2704,7 @@ if($.FW && $.DESC){
2446
2704
  });
2447
2705
  }
2448
2706
  require('./$.species')($RegExp);
2449
- },{"./$":24,"./$.cof":7,"./$.redef":29,"./$.replacer":30,"./$.species":34}],66:[function(require,module,exports){
2707
+ },{"./$":26,"./$.cof":9,"./$.redef":31,"./$.replacer":32,"./$.species":36}],68:[function(require,module,exports){
2450
2708
  'use strict';
2451
2709
  var strong = require('./$.collection-strong');
2452
2710
 
@@ -2459,7 +2717,7 @@ require('./$.collection')('Set', function(get){
2459
2717
  return strong.def(this, value = value === 0 ? 0 : value, value);
2460
2718
  }
2461
2719
  }, strong);
2462
- },{"./$.collection":11,"./$.collection-strong":8}],67:[function(require,module,exports){
2720
+ },{"./$.collection":13,"./$.collection-strong":10}],69:[function(require,module,exports){
2463
2721
  'use strict';
2464
2722
  var $def = require('./$.def')
2465
2723
  , $at = require('./$.string-at')(false);
@@ -2469,7 +2727,7 @@ $def($def.P, 'String', {
2469
2727
  return $at(this, pos);
2470
2728
  }
2471
2729
  });
2472
- },{"./$.def":13,"./$.string-at":35}],68:[function(require,module,exports){
2730
+ },{"./$.def":15,"./$.string-at":37}],70:[function(require,module,exports){
2473
2731
  'use strict';
2474
2732
  var $ = require('./$')
2475
2733
  , cof = require('./$.cof')
@@ -2489,7 +2747,7 @@ $def($def.P + $def.F * !require('./$.throws')(function(){ 'q'.endsWith(/./); }),
2489
2747
  return that.slice(end - searchString.length, end) === searchString;
2490
2748
  }
2491
2749
  });
2492
- },{"./$":24,"./$.cof":7,"./$.def":13,"./$.throws":39}],69:[function(require,module,exports){
2750
+ },{"./$":26,"./$.cof":9,"./$.def":15,"./$.throws":41}],71:[function(require,module,exports){
2493
2751
  var $def = require('./$.def')
2494
2752
  , toIndex = require('./$').toIndex
2495
2753
  , fromCharCode = String.fromCharCode
@@ -2513,7 +2771,7 @@ $def($def.S + $def.F * (!!$fromCodePoint && $fromCodePoint.length != 1), 'String
2513
2771
  } return res.join('');
2514
2772
  }
2515
2773
  });
2516
- },{"./$":24,"./$.def":13}],70:[function(require,module,exports){
2774
+ },{"./$":26,"./$.def":15}],72:[function(require,module,exports){
2517
2775
  'use strict';
2518
2776
  var $ = require('./$')
2519
2777
  , cof = require('./$.cof')
@@ -2526,7 +2784,7 @@ $def($def.P, 'String', {
2526
2784
  return !!~String($.assertDefined(this)).indexOf(searchString, arguments[1]);
2527
2785
  }
2528
2786
  });
2529
- },{"./$":24,"./$.cof":7,"./$.def":13}],71:[function(require,module,exports){
2787
+ },{"./$":26,"./$.cof":9,"./$.def":15}],73:[function(require,module,exports){
2530
2788
  var set = require('./$').set
2531
2789
  , $at = require('./$.string-at')(true)
2532
2790
  , ITER = require('./$.uid').safe('iter')
@@ -2547,7 +2805,7 @@ require('./$.iter-define')(String, 'String', function(iterated){
2547
2805
  iter.i += point.length;
2548
2806
  return step(0, point);
2549
2807
  });
2550
- },{"./$":24,"./$.iter":23,"./$.iter-define":21,"./$.string-at":35,"./$.uid":40}],72:[function(require,module,exports){
2808
+ },{"./$":26,"./$.iter":25,"./$.iter-define":23,"./$.string-at":37,"./$.uid":42}],74:[function(require,module,exports){
2551
2809
  var $ = require('./$')
2552
2810
  , $def = require('./$.def');
2553
2811
 
@@ -2565,14 +2823,14 @@ $def($def.S, 'String', {
2565
2823
  } return res.join('');
2566
2824
  }
2567
2825
  });
2568
- },{"./$":24,"./$.def":13}],73:[function(require,module,exports){
2826
+ },{"./$":26,"./$.def":15}],75:[function(require,module,exports){
2569
2827
  var $def = require('./$.def');
2570
2828
 
2571
2829
  $def($def.P, 'String', {
2572
2830
  // 21.1.3.13 String.prototype.repeat(count)
2573
2831
  repeat: require('./$.string-repeat')
2574
2832
  });
2575
- },{"./$.def":13,"./$.string-repeat":37}],74:[function(require,module,exports){
2833
+ },{"./$.def":15,"./$.string-repeat":39}],76:[function(require,module,exports){
2576
2834
  'use strict';
2577
2835
  var $ = require('./$')
2578
2836
  , cof = require('./$.cof')
@@ -2589,7 +2847,7 @@ $def($def.P + $def.F * !require('./$.throws')(function(){ 'q'.startsWith(/./); }
2589
2847
  return that.slice(index, index + searchString.length) === searchString;
2590
2848
  }
2591
2849
  });
2592
- },{"./$":24,"./$.cof":7,"./$.def":13,"./$.throws":39}],75:[function(require,module,exports){
2850
+ },{"./$":26,"./$.cof":9,"./$.def":15,"./$.throws":41}],77:[function(require,module,exports){
2593
2851
  'use strict';
2594
2852
  // ECMAScript 6 symbols shim
2595
2853
  var $ = require('./$')
@@ -2780,7 +3038,7 @@ setTag($Symbol, 'Symbol');
2780
3038
  setTag(Math, 'Math', true);
2781
3039
  // 24.3.3 JSON[@@toStringTag]
2782
3040
  setTag($.g.JSON, 'JSON', true);
2783
- },{"./$":24,"./$.assert":5,"./$.cof":7,"./$.def":13,"./$.enum-keys":15,"./$.get-names":18,"./$.keyof":25,"./$.redef":29,"./$.shared":33,"./$.uid":40,"./$.wks":42}],76:[function(require,module,exports){
3041
+ },{"./$":26,"./$.assert":7,"./$.cof":9,"./$.def":15,"./$.enum-keys":17,"./$.get-names":20,"./$.keyof":27,"./$.redef":31,"./$.shared":35,"./$.uid":42,"./$.wks":44}],78:[function(require,module,exports){
2784
3042
  'use strict';
2785
3043
  var $ = require('./$')
2786
3044
  , weak = require('./$.collection-weak')
@@ -2824,7 +3082,7 @@ if(new $WeakMap().set((Object.freeze || Object)(tmp), 7).get(tmp) != 7){
2824
3082
  });
2825
3083
  });
2826
3084
  }
2827
- },{"./$":24,"./$.collection":11,"./$.collection-weak":10,"./$.redef":29}],77:[function(require,module,exports){
3085
+ },{"./$":26,"./$.collection":13,"./$.collection-weak":12,"./$.redef":31}],79:[function(require,module,exports){
2828
3086
  'use strict';
2829
3087
  var weak = require('./$.collection-weak');
2830
3088
 
@@ -2837,7 +3095,7 @@ require('./$.collection')('WeakSet', function(get){
2837
3095
  return weak.def(this, value, true);
2838
3096
  }
2839
3097
  }, weak, false, true);
2840
- },{"./$.collection":11,"./$.collection-weak":10}],78:[function(require,module,exports){
3098
+ },{"./$.collection":13,"./$.collection-weak":12}],80:[function(require,module,exports){
2841
3099
  'use strict';
2842
3100
  var $def = require('./$.def')
2843
3101
  , $includes = require('./$.array-includes')(true);
@@ -2848,10 +3106,10 @@ $def($def.P, 'Array', {
2848
3106
  }
2849
3107
  });
2850
3108
  require('./$.unscope')('includes');
2851
- },{"./$.array-includes":3,"./$.def":13,"./$.unscope":41}],79:[function(require,module,exports){
3109
+ },{"./$.array-includes":5,"./$.def":15,"./$.unscope":43}],81:[function(require,module,exports){
2852
3110
  // https://github.com/DavidBruant/Map-Set.prototype.toJSON
2853
3111
  require('./$.collection-to-json')('Map');
2854
- },{"./$.collection-to-json":9}],80:[function(require,module,exports){
3112
+ },{"./$.collection-to-json":11}],82:[function(require,module,exports){
2855
3113
  // https://gist.github.com/WebReflection/9353781
2856
3114
  var $ = require('./$')
2857
3115
  , $def = require('./$.def')
@@ -2867,7 +3125,7 @@ $def($def.S, 'Object', {
2867
3125
  return result;
2868
3126
  }
2869
3127
  });
2870
- },{"./$":24,"./$.def":13,"./$.own-keys":27}],81:[function(require,module,exports){
3128
+ },{"./$":26,"./$.def":15,"./$.own-keys":29}],83:[function(require,module,exports){
2871
3129
  // http://goo.gl/XkBrjD
2872
3130
  var $ = require('./$')
2873
3131
  , $def = require('./$.def');
@@ -2888,17 +3146,17 @@ $def($def.S, 'Object', {
2888
3146
  values: createObjectToArray(false),
2889
3147
  entries: createObjectToArray(true)
2890
3148
  });
2891
- },{"./$":24,"./$.def":13}],82:[function(require,module,exports){
3149
+ },{"./$":26,"./$.def":15}],84:[function(require,module,exports){
2892
3150
  // https://github.com/benjamingr/RexExp.escape
2893
3151
  var $def = require('./$.def');
2894
3152
  $def($def.S, 'RegExp', {
2895
3153
  escape: require('./$.replacer')(/[\\^$*+?.()|[\]{}]/g, '\\$&', true)
2896
3154
  });
2897
3155
 
2898
- },{"./$.def":13,"./$.replacer":30}],83:[function(require,module,exports){
3156
+ },{"./$.def":15,"./$.replacer":32}],85:[function(require,module,exports){
2899
3157
  // https://github.com/DavidBruant/Map-Set.prototype.toJSON
2900
3158
  require('./$.collection-to-json')('Set');
2901
- },{"./$.collection-to-json":9}],84:[function(require,module,exports){
3159
+ },{"./$.collection-to-json":11}],86:[function(require,module,exports){
2902
3160
  // https://github.com/mathiasbynens/String.prototype.at
2903
3161
  'use strict';
2904
3162
  var $def = require('./$.def')
@@ -2908,7 +3166,7 @@ $def($def.P, 'String', {
2908
3166
  return $at(this, pos);
2909
3167
  }
2910
3168
  });
2911
- },{"./$.def":13,"./$.string-at":35}],85:[function(require,module,exports){
3169
+ },{"./$.def":15,"./$.string-at":37}],87:[function(require,module,exports){
2912
3170
  'use strict';
2913
3171
  var $def = require('./$.def')
2914
3172
  , $pad = require('./$.string-pad');
@@ -2917,7 +3175,7 @@ $def($def.P, 'String', {
2917
3175
  return $pad(this, n, arguments[1], true);
2918
3176
  }
2919
3177
  });
2920
- },{"./$.def":13,"./$.string-pad":36}],86:[function(require,module,exports){
3178
+ },{"./$.def":15,"./$.string-pad":38}],88:[function(require,module,exports){
2921
3179
  'use strict';
2922
3180
  var $def = require('./$.def')
2923
3181
  , $pad = require('./$.string-pad');
@@ -2926,7 +3184,7 @@ $def($def.P, 'String', {
2926
3184
  return $pad(this, n, arguments[1], false);
2927
3185
  }
2928
3186
  });
2929
- },{"./$.def":13,"./$.string-pad":36}],87:[function(require,module,exports){
3187
+ },{"./$.def":15,"./$.string-pad":38}],89:[function(require,module,exports){
2930
3188
  // JavaScript 1.6 / Strawman array statics shim
2931
3189
  var $ = require('./$')
2932
3190
  , $def = require('./$.def')
@@ -2943,7 +3201,7 @@ setStatics('indexOf,every,some,forEach,map,filter,find,findIndex,includes', 3);
2943
3201
  setStatics('join,slice,concat,push,splice,unshift,sort,lastIndexOf,' +
2944
3202
  'reduce,reduceRight,copyWithin,fill,turn');
2945
3203
  $def($def.S, 'Array', statics);
2946
- },{"./$":24,"./$.ctx":12,"./$.def":13}],88:[function(require,module,exports){
3204
+ },{"./$":26,"./$.ctx":14,"./$.def":15}],90:[function(require,module,exports){
2947
3205
  require('./es6.array.iterator');
2948
3206
  var $ = require('./$')
2949
3207
  , Iterators = require('./$.iter').Iterators
@@ -2958,14 +3216,14 @@ if($.FW){
2958
3216
  if(HTC && !(ITERATOR in HTCProto))$.hide(HTCProto, ITERATOR, ArrayValues);
2959
3217
  }
2960
3218
  Iterators.NodeList = Iterators.HTMLCollection = ArrayValues;
2961
- },{"./$":24,"./$.iter":23,"./$.wks":42,"./es6.array.iterator":49}],89:[function(require,module,exports){
3219
+ },{"./$":26,"./$.iter":25,"./$.wks":44,"./es6.array.iterator":51}],91:[function(require,module,exports){
2962
3220
  var $def = require('./$.def')
2963
3221
  , $task = require('./$.task');
2964
3222
  $def($def.G + $def.B, {
2965
3223
  setImmediate: $task.set,
2966
3224
  clearImmediate: $task.clear
2967
3225
  });
2968
- },{"./$.def":13,"./$.task":38}],90:[function(require,module,exports){
3226
+ },{"./$.def":15,"./$.task":40}],92:[function(require,module,exports){
2969
3227
  // ie9- setTimeout & setInterval additional parameters fix
2970
3228
  var $ = require('./$')
2971
3229
  , $def = require('./$.def')
@@ -2986,7 +3244,7 @@ $def($def.G + $def.B + $def.F * MSIE, {
2986
3244
  setTimeout: wrap($.g.setTimeout),
2987
3245
  setInterval: wrap($.g.setInterval)
2988
3246
  });
2989
- },{"./$":24,"./$.def":13,"./$.invoke":19,"./$.partial":28}],91:[function(require,module,exports){
3247
+ },{"./$":26,"./$.def":15,"./$.invoke":21,"./$.partial":30}],93:[function(require,module,exports){
2990
3248
  require('./modules/es5');
2991
3249
  require('./modules/es6.symbol');
2992
3250
  require('./modules/es6.object.assign');
@@ -3037,7 +3295,7 @@ require('./modules/web.immediate');
3037
3295
  require('./modules/web.dom.iterable');
3038
3296
  module.exports = require('./modules/$').core;
3039
3297
 
3040
- },{"./modules/$":24,"./modules/es5":43,"./modules/es6.array.copy-within":44,"./modules/es6.array.fill":45,"./modules/es6.array.find":47,"./modules/es6.array.find-index":46,"./modules/es6.array.from":48,"./modules/es6.array.iterator":49,"./modules/es6.array.of":50,"./modules/es6.array.species":51,"./modules/es6.function.has-instance":52,"./modules/es6.function.name":53,"./modules/es6.map":54,"./modules/es6.math":55,"./modules/es6.number.constructor":56,"./modules/es6.number.statics":57,"./modules/es6.object.assign":58,"./modules/es6.object.is":59,"./modules/es6.object.set-prototype-of":60,"./modules/es6.object.statics-accept-primitives":61,"./modules/es6.object.to-string":62,"./modules/es6.promise":63,"./modules/es6.reflect":64,"./modules/es6.regexp":65,"./modules/es6.set":66,"./modules/es6.string.code-point-at":67,"./modules/es6.string.ends-with":68,"./modules/es6.string.from-code-point":69,"./modules/es6.string.includes":70,"./modules/es6.string.iterator":71,"./modules/es6.string.raw":72,"./modules/es6.string.repeat":73,"./modules/es6.string.starts-with":74,"./modules/es6.symbol":75,"./modules/es6.weak-map":76,"./modules/es6.weak-set":77,"./modules/es7.array.includes":78,"./modules/es7.map.to-json":79,"./modules/es7.object.get-own-property-descriptors":80,"./modules/es7.object.to-array":81,"./modules/es7.regexp.escape":82,"./modules/es7.set.to-json":83,"./modules/es7.string.at":84,"./modules/es7.string.lpad":85,"./modules/es7.string.rpad":86,"./modules/js.array.statics":87,"./modules/web.dom.iterable":88,"./modules/web.immediate":89,"./modules/web.timers":90}],92:[function(require,module,exports){
3298
+ },{"./modules/$":26,"./modules/es5":45,"./modules/es6.array.copy-within":46,"./modules/es6.array.fill":47,"./modules/es6.array.find":49,"./modules/es6.array.find-index":48,"./modules/es6.array.from":50,"./modules/es6.array.iterator":51,"./modules/es6.array.of":52,"./modules/es6.array.species":53,"./modules/es6.function.has-instance":54,"./modules/es6.function.name":55,"./modules/es6.map":56,"./modules/es6.math":57,"./modules/es6.number.constructor":58,"./modules/es6.number.statics":59,"./modules/es6.object.assign":60,"./modules/es6.object.is":61,"./modules/es6.object.set-prototype-of":62,"./modules/es6.object.statics-accept-primitives":63,"./modules/es6.object.to-string":64,"./modules/es6.promise":65,"./modules/es6.reflect":66,"./modules/es6.regexp":67,"./modules/es6.set":68,"./modules/es6.string.code-point-at":69,"./modules/es6.string.ends-with":70,"./modules/es6.string.from-code-point":71,"./modules/es6.string.includes":72,"./modules/es6.string.iterator":73,"./modules/es6.string.raw":74,"./modules/es6.string.repeat":75,"./modules/es6.string.starts-with":76,"./modules/es6.symbol":77,"./modules/es6.weak-map":78,"./modules/es6.weak-set":79,"./modules/es7.array.includes":80,"./modules/es7.map.to-json":81,"./modules/es7.object.get-own-property-descriptors":82,"./modules/es7.object.to-array":83,"./modules/es7.regexp.escape":84,"./modules/es7.set.to-json":85,"./modules/es7.string.at":86,"./modules/es7.string.lpad":87,"./modules/es7.string.rpad":88,"./modules/js.array.statics":89,"./modules/web.dom.iterable":90,"./modules/web.immediate":91,"./modules/web.timers":92}],94:[function(require,module,exports){
3041
3299
  (function (process,global){
3042
3300
  /**
3043
3301
  * Copyright (c) 2014, Facebook, Inc.
@@ -3671,4 +3929,4 @@ module.exports = require('./modules/$').core;
3671
3929
  );
3672
3930
 
3673
3931
  }).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
3674
- },{"_process":2}]},{},[1]);
3932
+ },{"_process":4}]},{},[1]);