babel-source 5.6.20 → 5.8.0

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.
Files changed (5) hide show
  1. checksums.yaml +8 -8
  2. data/lib/babel.js +13059 -14208
  3. data/lib/babel/polyfill.js +104 -367
  4. data/lib/babel/source.rb +2 -2
  5. metadata +2 -2
@@ -1,280 +1,4 @@
1
1
  (function e(t,n,r){function s(o,u){if(!n[o]){if(!t[o]){var a=typeof require=="function"&&require;if(!u&&a)return a(o,!0);if(i)return i(o,!0);var f=new Error("Cannot find module '"+o+"'");throw f.code="MODULE_NOT_FOUND",f}var l=n[o]={exports:{}};t[o][0].call(l.exports,function(e){var n=t[o][1][e];return s(n?n:e)},l,l.exports,e,t,n,r)}return n[o].exports}var i=typeof require=="function"&&require;for(var o=0;o<r.length;o++)s(r[o]);return s})({1:[function(require,module,exports){
2
- (function (global){
3
- "use strict";
4
-
5
- var _toolsProtectJs2 = require("./tools/protect.js");
6
-
7
- var _toolsProtectJs3 = _interopRequireDefault(_toolsProtectJs2);
8
-
9
- require("core-js/shim");
10
-
11
- require("regenerator/runtime");
12
-
13
- _toolsProtectJs3["default"](module);
14
-
15
- function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
16
-
17
- if (global._babelPolyfill) {
18
- throw new Error("only one instance of babel/polyfill is allowed");
19
- }
20
- global._babelPolyfill = true;
21
- }).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
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
- /**
37
- * Protect Babel internals from being hotlinked by other tools.
38
- * Sorry, not sorry.
39
- */
40
-
41
- exports["default"] = function (module) {
42
- if (module.parent && module.parent.filename.indexOf(root) !== 0) {
43
- throw new Error("Don't hotlink internal Babel files.");
44
- }
45
- };
46
-
47
- module.exports = exports["default"];
48
- }).call(this,"/lib/babel/tools")
49
- },{"path":3}],3:[function(require,module,exports){
50
- (function (process){
51
- // Copyright Joyent, Inc. and other Node contributors.
52
- //
53
- // Permission is hereby granted, free of charge, to any person obtaining a
54
- // copy of this software and associated documentation files (the
55
- // "Software"), to deal in the Software without restriction, including
56
- // without limitation the rights to use, copy, modify, merge, publish,
57
- // distribute, sublicense, and/or sell copies of the Software, and to permit
58
- // persons to whom the Software is furnished to do so, subject to the
59
- // following conditions:
60
- //
61
- // The above copyright notice and this permission notice shall be included
62
- // in all copies or substantial portions of the Software.
63
- //
64
- // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
65
- // OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
66
- // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN
67
- // NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
68
- // DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
69
- // OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
70
- // USE OR OTHER DEALINGS IN THE SOFTWARE.
71
-
72
- // resolves . and .. elements in a path array with directory names there
73
- // must be no slashes, empty elements, or device names (c:\) in the array
74
- // (so also no leading and trailing slashes - it does not distinguish
75
- // relative and absolute paths)
76
- function normalizeArray(parts, allowAboveRoot) {
77
- // if the path tries to go above the root, `up` ends up > 0
78
- var up = 0;
79
- for (var i = parts.length - 1; i >= 0; i--) {
80
- var last = parts[i];
81
- if (last === '.') {
82
- parts.splice(i, 1);
83
- } else if (last === '..') {
84
- parts.splice(i, 1);
85
- up++;
86
- } else if (up) {
87
- parts.splice(i, 1);
88
- up--;
89
- }
90
- }
91
-
92
- // if the path is allowed to go above the root, restore leading ..s
93
- if (allowAboveRoot) {
94
- for (; up--; up) {
95
- parts.unshift('..');
96
- }
97
- }
98
-
99
- return parts;
100
- }
101
-
102
- // Split a filename into [root, dir, basename, ext], unix version
103
- // 'root' is just a slash, or nothing.
104
- var splitPathRe =
105
- /^(\/?|)([\s\S]*?)((?:\.{1,2}|[^\/]+?|)(\.[^.\/]*|))(?:[\/]*)$/;
106
- var splitPath = function(filename) {
107
- return splitPathRe.exec(filename).slice(1);
108
- };
109
-
110
- // path.resolve([from ...], to)
111
- // posix version
112
- exports.resolve = function() {
113
- var resolvedPath = '',
114
- resolvedAbsolute = false;
115
-
116
- for (var i = arguments.length - 1; i >= -1 && !resolvedAbsolute; i--) {
117
- var path = (i >= 0) ? arguments[i] : process.cwd();
118
-
119
- // Skip empty and invalid entries
120
- if (typeof path !== 'string') {
121
- throw new TypeError('Arguments to path.resolve must be strings');
122
- } else if (!path) {
123
- continue;
124
- }
125
-
126
- resolvedPath = path + '/' + resolvedPath;
127
- resolvedAbsolute = path.charAt(0) === '/';
128
- }
129
-
130
- // At this point the path should be resolved to a full absolute path, but
131
- // handle relative paths to be safe (might happen when process.cwd() fails)
132
-
133
- // Normalize the path
134
- resolvedPath = normalizeArray(filter(resolvedPath.split('/'), function(p) {
135
- return !!p;
136
- }), !resolvedAbsolute).join('/');
137
-
138
- return ((resolvedAbsolute ? '/' : '') + resolvedPath) || '.';
139
- };
140
-
141
- // path.normalize(path)
142
- // posix version
143
- exports.normalize = function(path) {
144
- var isAbsolute = exports.isAbsolute(path),
145
- trailingSlash = substr(path, -1) === '/';
146
-
147
- // Normalize the path
148
- path = normalizeArray(filter(path.split('/'), function(p) {
149
- return !!p;
150
- }), !isAbsolute).join('/');
151
-
152
- if (!path && !isAbsolute) {
153
- path = '.';
154
- }
155
- if (path && trailingSlash) {
156
- path += '/';
157
- }
158
-
159
- return (isAbsolute ? '/' : '') + path;
160
- };
161
-
162
- // posix version
163
- exports.isAbsolute = function(path) {
164
- return path.charAt(0) === '/';
165
- };
166
-
167
- // posix version
168
- exports.join = function() {
169
- var paths = Array.prototype.slice.call(arguments, 0);
170
- return exports.normalize(filter(paths, function(p, index) {
171
- if (typeof p !== 'string') {
172
- throw new TypeError('Arguments to path.join must be strings');
173
- }
174
- return p;
175
- }).join('/'));
176
- };
177
-
178
-
179
- // path.relative(from, to)
180
- // posix version
181
- exports.relative = function(from, to) {
182
- from = exports.resolve(from).substr(1);
183
- to = exports.resolve(to).substr(1);
184
-
185
- function trim(arr) {
186
- var start = 0;
187
- for (; start < arr.length; start++) {
188
- if (arr[start] !== '') break;
189
- }
190
-
191
- var end = arr.length - 1;
192
- for (; end >= 0; end--) {
193
- if (arr[end] !== '') break;
194
- }
195
-
196
- if (start > end) return [];
197
- return arr.slice(start, end - start + 1);
198
- }
199
-
200
- var fromParts = trim(from.split('/'));
201
- var toParts = trim(to.split('/'));
202
-
203
- var length = Math.min(fromParts.length, toParts.length);
204
- var samePartsLength = length;
205
- for (var i = 0; i < length; i++) {
206
- if (fromParts[i] !== toParts[i]) {
207
- samePartsLength = i;
208
- break;
209
- }
210
- }
211
-
212
- var outputParts = [];
213
- for (var i = samePartsLength; i < fromParts.length; i++) {
214
- outputParts.push('..');
215
- }
216
-
217
- outputParts = outputParts.concat(toParts.slice(samePartsLength));
218
-
219
- return outputParts.join('/');
220
- };
221
-
222
- exports.sep = '/';
223
- exports.delimiter = ':';
224
-
225
- exports.dirname = function(path) {
226
- var result = splitPath(path),
227
- root = result[0],
228
- dir = result[1];
229
-
230
- if (!root && !dir) {
231
- // No dirname whatsoever
232
- return '.';
233
- }
234
-
235
- if (dir) {
236
- // It has a dirname, strip trailing slash
237
- dir = dir.substr(0, dir.length - 1);
238
- }
239
-
240
- return root + dir;
241
- };
242
-
243
-
244
- exports.basename = function(path, ext) {
245
- var f = splitPath(path)[2];
246
- // TODO: make this comparison case-insensitive on windows?
247
- if (ext && f.substr(-1 * ext.length) === ext) {
248
- f = f.substr(0, f.length - ext.length);
249
- }
250
- return f;
251
- };
252
-
253
-
254
- exports.extname = function(path) {
255
- return splitPath(path)[3];
256
- };
257
-
258
- function filter (xs, f) {
259
- if (xs.filter) return xs.filter(f);
260
- var res = [];
261
- for (var i = 0; i < xs.length; i++) {
262
- if (f(xs[i], i, xs)) res.push(xs[i]);
263
- }
264
- return res;
265
- }
266
-
267
- // String.prototype.substr - negative index don't work in IE8
268
- var substr = 'ab'.substr(-1) === 'b'
269
- ? function (str, start, len) { return str.substr(start, len) }
270
- : function (str, start, len) {
271
- if (start < 0) start = str.length + start;
272
- return str.substr(start, len);
273
- }
274
- ;
275
-
276
- }).call(this,require('_process'))
277
- },{"_process":4}],4:[function(require,module,exports){
278
2
  // shim for using process in browser
279
3
 
280
4
  var process = module.exports = {};
@@ -334,7 +58,20 @@ process.chdir = function (dir) {
334
58
  };
335
59
  process.umask = function() { return 0; };
336
60
 
337
- },{}],5:[function(require,module,exports){
61
+ },{}],2:[function(require,module,exports){
62
+ (function (global){
63
+ "use strict";
64
+
65
+ require("core-js/shim");
66
+
67
+ require("regenerator/runtime");
68
+
69
+ if (global._babelPolyfill) {
70
+ throw new Error("only one instance of babel/polyfill is allowed");
71
+ }
72
+ global._babelPolyfill = true;
73
+ }).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
74
+ },{"core-js/shim":91,"regenerator/runtime":92}],3:[function(require,module,exports){
338
75
  // false -> Array#indexOf
339
76
  // true -> Array#includes
340
77
  var $ = require('./$');
@@ -352,7 +89,7 @@ module.exports = function(IS_INCLUDES){
352
89
  } return !IS_INCLUDES && -1;
353
90
  };
354
91
  };
355
- },{"./$":26}],6:[function(require,module,exports){
92
+ },{"./$":24}],4:[function(require,module,exports){
356
93
  // 0 -> Array#forEach
357
94
  // 1 -> Array#map
358
95
  // 2 -> Array#filter
@@ -393,7 +130,7 @@ module.exports = function(TYPE){
393
130
  return IS_FIND_INDEX ? -1 : IS_SOME || IS_EVERY ? IS_EVERY : result;
394
131
  };
395
132
  };
396
- },{"./$":26,"./$.ctx":14}],7:[function(require,module,exports){
133
+ },{"./$":24,"./$.ctx":12}],5:[function(require,module,exports){
397
134
  var $ = require('./$');
398
135
  function assert(condition, msg1, msg2){
399
136
  if(!condition)throw TypeError(msg2 ? msg1 + msg2 : msg1);
@@ -412,7 +149,7 @@ assert.inst = function(it, Constructor, name){
412
149
  return it;
413
150
  };
414
151
  module.exports = assert;
415
- },{"./$":26}],8:[function(require,module,exports){
152
+ },{"./$":24}],6:[function(require,module,exports){
416
153
  var $ = require('./$')
417
154
  , enumKeys = require('./$.enum-keys');
418
155
  // 19.1.2.1 Object.assign(target, source, ...)
@@ -432,7 +169,7 @@ module.exports = Object.assign || function assign(target, source){
432
169
  }
433
170
  return T;
434
171
  };
435
- },{"./$":26,"./$.enum-keys":17}],9:[function(require,module,exports){
172
+ },{"./$":24,"./$.enum-keys":15}],7:[function(require,module,exports){
436
173
  var $ = require('./$')
437
174
  , TAG = require('./$.wks')('toStringTag')
438
175
  , toString = {}.toString;
@@ -448,7 +185,7 @@ cof.set = function(it, tag, stat){
448
185
  if(it && !$.has(it = stat ? it : it.prototype, TAG))$.hide(it, TAG, tag);
449
186
  };
450
187
  module.exports = cof;
451
- },{"./$":26,"./$.wks":44}],10:[function(require,module,exports){
188
+ },{"./$":24,"./$.wks":42}],8:[function(require,module,exports){
452
189
  'use strict';
453
190
  var $ = require('./$')
454
191
  , ctx = require('./$.ctx')
@@ -604,7 +341,7 @@ module.exports = {
604
341
  }, IS_MAP ? 'entries' : 'values' , !IS_MAP, true);
605
342
  }
606
343
  };
607
- },{"./$":26,"./$.assert":7,"./$.ctx":14,"./$.for-of":18,"./$.iter":25,"./$.iter-define":23,"./$.mix":28,"./$.uid":42}],11:[function(require,module,exports){
344
+ },{"./$":24,"./$.assert":5,"./$.ctx":12,"./$.for-of":16,"./$.iter":23,"./$.iter-define":21,"./$.mix":26,"./$.uid":40}],9:[function(require,module,exports){
608
345
  // https://github.com/DavidBruant/Map-Set.prototype.toJSON
609
346
  var $def = require('./$.def')
610
347
  , forOf = require('./$.for-of');
@@ -617,7 +354,7 @@ module.exports = function(NAME){
617
354
  }
618
355
  });
619
356
  };
620
- },{"./$.def":15,"./$.for-of":18}],12:[function(require,module,exports){
357
+ },{"./$.def":13,"./$.for-of":16}],10:[function(require,module,exports){
621
358
  'use strict';
622
359
  var $ = require('./$')
623
360
  , safe = require('./$.uid').safe
@@ -701,7 +438,7 @@ module.exports = {
701
438
  WEAK: WEAK,
702
439
  ID: ID
703
440
  };
704
- },{"./$":26,"./$.array-methods":6,"./$.assert":7,"./$.for-of":18,"./$.mix":28,"./$.uid":42}],13:[function(require,module,exports){
441
+ },{"./$":24,"./$.array-methods":4,"./$.assert":5,"./$.for-of":16,"./$.mix":26,"./$.uid":40}],11:[function(require,module,exports){
705
442
  'use strict';
706
443
  var $ = require('./$')
707
444
  , $def = require('./$.def')
@@ -769,7 +506,7 @@ module.exports = function(NAME, wrapper, methods, common, IS_MAP, IS_WEAK){
769
506
 
770
507
  return C;
771
508
  };
772
- },{"./$":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){
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){
773
510
  // Optional / simple context binding
774
511
  var assertFunction = require('./$.assert').fn;
775
512
  module.exports = function(fn, that, length){
@@ -789,7 +526,7 @@ module.exports = function(fn, that, length){
789
526
  return fn.apply(that, arguments);
790
527
  };
791
528
  };
792
- },{"./$.assert":7}],15:[function(require,module,exports){
529
+ },{"./$.assert":5}],13:[function(require,module,exports){
793
530
  var $ = require('./$')
794
531
  , global = $.g
795
532
  , core = $.core
@@ -832,7 +569,7 @@ function $def(type, name, source){
832
569
  }
833
570
  }
834
571
  module.exports = $def;
835
- },{"./$":26,"./$.redef":31}],16:[function(require,module,exports){
572
+ },{"./$":24,"./$.redef":29}],14:[function(require,module,exports){
836
573
  var $ = require('./$')
837
574
  , document = $.g.document
838
575
  , isObject = $.isObject
@@ -841,7 +578,7 @@ var $ = require('./$')
841
578
  module.exports = function(it){
842
579
  return is ? document.createElement(it) : {};
843
580
  };
844
- },{"./$":26}],17:[function(require,module,exports){
581
+ },{"./$":24}],15:[function(require,module,exports){
845
582
  var $ = require('./$');
846
583
  module.exports = function(it){
847
584
  var keys = $.getKeys(it)
@@ -852,7 +589,7 @@ module.exports = function(it){
852
589
  });
853
590
  return keys;
854
591
  };
855
- },{"./$":26}],18:[function(require,module,exports){
592
+ },{"./$":24}],16:[function(require,module,exports){
856
593
  var ctx = require('./$.ctx')
857
594
  , get = require('./$.iter').get
858
595
  , call = require('./$.iter-call');
@@ -866,13 +603,13 @@ module.exports = function(iterable, entries, fn, that){
866
603
  }
867
604
  }
868
605
  };
869
- },{"./$.ctx":14,"./$.iter":25,"./$.iter-call":22}],19:[function(require,module,exports){
606
+ },{"./$.ctx":12,"./$.iter":23,"./$.iter-call":20}],17:[function(require,module,exports){
870
607
  module.exports = function($){
871
608
  $.FW = true;
872
609
  $.path = $.g;
873
610
  return $;
874
611
  };
875
- },{}],20:[function(require,module,exports){
612
+ },{}],18:[function(require,module,exports){
876
613
  // fallback for IE11 buggy Object.getOwnPropertyNames with iframe and window
877
614
  var $ = require('./$')
878
615
  , toString = {}.toString
@@ -893,7 +630,7 @@ module.exports.get = function getOwnPropertyNames(it){
893
630
  if(windowNames && toString.call(it) == '[object Window]')return getWindowNames(it);
894
631
  return getNames($.toObject(it));
895
632
  };
896
- },{"./$":26}],21:[function(require,module,exports){
633
+ },{"./$":24}],19:[function(require,module,exports){
897
634
  // Fast apply
898
635
  // http://jsperf.lnkit.com/fast-apply/5
899
636
  module.exports = function(fn, args, that){
@@ -913,7 +650,7 @@ module.exports = function(fn, args, that){
913
650
  : fn.call(that, args[0], args[1], args[2], args[3], args[4]);
914
651
  } return fn.apply(that, args);
915
652
  };
916
- },{}],22:[function(require,module,exports){
653
+ },{}],20:[function(require,module,exports){
917
654
  var assertObject = require('./$.assert').obj;
918
655
  function close(iterator){
919
656
  var ret = iterator['return'];
@@ -929,7 +666,7 @@ function call(iterator, fn, value, entries){
929
666
  }
930
667
  call.close = close;
931
668
  module.exports = call;
932
- },{"./$.assert":7}],23:[function(require,module,exports){
669
+ },{"./$.assert":5}],21:[function(require,module,exports){
933
670
  var $def = require('./$.def')
934
671
  , $redef = require('./$.redef')
935
672
  , $ = require('./$')
@@ -980,7 +717,7 @@ module.exports = function(Base, NAME, Constructor, next, DEFAULT, IS_SET, FORCE)
980
717
  } else $def($def.P + $def.F * $iter.BUGGY, NAME, methods);
981
718
  }
982
719
  };
983
- },{"./$":26,"./$.cof":9,"./$.def":15,"./$.iter":25,"./$.redef":31,"./$.wks":44}],24:[function(require,module,exports){
720
+ },{"./$":24,"./$.cof":7,"./$.def":13,"./$.iter":23,"./$.redef":29,"./$.wks":42}],22:[function(require,module,exports){
984
721
  var SYMBOL_ITERATOR = require('./$.wks')('iterator')
985
722
  , SAFE_CLOSING = false;
986
723
  try {
@@ -1000,7 +737,7 @@ module.exports = function(exec){
1000
737
  } catch(e){ /* empty */ }
1001
738
  return safe;
1002
739
  };
1003
- },{"./$.wks":44}],25:[function(require,module,exports){
740
+ },{"./$.wks":42}],23:[function(require,module,exports){
1004
741
  'use strict';
1005
742
  var $ = require('./$')
1006
743
  , cof = require('./$.cof')
@@ -1050,7 +787,7 @@ module.exports = {
1050
787
  cof.set(Constructor, NAME + ' Iterator');
1051
788
  }
1052
789
  };
1053
- },{"./$":26,"./$.assert":7,"./$.cof":9,"./$.shared":35,"./$.wks":44}],26:[function(require,module,exports){
790
+ },{"./$":24,"./$.assert":5,"./$.cof":7,"./$.shared":33,"./$.wks":42}],24:[function(require,module,exports){
1054
791
  'use strict';
1055
792
  var global = typeof self != 'undefined' ? self : Function('return this')()
1056
793
  , core = {}
@@ -1147,7 +884,7 @@ var $ = module.exports = require('./$.fw')({
1147
884
  /* eslint-disable no-undef */
1148
885
  if(typeof __e != 'undefined')__e = core;
1149
886
  if(typeof __g != 'undefined')__g = global;
1150
- },{"./$.fw":19}],27:[function(require,module,exports){
887
+ },{"./$.fw":17}],25:[function(require,module,exports){
1151
888
  var $ = require('./$');
1152
889
  module.exports = function(object, el){
1153
890
  var O = $.toObject(object)
@@ -1157,13 +894,13 @@ module.exports = function(object, el){
1157
894
  , key;
1158
895
  while(length > index)if(O[key = keys[index++]] === el)return key;
1159
896
  };
1160
- },{"./$":26}],28:[function(require,module,exports){
897
+ },{"./$":24}],26:[function(require,module,exports){
1161
898
  var $redef = require('./$.redef');
1162
899
  module.exports = function(target, src){
1163
900
  for(var key in src)$redef(target, key, src[key]);
1164
901
  return target;
1165
902
  };
1166
- },{"./$.redef":31}],29:[function(require,module,exports){
903
+ },{"./$.redef":29}],27:[function(require,module,exports){
1167
904
  var $ = require('./$')
1168
905
  , assertObject = require('./$.assert').obj;
1169
906
  module.exports = function ownKeys(it){
@@ -1172,7 +909,7 @@ module.exports = function ownKeys(it){
1172
909
  , getSymbols = $.getSymbols;
1173
910
  return getSymbols ? keys.concat(getSymbols(it)) : keys;
1174
911
  };
1175
- },{"./$":26,"./$.assert":7}],30:[function(require,module,exports){
912
+ },{"./$":24,"./$.assert":5}],28:[function(require,module,exports){
1176
913
  'use strict';
1177
914
  var $ = require('./$')
1178
915
  , invoke = require('./$.invoke')
@@ -1196,7 +933,7 @@ module.exports = function(/* ...pargs */){
1196
933
  return invoke(fn, args, that);
1197
934
  };
1198
935
  };
1199
- },{"./$":26,"./$.assert":7,"./$.invoke":21}],31:[function(require,module,exports){
936
+ },{"./$":24,"./$.assert":5,"./$.invoke":19}],29:[function(require,module,exports){
1200
937
  var $ = require('./$')
1201
938
  , tpl = String({}.hasOwnProperty)
1202
939
  , SRC = require('./$.uid').safe('src')
@@ -1227,7 +964,7 @@ $.core.inspectSource = function(it){
1227
964
  };
1228
965
 
1229
966
  module.exports = $redef;
1230
- },{"./$":26,"./$.uid":42}],32:[function(require,module,exports){
967
+ },{"./$":24,"./$.uid":40}],30:[function(require,module,exports){
1231
968
  'use strict';
1232
969
  module.exports = function(regExp, replace, isStatic){
1233
970
  var replacer = replace === Object(replace) ? function(part){
@@ -1237,11 +974,11 @@ module.exports = function(regExp, replace, isStatic){
1237
974
  return String(isStatic ? it : this).replace(regExp, replacer);
1238
975
  };
1239
976
  };
1240
- },{}],33:[function(require,module,exports){
977
+ },{}],31:[function(require,module,exports){
1241
978
  module.exports = Object.is || function is(x, y){
1242
979
  return x === y ? x !== 0 || 1 / x === 1 / y : x != x && y != y;
1243
980
  };
1244
- },{}],34:[function(require,module,exports){
981
+ },{}],32:[function(require,module,exports){
1245
982
  // Works with __proto__ only. Old v8 can't work with null proto objects.
1246
983
  /* eslint-disable no-proto */
1247
984
  var $ = require('./$')
@@ -1267,14 +1004,14 @@ module.exports = {
1267
1004
  : undefined),
1268
1005
  check: check
1269
1006
  };
1270
- },{"./$":26,"./$.assert":7,"./$.ctx":14}],35:[function(require,module,exports){
1007
+ },{"./$":24,"./$.assert":5,"./$.ctx":12}],33:[function(require,module,exports){
1271
1008
  var $ = require('./$')
1272
1009
  , SHARED = '__core-js_shared__'
1273
1010
  , store = $.g[SHARED] || ($.g[SHARED] = {});
1274
1011
  module.exports = function(key){
1275
1012
  return store[key] || (store[key] = {});
1276
1013
  };
1277
- },{"./$":26}],36:[function(require,module,exports){
1014
+ },{"./$":24}],34:[function(require,module,exports){
1278
1015
  var $ = require('./$')
1279
1016
  , SPECIES = require('./$.wks')('species');
1280
1017
  module.exports = function(C){
@@ -1283,7 +1020,7 @@ module.exports = function(C){
1283
1020
  get: $.that
1284
1021
  });
1285
1022
  };
1286
- },{"./$":26,"./$.wks":44}],37:[function(require,module,exports){
1023
+ },{"./$":24,"./$.wks":42}],35:[function(require,module,exports){
1287
1024
  // true -> String#at
1288
1025
  // false -> String#codePointAt
1289
1026
  var $ = require('./$');
@@ -1301,7 +1038,7 @@ module.exports = function(TO_STRING){
1301
1038
  : TO_STRING ? s.slice(i, i + 2) : (a - 0xd800 << 10) + (b - 0xdc00) + 0x10000;
1302
1039
  };
1303
1040
  };
1304
- },{"./$":26}],38:[function(require,module,exports){
1041
+ },{"./$":24}],36:[function(require,module,exports){
1305
1042
  // http://wiki.ecmascript.org/doku.php?id=strawman:string_padding
1306
1043
  var $ = require('./$')
1307
1044
  , repeat = require('./$.string-repeat');
@@ -1334,7 +1071,7 @@ module.exports = function(that, minLength, fillChar, left){
1334
1071
  // 11. Return a String made from S, followed by sFillVal.
1335
1072
  return left ? sFillVal.concat(S) : S.concat(sFillVal);
1336
1073
  };
1337
- },{"./$":26,"./$.string-repeat":39}],39:[function(require,module,exports){
1074
+ },{"./$":24,"./$.string-repeat":37}],37:[function(require,module,exports){
1338
1075
  'use strict';
1339
1076
  var $ = require('./$');
1340
1077
 
@@ -1346,7 +1083,7 @@ module.exports = function repeat(count){
1346
1083
  for(;n > 0; (n >>>= 1) && (str += str))if(n & 1)res += str;
1347
1084
  return res;
1348
1085
  };
1349
- },{"./$":26}],40:[function(require,module,exports){
1086
+ },{"./$":24}],38:[function(require,module,exports){
1350
1087
  'use strict';
1351
1088
  var $ = require('./$')
1352
1089
  , ctx = require('./$.ctx')
@@ -1426,7 +1163,7 @@ module.exports = {
1426
1163
  set: setTask,
1427
1164
  clear: clearTask
1428
1165
  };
1429
- },{"./$":26,"./$.cof":9,"./$.ctx":14,"./$.dom-create":16,"./$.invoke":21}],41:[function(require,module,exports){
1166
+ },{"./$":24,"./$.cof":7,"./$.ctx":12,"./$.dom-create":14,"./$.invoke":19}],39:[function(require,module,exports){
1430
1167
  module.exports = function(exec){
1431
1168
  try {
1432
1169
  exec();
@@ -1435,28 +1172,28 @@ module.exports = function(exec){
1435
1172
  return true;
1436
1173
  }
1437
1174
  };
1438
- },{}],42:[function(require,module,exports){
1175
+ },{}],40:[function(require,module,exports){
1439
1176
  var sid = 0;
1440
1177
  function uid(key){
1441
1178
  return 'Symbol('.concat(key === undefined ? '' : key, ')_', (++sid + Math.random()).toString(36));
1442
1179
  }
1443
1180
  uid.safe = require('./$').g.Symbol || uid;
1444
1181
  module.exports = uid;
1445
- },{"./$":26}],43:[function(require,module,exports){
1182
+ },{"./$":24}],41:[function(require,module,exports){
1446
1183
  // 22.1.3.31 Array.prototype[@@unscopables]
1447
1184
  var UNSCOPABLES = require('./$.wks')('unscopables');
1448
1185
  if(!(UNSCOPABLES in []))require('./$').hide(Array.prototype, UNSCOPABLES, {});
1449
1186
  module.exports = function(key){
1450
1187
  [][UNSCOPABLES][key] = true;
1451
1188
  };
1452
- },{"./$":26,"./$.wks":44}],44:[function(require,module,exports){
1189
+ },{"./$":24,"./$.wks":42}],42:[function(require,module,exports){
1453
1190
  var global = require('./$').g
1454
1191
  , store = require('./$.shared')('wks');
1455
1192
  module.exports = function(name){
1456
1193
  return store[name] || (store[name] =
1457
1194
  global.Symbol && global.Symbol[name] || require('./$.uid').safe('Symbol.' + name));
1458
1195
  };
1459
- },{"./$":26,"./$.shared":35,"./$.uid":42}],45:[function(require,module,exports){
1196
+ },{"./$":24,"./$.shared":33,"./$.uid":40}],43:[function(require,module,exports){
1460
1197
  var $ = require('./$')
1461
1198
  , cel = require('./$.dom-create')
1462
1199
  , cof = require('./$.cof')
@@ -1777,7 +1514,7 @@ if(classof(function(){ return arguments; }()) == 'Object')cof.classof = function
1777
1514
  var tag = classof(it);
1778
1515
  return tag == 'Object' && isFunction(it.callee) ? 'Arguments' : tag;
1779
1516
  };
1780
- },{"./$":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){
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){
1781
1518
  'use strict';
1782
1519
  var $ = require('./$')
1783
1520
  , $def = require('./$.def')
@@ -1807,7 +1544,7 @@ $def($def.P, 'Array', {
1807
1544
  }
1808
1545
  });
1809
1546
  require('./$.unscope')('copyWithin');
1810
- },{"./$":26,"./$.def":15,"./$.unscope":43}],47:[function(require,module,exports){
1547
+ },{"./$":24,"./$.def":13,"./$.unscope":41}],45:[function(require,module,exports){
1811
1548
  'use strict';
1812
1549
  var $ = require('./$')
1813
1550
  , $def = require('./$.def')
@@ -1825,7 +1562,7 @@ $def($def.P, 'Array', {
1825
1562
  }
1826
1563
  });
1827
1564
  require('./$.unscope')('fill');
1828
- },{"./$":26,"./$.def":15,"./$.unscope":43}],48:[function(require,module,exports){
1565
+ },{"./$":24,"./$.def":13,"./$.unscope":41}],46:[function(require,module,exports){
1829
1566
  'use strict';
1830
1567
  // 22.1.3.9 Array.prototype.findIndex(predicate, thisArg = undefined)
1831
1568
  var KEY = 'findIndex'
@@ -1840,7 +1577,7 @@ $def($def.P + $def.F * forced, 'Array', {
1840
1577
  }
1841
1578
  });
1842
1579
  require('./$.unscope')(KEY);
1843
- },{"./$.array-methods":6,"./$.def":15,"./$.unscope":43}],49:[function(require,module,exports){
1580
+ },{"./$.array-methods":4,"./$.def":13,"./$.unscope":41}],47:[function(require,module,exports){
1844
1581
  'use strict';
1845
1582
  // 22.1.3.8 Array.prototype.find(predicate, thisArg = undefined)
1846
1583
  var KEY = 'find'
@@ -1855,7 +1592,7 @@ $def($def.P + $def.F * forced, 'Array', {
1855
1592
  }
1856
1593
  });
1857
1594
  require('./$.unscope')(KEY);
1858
- },{"./$.array-methods":6,"./$.def":15,"./$.unscope":43}],50:[function(require,module,exports){
1595
+ },{"./$.array-methods":4,"./$.def":13,"./$.unscope":41}],48:[function(require,module,exports){
1859
1596
  var $ = require('./$')
1860
1597
  , ctx = require('./$.ctx')
1861
1598
  , $def = require('./$.def')
@@ -1888,7 +1625,7 @@ $def($def.S + $def.F * !require('./$.iter-detect')(function(iter){ Array.from(it
1888
1625
  return result;
1889
1626
  }
1890
1627
  });
1891
- },{"./$":26,"./$.ctx":14,"./$.def":15,"./$.iter":25,"./$.iter-call":22,"./$.iter-detect":24}],51:[function(require,module,exports){
1628
+ },{"./$":24,"./$.ctx":12,"./$.def":13,"./$.iter":23,"./$.iter-call":20,"./$.iter-detect":22}],49:[function(require,module,exports){
1892
1629
  var $ = require('./$')
1893
1630
  , setUnscope = require('./$.unscope')
1894
1631
  , ITER = require('./$.uid').safe('iter')
@@ -1923,7 +1660,7 @@ Iterators.Arguments = Iterators.Array;
1923
1660
  setUnscope('keys');
1924
1661
  setUnscope('values');
1925
1662
  setUnscope('entries');
1926
- },{"./$":26,"./$.iter":25,"./$.iter-define":23,"./$.uid":42,"./$.unscope":43}],52:[function(require,module,exports){
1663
+ },{"./$":24,"./$.iter":23,"./$.iter-define":21,"./$.uid":40,"./$.unscope":41}],50:[function(require,module,exports){
1927
1664
  var $def = require('./$.def');
1928
1665
  $def($def.S, 'Array', {
1929
1666
  // 22.1.2.3 Array.of( ...items)
@@ -1937,9 +1674,9 @@ $def($def.S, 'Array', {
1937
1674
  return result;
1938
1675
  }
1939
1676
  });
1940
- },{"./$.def":15}],53:[function(require,module,exports){
1677
+ },{"./$.def":13}],51:[function(require,module,exports){
1941
1678
  require('./$.species')(Array);
1942
- },{"./$.species":36}],54:[function(require,module,exports){
1679
+ },{"./$.species":34}],52:[function(require,module,exports){
1943
1680
  var $ = require('./$')
1944
1681
  , HAS_INSTANCE = require('./$.wks')('hasInstance')
1945
1682
  , FunctionProto = Function.prototype;
@@ -1951,7 +1688,7 @@ if(!(HAS_INSTANCE in FunctionProto))$.setDesc(FunctionProto, HAS_INSTANCE, {valu
1951
1688
  while(O = $.getProto(O))if(this.prototype === O)return true;
1952
1689
  return false;
1953
1690
  }});
1954
- },{"./$":26,"./$.wks":44}],55:[function(require,module,exports){
1691
+ },{"./$":24,"./$.wks":42}],53:[function(require,module,exports){
1955
1692
  'use strict';
1956
1693
  var $ = require('./$')
1957
1694
  , NAME = 'name'
@@ -1970,7 +1707,7 @@ NAME in FunctionProto || $.FW && $.DESC && setDesc(FunctionProto, NAME, {
1970
1707
  $.has(this, NAME) || setDesc(this, NAME, $.desc(0, value));
1971
1708
  }
1972
1709
  });
1973
- },{"./$":26}],56:[function(require,module,exports){
1710
+ },{"./$":24}],54:[function(require,module,exports){
1974
1711
  'use strict';
1975
1712
  var strong = require('./$.collection-strong');
1976
1713
 
@@ -1988,7 +1725,7 @@ require('./$.collection')('Map', function(get){
1988
1725
  return strong.def(this, key === 0 ? 0 : key, value);
1989
1726
  }
1990
1727
  }, strong, true);
1991
- },{"./$.collection":13,"./$.collection-strong":10}],57:[function(require,module,exports){
1728
+ },{"./$.collection":11,"./$.collection-strong":8}],55:[function(require,module,exports){
1992
1729
  var Infinity = 1 / 0
1993
1730
  , $def = require('./$.def')
1994
1731
  , E = Math.E
@@ -2114,7 +1851,7 @@ $def($def.S, 'Math', {
2114
1851
  return (it > 0 ? floor : ceil)(it);
2115
1852
  }
2116
1853
  });
2117
- },{"./$.def":15}],58:[function(require,module,exports){
1854
+ },{"./$.def":13}],56:[function(require,module,exports){
2118
1855
  'use strict';
2119
1856
  var $ = require('./$')
2120
1857
  , isObject = $.isObject
@@ -2159,7 +1896,7 @@ if($.FW && !($Number('0o1') && $Number('0b1'))){
2159
1896
  proto.constructor = $Number;
2160
1897
  require('./$.redef')($.g, NUMBER, $Number);
2161
1898
  }
2162
- },{"./$":26,"./$.redef":31}],59:[function(require,module,exports){
1899
+ },{"./$":24,"./$.redef":29}],57:[function(require,module,exports){
2163
1900
  var $ = require('./$')
2164
1901
  , $def = require('./$.def')
2165
1902
  , abs = Math.abs
@@ -2195,21 +1932,21 @@ $def($def.S, 'Number', {
2195
1932
  // 20.1.2.13 Number.parseInt(string, radix)
2196
1933
  parseInt: parseInt
2197
1934
  });
2198
- },{"./$":26,"./$.def":15}],60:[function(require,module,exports){
1935
+ },{"./$":24,"./$.def":13}],58:[function(require,module,exports){
2199
1936
  // 19.1.3.1 Object.assign(target, source)
2200
1937
  var $def = require('./$.def');
2201
1938
  $def($def.S, 'Object', {assign: require('./$.assign')});
2202
- },{"./$.assign":8,"./$.def":15}],61:[function(require,module,exports){
1939
+ },{"./$.assign":6,"./$.def":13}],59:[function(require,module,exports){
2203
1940
  // 19.1.3.10 Object.is(value1, value2)
2204
1941
  var $def = require('./$.def');
2205
1942
  $def($def.S, 'Object', {
2206
1943
  is: require('./$.same')
2207
1944
  });
2208
- },{"./$.def":15,"./$.same":33}],62:[function(require,module,exports){
1945
+ },{"./$.def":13,"./$.same":31}],60:[function(require,module,exports){
2209
1946
  // 19.1.3.19 Object.setPrototypeOf(O, proto)
2210
1947
  var $def = require('./$.def');
2211
1948
  $def($def.S, 'Object', {setPrototypeOf: require('./$.set-proto').set});
2212
- },{"./$.def":15,"./$.set-proto":34}],63:[function(require,module,exports){
1949
+ },{"./$.def":13,"./$.set-proto":32}],61:[function(require,module,exports){
2213
1950
  var $ = require('./$')
2214
1951
  , $def = require('./$.def')
2215
1952
  , isObject = $.isObject
@@ -2246,7 +1983,7 @@ $.each.call(('freeze,seal,preventExtensions,isFrozen,isSealed,isExtensible,' +
2246
1983
  }
2247
1984
  $def($def.S + $def.F * forced, 'Object', method);
2248
1985
  });
2249
- },{"./$":26,"./$.def":15,"./$.get-names":20}],64:[function(require,module,exports){
1986
+ },{"./$":24,"./$.def":13,"./$.get-names":18}],62:[function(require,module,exports){
2250
1987
  'use strict';
2251
1988
  // 19.1.3.6 Object.prototype.toString()
2252
1989
  var cof = require('./$.cof')
@@ -2257,7 +1994,7 @@ if(require('./$').FW && cof(tmp) != 'z'){
2257
1994
  return '[object ' + cof.classof(this) + ']';
2258
1995
  }, true);
2259
1996
  }
2260
- },{"./$":26,"./$.cof":9,"./$.redef":31,"./$.wks":44}],65:[function(require,module,exports){
1997
+ },{"./$":24,"./$.cof":7,"./$.redef":29,"./$.wks":42}],63:[function(require,module,exports){
2261
1998
  'use strict';
2262
1999
  var $ = require('./$')
2263
2000
  , ctx = require('./$.ctx')
@@ -2519,7 +2256,7 @@ $def($def.S + $def.F * !(useNative && require('./$.iter-detect')(function(iter){
2519
2256
  });
2520
2257
  }
2521
2258
  });
2522
- },{"./$":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){
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){
2523
2260
  var $ = require('./$')
2524
2261
  , $def = require('./$.def')
2525
2262
  , setProto = require('./$.set-proto')
@@ -2665,7 +2402,7 @@ $def($def.S + $def.F * buggyEnumerate, 'Reflect', {
2665
2402
  });
2666
2403
 
2667
2404
  $def($def.S, 'Reflect', reflect);
2668
- },{"./$":26,"./$.assert":7,"./$.def":15,"./$.iter":25,"./$.own-keys":29,"./$.set-proto":34,"./$.uid":42,"./$.wks":44}],67:[function(require,module,exports){
2405
+ },{"./$":24,"./$.assert":5,"./$.def":13,"./$.iter":23,"./$.own-keys":27,"./$.set-proto":32,"./$.uid":40,"./$.wks":42}],65:[function(require,module,exports){
2669
2406
  var $ = require('./$')
2670
2407
  , cof = require('./$.cof')
2671
2408
  , $RegExp = $.g.RegExp
@@ -2709,7 +2446,7 @@ if($.FW && $.DESC){
2709
2446
  });
2710
2447
  }
2711
2448
  require('./$.species')($RegExp);
2712
- },{"./$":26,"./$.cof":9,"./$.redef":31,"./$.replacer":32,"./$.species":36}],68:[function(require,module,exports){
2449
+ },{"./$":24,"./$.cof":7,"./$.redef":29,"./$.replacer":30,"./$.species":34}],66:[function(require,module,exports){
2713
2450
  'use strict';
2714
2451
  var strong = require('./$.collection-strong');
2715
2452
 
@@ -2722,7 +2459,7 @@ require('./$.collection')('Set', function(get){
2722
2459
  return strong.def(this, value = value === 0 ? 0 : value, value);
2723
2460
  }
2724
2461
  }, strong);
2725
- },{"./$.collection":13,"./$.collection-strong":10}],69:[function(require,module,exports){
2462
+ },{"./$.collection":11,"./$.collection-strong":8}],67:[function(require,module,exports){
2726
2463
  'use strict';
2727
2464
  var $def = require('./$.def')
2728
2465
  , $at = require('./$.string-at')(false);
@@ -2732,7 +2469,7 @@ $def($def.P, 'String', {
2732
2469
  return $at(this, pos);
2733
2470
  }
2734
2471
  });
2735
- },{"./$.def":15,"./$.string-at":37}],70:[function(require,module,exports){
2472
+ },{"./$.def":13,"./$.string-at":35}],68:[function(require,module,exports){
2736
2473
  'use strict';
2737
2474
  var $ = require('./$')
2738
2475
  , cof = require('./$.cof')
@@ -2752,7 +2489,7 @@ $def($def.P + $def.F * !require('./$.throws')(function(){ 'q'.endsWith(/./); }),
2752
2489
  return that.slice(end - searchString.length, end) === searchString;
2753
2490
  }
2754
2491
  });
2755
- },{"./$":26,"./$.cof":9,"./$.def":15,"./$.throws":41}],71:[function(require,module,exports){
2492
+ },{"./$":24,"./$.cof":7,"./$.def":13,"./$.throws":39}],69:[function(require,module,exports){
2756
2493
  var $def = require('./$.def')
2757
2494
  , toIndex = require('./$').toIndex
2758
2495
  , fromCharCode = String.fromCharCode
@@ -2776,7 +2513,7 @@ $def($def.S + $def.F * (!!$fromCodePoint && $fromCodePoint.length != 1), 'String
2776
2513
  } return res.join('');
2777
2514
  }
2778
2515
  });
2779
- },{"./$":26,"./$.def":15}],72:[function(require,module,exports){
2516
+ },{"./$":24,"./$.def":13}],70:[function(require,module,exports){
2780
2517
  'use strict';
2781
2518
  var $ = require('./$')
2782
2519
  , cof = require('./$.cof')
@@ -2789,7 +2526,7 @@ $def($def.P, 'String', {
2789
2526
  return !!~String($.assertDefined(this)).indexOf(searchString, arguments[1]);
2790
2527
  }
2791
2528
  });
2792
- },{"./$":26,"./$.cof":9,"./$.def":15}],73:[function(require,module,exports){
2529
+ },{"./$":24,"./$.cof":7,"./$.def":13}],71:[function(require,module,exports){
2793
2530
  var set = require('./$').set
2794
2531
  , $at = require('./$.string-at')(true)
2795
2532
  , ITER = require('./$.uid').safe('iter')
@@ -2810,7 +2547,7 @@ require('./$.iter-define')(String, 'String', function(iterated){
2810
2547
  iter.i += point.length;
2811
2548
  return step(0, point);
2812
2549
  });
2813
- },{"./$":26,"./$.iter":25,"./$.iter-define":23,"./$.string-at":37,"./$.uid":42}],74:[function(require,module,exports){
2550
+ },{"./$":24,"./$.iter":23,"./$.iter-define":21,"./$.string-at":35,"./$.uid":40}],72:[function(require,module,exports){
2814
2551
  var $ = require('./$')
2815
2552
  , $def = require('./$.def');
2816
2553
 
@@ -2828,14 +2565,14 @@ $def($def.S, 'String', {
2828
2565
  } return res.join('');
2829
2566
  }
2830
2567
  });
2831
- },{"./$":26,"./$.def":15}],75:[function(require,module,exports){
2568
+ },{"./$":24,"./$.def":13}],73:[function(require,module,exports){
2832
2569
  var $def = require('./$.def');
2833
2570
 
2834
2571
  $def($def.P, 'String', {
2835
2572
  // 21.1.3.13 String.prototype.repeat(count)
2836
2573
  repeat: require('./$.string-repeat')
2837
2574
  });
2838
- },{"./$.def":15,"./$.string-repeat":39}],76:[function(require,module,exports){
2575
+ },{"./$.def":13,"./$.string-repeat":37}],74:[function(require,module,exports){
2839
2576
  'use strict';
2840
2577
  var $ = require('./$')
2841
2578
  , cof = require('./$.cof')
@@ -2852,7 +2589,7 @@ $def($def.P + $def.F * !require('./$.throws')(function(){ 'q'.startsWith(/./); }
2852
2589
  return that.slice(index, index + searchString.length) === searchString;
2853
2590
  }
2854
2591
  });
2855
- },{"./$":26,"./$.cof":9,"./$.def":15,"./$.throws":41}],77:[function(require,module,exports){
2592
+ },{"./$":24,"./$.cof":7,"./$.def":13,"./$.throws":39}],75:[function(require,module,exports){
2856
2593
  'use strict';
2857
2594
  // ECMAScript 6 symbols shim
2858
2595
  var $ = require('./$')
@@ -3043,7 +2780,7 @@ setTag($Symbol, 'Symbol');
3043
2780
  setTag(Math, 'Math', true);
3044
2781
  // 24.3.3 JSON[@@toStringTag]
3045
2782
  setTag($.g.JSON, 'JSON', true);
3046
- },{"./$":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){
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){
3047
2784
  'use strict';
3048
2785
  var $ = require('./$')
3049
2786
  , weak = require('./$.collection-weak')
@@ -3087,7 +2824,7 @@ if(new $WeakMap().set((Object.freeze || Object)(tmp), 7).get(tmp) != 7){
3087
2824
  });
3088
2825
  });
3089
2826
  }
3090
- },{"./$":26,"./$.collection":13,"./$.collection-weak":12,"./$.redef":31}],79:[function(require,module,exports){
2827
+ },{"./$":24,"./$.collection":11,"./$.collection-weak":10,"./$.redef":29}],77:[function(require,module,exports){
3091
2828
  'use strict';
3092
2829
  var weak = require('./$.collection-weak');
3093
2830
 
@@ -3100,7 +2837,7 @@ require('./$.collection')('WeakSet', function(get){
3100
2837
  return weak.def(this, value, true);
3101
2838
  }
3102
2839
  }, weak, false, true);
3103
- },{"./$.collection":13,"./$.collection-weak":12}],80:[function(require,module,exports){
2840
+ },{"./$.collection":11,"./$.collection-weak":10}],78:[function(require,module,exports){
3104
2841
  'use strict';
3105
2842
  var $def = require('./$.def')
3106
2843
  , $includes = require('./$.array-includes')(true);
@@ -3111,10 +2848,10 @@ $def($def.P, 'Array', {
3111
2848
  }
3112
2849
  });
3113
2850
  require('./$.unscope')('includes');
3114
- },{"./$.array-includes":5,"./$.def":15,"./$.unscope":43}],81:[function(require,module,exports){
2851
+ },{"./$.array-includes":3,"./$.def":13,"./$.unscope":41}],79:[function(require,module,exports){
3115
2852
  // https://github.com/DavidBruant/Map-Set.prototype.toJSON
3116
2853
  require('./$.collection-to-json')('Map');
3117
- },{"./$.collection-to-json":11}],82:[function(require,module,exports){
2854
+ },{"./$.collection-to-json":9}],80:[function(require,module,exports){
3118
2855
  // https://gist.github.com/WebReflection/9353781
3119
2856
  var $ = require('./$')
3120
2857
  , $def = require('./$.def')
@@ -3130,7 +2867,7 @@ $def($def.S, 'Object', {
3130
2867
  return result;
3131
2868
  }
3132
2869
  });
3133
- },{"./$":26,"./$.def":15,"./$.own-keys":29}],83:[function(require,module,exports){
2870
+ },{"./$":24,"./$.def":13,"./$.own-keys":27}],81:[function(require,module,exports){
3134
2871
  // http://goo.gl/XkBrjD
3135
2872
  var $ = require('./$')
3136
2873
  , $def = require('./$.def');
@@ -3151,17 +2888,17 @@ $def($def.S, 'Object', {
3151
2888
  values: createObjectToArray(false),
3152
2889
  entries: createObjectToArray(true)
3153
2890
  });
3154
- },{"./$":26,"./$.def":15}],84:[function(require,module,exports){
2891
+ },{"./$":24,"./$.def":13}],82:[function(require,module,exports){
3155
2892
  // https://github.com/benjamingr/RexExp.escape
3156
2893
  var $def = require('./$.def');
3157
2894
  $def($def.S, 'RegExp', {
3158
2895
  escape: require('./$.replacer')(/[\\^$*+?.()|[\]{}]/g, '\\$&', true)
3159
2896
  });
3160
2897
 
3161
- },{"./$.def":15,"./$.replacer":32}],85:[function(require,module,exports){
2898
+ },{"./$.def":13,"./$.replacer":30}],83:[function(require,module,exports){
3162
2899
  // https://github.com/DavidBruant/Map-Set.prototype.toJSON
3163
2900
  require('./$.collection-to-json')('Set');
3164
- },{"./$.collection-to-json":11}],86:[function(require,module,exports){
2901
+ },{"./$.collection-to-json":9}],84:[function(require,module,exports){
3165
2902
  // https://github.com/mathiasbynens/String.prototype.at
3166
2903
  'use strict';
3167
2904
  var $def = require('./$.def')
@@ -3171,7 +2908,7 @@ $def($def.P, 'String', {
3171
2908
  return $at(this, pos);
3172
2909
  }
3173
2910
  });
3174
- },{"./$.def":15,"./$.string-at":37}],87:[function(require,module,exports){
2911
+ },{"./$.def":13,"./$.string-at":35}],85:[function(require,module,exports){
3175
2912
  'use strict';
3176
2913
  var $def = require('./$.def')
3177
2914
  , $pad = require('./$.string-pad');
@@ -3180,7 +2917,7 @@ $def($def.P, 'String', {
3180
2917
  return $pad(this, n, arguments[1], true);
3181
2918
  }
3182
2919
  });
3183
- },{"./$.def":15,"./$.string-pad":38}],88:[function(require,module,exports){
2920
+ },{"./$.def":13,"./$.string-pad":36}],86:[function(require,module,exports){
3184
2921
  'use strict';
3185
2922
  var $def = require('./$.def')
3186
2923
  , $pad = require('./$.string-pad');
@@ -3189,7 +2926,7 @@ $def($def.P, 'String', {
3189
2926
  return $pad(this, n, arguments[1], false);
3190
2927
  }
3191
2928
  });
3192
- },{"./$.def":15,"./$.string-pad":38}],89:[function(require,module,exports){
2929
+ },{"./$.def":13,"./$.string-pad":36}],87:[function(require,module,exports){
3193
2930
  // JavaScript 1.6 / Strawman array statics shim
3194
2931
  var $ = require('./$')
3195
2932
  , $def = require('./$.def')
@@ -3206,7 +2943,7 @@ setStatics('indexOf,every,some,forEach,map,filter,find,findIndex,includes', 3);
3206
2943
  setStatics('join,slice,concat,push,splice,unshift,sort,lastIndexOf,' +
3207
2944
  'reduce,reduceRight,copyWithin,fill,turn');
3208
2945
  $def($def.S, 'Array', statics);
3209
- },{"./$":26,"./$.ctx":14,"./$.def":15}],90:[function(require,module,exports){
2946
+ },{"./$":24,"./$.ctx":12,"./$.def":13}],88:[function(require,module,exports){
3210
2947
  require('./es6.array.iterator');
3211
2948
  var $ = require('./$')
3212
2949
  , Iterators = require('./$.iter').Iterators
@@ -3221,14 +2958,14 @@ if($.FW){
3221
2958
  if(HTC && !(ITERATOR in HTCProto))$.hide(HTCProto, ITERATOR, ArrayValues);
3222
2959
  }
3223
2960
  Iterators.NodeList = Iterators.HTMLCollection = ArrayValues;
3224
- },{"./$":26,"./$.iter":25,"./$.wks":44,"./es6.array.iterator":51}],91:[function(require,module,exports){
2961
+ },{"./$":24,"./$.iter":23,"./$.wks":42,"./es6.array.iterator":49}],89:[function(require,module,exports){
3225
2962
  var $def = require('./$.def')
3226
2963
  , $task = require('./$.task');
3227
2964
  $def($def.G + $def.B, {
3228
2965
  setImmediate: $task.set,
3229
2966
  clearImmediate: $task.clear
3230
2967
  });
3231
- },{"./$.def":15,"./$.task":40}],92:[function(require,module,exports){
2968
+ },{"./$.def":13,"./$.task":38}],90:[function(require,module,exports){
3232
2969
  // ie9- setTimeout & setInterval additional parameters fix
3233
2970
  var $ = require('./$')
3234
2971
  , $def = require('./$.def')
@@ -3249,7 +2986,7 @@ $def($def.G + $def.B + $def.F * MSIE, {
3249
2986
  setTimeout: wrap($.g.setTimeout),
3250
2987
  setInterval: wrap($.g.setInterval)
3251
2988
  });
3252
- },{"./$":26,"./$.def":15,"./$.invoke":21,"./$.partial":30}],93:[function(require,module,exports){
2989
+ },{"./$":24,"./$.def":13,"./$.invoke":19,"./$.partial":28}],91:[function(require,module,exports){
3253
2990
  require('./modules/es5');
3254
2991
  require('./modules/es6.symbol');
3255
2992
  require('./modules/es6.object.assign');
@@ -3300,7 +3037,7 @@ require('./modules/web.immediate');
3300
3037
  require('./modules/web.dom.iterable');
3301
3038
  module.exports = require('./modules/$').core;
3302
3039
 
3303
- },{"./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){
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){
3304
3041
  (function (process,global){
3305
3042
  /**
3306
3043
  * Copyright (c) 2014, Facebook, Inc.
@@ -3955,4 +3692,4 @@ module.exports = require('./modules/$').core;
3955
3692
  );
3956
3693
 
3957
3694
  }).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
3958
- },{"_process":4}]},{},[1]);
3695
+ },{"_process":1}]},{},[2]);