babel-source 4.0.2 → 4.1.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 (4) hide show
  1. checksums.yaml +4 -4
  2. data/lib/babel.js +407 -393
  3. data/lib/babel/source.rb +2 -2
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: dddf42d3773c503433b3ed9fc1caaad836bdb056
4
- data.tar.gz: 4c1c64deccd80c9e06d3f5ee3361fb765e92e235
3
+ metadata.gz: 34c6279d857a07b650273ee8d3e16724ed40f276
4
+ data.tar.gz: 6d17ef5eabb2d404083e0fffd00278650c608eba
5
5
  SHA512:
6
- metadata.gz: 854a9b01ed62398b99596792f695c9cf72f5d773c2a851e06a754f6608e2700e22beb2d0fecae30ef2869feb138a40a848ed694c79fcf3553c5a4060e5e631a3
7
- data.tar.gz: 4a7427c81ba3c5f87e211cb31b976b7e2185aefa0946213f3dd89ee285cdae0e015c213a2b1995fcaeea16bed4ffc17b7da41cbfe87b5324a5aa29fa0bb992b1
6
+ metadata.gz: ee9222519376a03422bba6a603f2e82ae3beb1dfad28738ac947d7384aaaac30a88b98f5e42764f5c3491c10d80a417a37a9ef5830801fb3c4bdd734ee11c6cb
7
+ data.tar.gz: 4e76a25eae720e011c3838b61760de7b09696152050c82cd09e4fbfe302707411ae3195b630c6d75b5440a95df45ee83049386443ecb335a0406ac941fbe5eca
data/lib/babel.js CHANGED
@@ -87,15 +87,16 @@ if (global.addEventListener) {
87
87
  }
88
88
 
89
89
  }).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
90
- },{"../../../package":320,"../transformation":42}],2:[function(require,module,exports){
90
+ },{"../../../package":327,"../transformation":41}],2:[function(require,module,exports){
91
91
  "use strict";
92
92
 
93
93
  module.exports = Buffer;
94
94
 
95
+ var repeating = require("repeating");
96
+ var trimRight = require("trim-right");
95
97
  var isBoolean = require("lodash/lang/isBoolean");
96
98
  var includes = require("lodash/collection/includes");
97
99
  var isNumber = require("lodash/lang/isNumber");
98
- var util = require("../util");
99
100
 
100
101
  function Buffer(position, format) {
101
102
  this.position = position;
@@ -105,14 +106,14 @@ function Buffer(position, format) {
105
106
  }
106
107
 
107
108
  Buffer.prototype.get = function () {
108
- return util.trimRight(this.buf);
109
+ return trimRight(this.buf);
109
110
  };
110
111
 
111
112
  Buffer.prototype.getIndent = function () {
112
113
  if (this.format.compact || this.format.concise) {
113
114
  return "";
114
115
  } else {
115
- return util.repeat(this._indent, this.format.indent.style);
116
+ return repeating(this.format.indent.style, this._indent);
116
117
  }
117
118
  };
118
119
 
@@ -171,7 +172,7 @@ Buffer.prototype.newline = function (i, removeLast) {
171
172
 
172
173
  if (isNumber(i)) {
173
174
  if (this.endsWith("{\n")) i--;
174
- if (this.endsWith(util.repeat(i, "\n"))) return;
175
+ if (this.endsWith(repeating("\n", i > 0 ? i : 0))) return;
175
176
 
176
177
  while (i--) {
177
178
  this._newline(removeLast);
@@ -243,9 +244,9 @@ Buffer.prototype.endsWith = function (str) {
243
244
  return d >= 0 && this.buf.lastIndexOf(str) === d;
244
245
  };
245
246
 
246
- Buffer.prototype.isLast = function (cha, trimRight) {
247
+ Buffer.prototype.isLast = function (cha, shouldTrimRight) {
247
248
  var buf = this.buf;
248
- if (trimRight) buf = util.trimRight(buf);
249
+ if (shouldTrimRight) buf = trimRight(buf);
249
250
  var last = buf[buf.length - 1];
250
251
 
251
252
  if (Array.isArray(cha)) {
@@ -255,7 +256,7 @@ Buffer.prototype.isLast = function (cha, trimRight) {
255
256
  }
256
257
  };
257
258
 
258
- },{"../util":121,"lodash/collection/includes":197,"lodash/lang/isBoolean":269,"lodash/lang/isNumber":273}],3:[function(require,module,exports){
259
+ },{"lodash/collection/includes":199,"lodash/lang/isBoolean":271,"lodash/lang/isNumber":275,"repeating":310,"trim-right":326}],3:[function(require,module,exports){
259
260
  "use strict";
260
261
 
261
262
  exports.File = function (node, print) {
@@ -356,9 +357,9 @@ exports.ComprehensionExpression = function (node, print) {
356
357
  },{}],6:[function(require,module,exports){
357
358
  "use strict";
358
359
 
359
- var util = require("../../util");
360
- var t = require("../../types");
361
- var isNumber = require("lodash/lang/isNumber");
360
+ var isInteger = require("is-integer");
361
+ var isNumber = require("lodash/lang/isNumber");
362
+ var t = require("../../types");
362
363
 
363
364
  exports.UnaryExpression = function (node, print) {
364
365
  var hasSpace = /[a-z]$/.test(node.operator);
@@ -502,7 +503,7 @@ exports.MemberExpression = function (node, print) {
502
503
  this.push("]");
503
504
  } else {
504
505
  // 5..toFixed(2);
505
- if (t.isLiteral(obj) && util.isInteger(obj.value) && !SCIENTIFIC_NOTATION.test(obj.value.toString())) {
506
+ if (t.isLiteral(obj) && isInteger(obj.value) && !SCIENTIFIC_NOTATION.test(obj.value.toString())) {
506
507
  this.push(".");
507
508
  }
508
509
 
@@ -511,7 +512,7 @@ exports.MemberExpression = function (node, print) {
511
512
  }
512
513
  };
513
514
 
514
- },{"../../types":119,"../../util":121,"lodash/lang/isNumber":273}],7:[function(require,module,exports){
515
+ },{"../../types":118,"is-integer":185,"lodash/lang/isNumber":275}],7:[function(require,module,exports){
515
516
  "use strict";
516
517
 
517
518
  exports.AnyTypeAnnotation =
@@ -629,7 +630,7 @@ exports.JSXClosingElement = function (node, print) {
629
630
 
630
631
  exports.JSXEmptyExpression = function () {};
631
632
 
632
- },{"../../types":119,"lodash/collection/each":194}],9:[function(require,module,exports){
633
+ },{"../../types":118,"lodash/collection/each":196}],9:[function(require,module,exports){
633
634
  "use strict";
634
635
 
635
636
  var t = require("../../types");
@@ -699,7 +700,7 @@ exports.ArrowFunctionExpression = function (node, print) {
699
700
  print(node.body);
700
701
  };
701
702
 
702
- },{"../../types":119}],10:[function(require,module,exports){
703
+ },{"../../types":118}],10:[function(require,module,exports){
703
704
  "use strict";
704
705
 
705
706
  var t = require("../../types");
@@ -799,7 +800,7 @@ exports.ImportBatchSpecifier = function (node, print) {
799
800
  print(node.name);
800
801
  };
801
802
 
802
- },{"../../types":119,"lodash/collection/each":194}],11:[function(require,module,exports){
803
+ },{"../../types":118,"lodash/collection/each":196}],11:[function(require,module,exports){
803
804
  "use strict";
804
805
 
805
806
  var each = require("lodash/collection/each");
@@ -810,11 +811,11 @@ each(["BindMemberExpression", "BindFunctionExpression"], function (type) {
810
811
  };
811
812
  });
812
813
 
813
- },{"lodash/collection/each":194}],12:[function(require,module,exports){
814
+ },{"lodash/collection/each":196}],12:[function(require,module,exports){
814
815
  "use strict";
815
816
 
816
- var util = require("../../util");
817
- var t = require("../../types");
817
+ var repeating = require("repeating");
818
+ var t = require("../../types");
818
819
 
819
820
  exports.WithStatement = function (node, print) {
820
821
  this.keyword("with");
@@ -1003,7 +1004,7 @@ exports.VariableDeclaration = function (node, print, parent) {
1003
1004
 
1004
1005
  var sep = ",";
1005
1006
  if (hasInits) {
1006
- sep += "\n" + util.repeat(node.kind.length + 1);
1007
+ sep += "\n" + repeating(" ", node.kind.length + 1);
1007
1008
  } else {
1008
1009
  sep += " ";
1009
1010
  }
@@ -1033,7 +1034,7 @@ exports.VariableDeclarator = function (node, print) {
1033
1034
  }
1034
1035
  };
1035
1036
 
1036
- },{"../../types":119,"../../util":121}],13:[function(require,module,exports){
1037
+ },{"../../types":118,"repeating":310}],13:[function(require,module,exports){
1037
1038
  "use strict";
1038
1039
 
1039
1040
  var each = require("lodash/collection/each");
@@ -1067,7 +1068,7 @@ exports.TemplateLiteral = function (node, print) {
1067
1068
  this._push("`");
1068
1069
  };
1069
1070
 
1070
- },{"lodash/collection/each":194}],14:[function(require,module,exports){
1071
+ },{"lodash/collection/each":196}],14:[function(require,module,exports){
1071
1072
  "use strict";
1072
1073
 
1073
1074
  var each = require("lodash/collection/each");
@@ -1175,7 +1176,7 @@ exports.Literal = function (node) {
1175
1176
  }
1176
1177
  };
1177
1178
 
1178
- },{"lodash/collection/each":194}],15:[function(require,module,exports){
1179
+ },{"lodash/collection/each":196}],15:[function(require,module,exports){
1179
1180
  "use strict";
1180
1181
 
1181
1182
  module.exports = function (ast, opts, code) {
@@ -1187,13 +1188,13 @@ module.exports.CodeGenerator = CodeGenerator;
1187
1188
 
1188
1189
  var detectIndent = require("detect-indent");
1189
1190
  var Whitespace = require("./whitespace");
1191
+ var repeating = require("repeating");
1190
1192
  var SourceMap = require("./source-map");
1191
1193
  var Position = require("./position");
1192
1194
  var Buffer = require("./buffer");
1193
1195
  var extend = require("lodash/object/extend");
1194
1196
  var merge = require("lodash/object/merge");
1195
1197
  var each = require("lodash/collection/each");
1196
- var util = require("../util");
1197
1198
  var n = require("./node");
1198
1199
  var t = require("../types");
1199
1200
 
@@ -1522,7 +1523,7 @@ CodeGenerator.prototype._printComments = function (comments) {
1522
1523
  }
1523
1524
 
1524
1525
  var indent = Math.max(self.indentSize(), column);
1525
- val = val.replace(/\n/g, "\n" + util.repeat(indent));
1526
+ val = val.replace(/\n/g, "\n" + repeating(" ", indent));
1526
1527
  }
1527
1528
 
1528
1529
  if (column === 0) {
@@ -1538,7 +1539,7 @@ CodeGenerator.prototype._printComments = function (comments) {
1538
1539
  });
1539
1540
  };
1540
1541
 
1541
- },{"../types":119,"../util":121,"./buffer":2,"./generators/base":3,"./generators/classes":4,"./generators/comprehensions":5,"./generators/expressions":6,"./generators/flow":7,"./generators/jsx":8,"./generators/methods":9,"./generators/modules":10,"./generators/playground":11,"./generators/statements":12,"./generators/template-literals":13,"./generators/types":14,"./node":16,"./position":19,"./source-map":20,"./whitespace":21,"detect-indent":176,"lodash/collection/each":194,"lodash/object/extend":282,"lodash/object/merge":286}],16:[function(require,module,exports){
1542
+ },{"../types":118,"./buffer":2,"./generators/base":3,"./generators/classes":4,"./generators/comprehensions":5,"./generators/expressions":6,"./generators/flow":7,"./generators/jsx":8,"./generators/methods":9,"./generators/modules":10,"./generators/playground":11,"./generators/statements":12,"./generators/template-literals":13,"./generators/types":14,"./node":16,"./position":19,"./source-map":20,"./whitespace":21,"detect-indent":175,"lodash/collection/each":196,"lodash/object/extend":284,"lodash/object/merge":288,"repeating":310}],16:[function(require,module,exports){
1542
1543
  "use strict";
1543
1544
 
1544
1545
  module.exports = Node;
@@ -1652,7 +1653,7 @@ each(Node, function (fn, key) {
1652
1653
  };
1653
1654
  });
1654
1655
 
1655
- },{"../../types":119,"./parentheses":17,"./whitespace":18,"lodash/collection/each":194,"lodash/collection/some":200}],17:[function(require,module,exports){
1656
+ },{"../../types":118,"./parentheses":17,"./whitespace":18,"lodash/collection/each":196,"lodash/collection/some":202}],17:[function(require,module,exports){
1656
1657
  "use strict";
1657
1658
 
1658
1659
  var t = require("../../types");
@@ -1823,7 +1824,7 @@ exports.ConditionalExpression = function (node, parent) {
1823
1824
  return false;
1824
1825
  };
1825
1826
 
1826
- },{"../../types":119,"lodash/collection/each":194}],18:[function(require,module,exports){
1827
+ },{"../../types":118,"lodash/collection/each":196}],18:[function(require,module,exports){
1827
1828
  "use strict";
1828
1829
 
1829
1830
  var t = require("../../types");
@@ -1909,7 +1910,7 @@ each({
1909
1910
  });
1910
1911
  });
1911
1912
 
1912
- },{"../../types":119,"lodash/collection/each":194,"lodash/collection/map":198,"lodash/lang/isNumber":273}],19:[function(require,module,exports){
1913
+ },{"../../types":118,"lodash/collection/each":196,"lodash/collection/map":200,"lodash/lang/isNumber":275}],19:[function(require,module,exports){
1913
1914
  "use strict";
1914
1915
 
1915
1916
  module.exports = Position;
@@ -1998,7 +1999,7 @@ SourceMap.prototype.mark = function (node, type) {
1998
1999
  });
1999
2000
  };
2000
2001
 
2001
- },{"../types":119,"source-map":309}],21:[function(require,module,exports){
2002
+ },{"../types":118,"source-map":315}],21:[function(require,module,exports){
2002
2003
  "use strict";
2003
2004
 
2004
2005
  module.exports = Whitespace;
@@ -2113,26 +2114,12 @@ Whitespace.prototype.getNewlinesBetween = function (startToken, endToken) {
2113
2114
  return lines;
2114
2115
  };
2115
2116
 
2116
- },{"lodash/collection/sortBy":201}],22:[function(require,module,exports){
2117
- "use strict";
2118
-
2119
- module.exports = function cloneDeep(obj) {
2120
- var obj2 = {};
2121
- if (!obj) return obj2;
2122
-
2123
- for (var key in obj) {
2124
- obj2[key] = obj[key];
2125
- }
2126
-
2127
- return obj2;
2128
- };
2129
-
2130
- },{}],23:[function(require,module,exports){
2117
+ },{"lodash/collection/sortBy":203}],22:[function(require,module,exports){
2131
2118
  // syntax highlighting based on https://github.com/dominictarr/ansi-highlight by the fantastic Dominic Tarr
2132
2119
 
2133
- var tokenize = require("js-tokenizer");
2134
- var chalk = require("chalk");
2135
- var util = require("../util");
2120
+ var repeating = require("repeating");
2121
+ var tokenize = require("js-tokenizer");
2122
+ var chalk = require("chalk");
2136
2123
 
2137
2124
  var defs = {
2138
2125
  string1: "red",
@@ -2192,22 +2179,22 @@ module.exports = function (lines, lineNumber, colNumber) {
2192
2179
 
2193
2180
  var gutter = curr === lineNumber ? "> " : " ";
2194
2181
 
2195
- var sep = curr + util.repeat(width + 1);
2182
+ var sep = curr + repeating(" ", width + 1);
2196
2183
  gutter += sep + "| ";
2197
2184
 
2198
2185
  var str = gutter + line;
2199
2186
 
2200
2187
  if (colNumber && curr === lineNumber) {
2201
2188
  str += "\n";
2202
- str += util.repeat(gutter.length - 2);
2203
- str += "|" + util.repeat(colNumber) + "^";
2189
+ str += repeating(" ", gutter.length - 2);
2190
+ str += "|" + repeating(" ", colNumber) + "^";
2204
2191
  }
2205
2192
 
2206
2193
  return str;
2207
2194
  }).join("\n");
2208
2195
  };
2209
2196
 
2210
- },{"../util":121,"chalk":164,"js-tokenizer":186}],24:[function(require,module,exports){
2197
+ },{"chalk":163,"js-tokenizer":188,"repeating":310}],23:[function(require,module,exports){
2211
2198
  var t = require("../types");
2212
2199
 
2213
2200
  module.exports = function (ast, comments, tokens) {
@@ -2218,14 +2205,14 @@ module.exports = function (ast, comments, tokens) {
2218
2205
  }
2219
2206
  };
2220
2207
 
2221
- },{"../types":119}],25:[function(require,module,exports){
2208
+ },{"../types":118}],24:[function(require,module,exports){
2222
2209
  "use strict";
2223
2210
 
2224
2211
  module.exports = function () {
2225
2212
  return Object.create(null);
2226
2213
  };
2227
2214
 
2228
- },{}],26:[function(require,module,exports){
2215
+ },{}],25:[function(require,module,exports){
2229
2216
  var normalizeAst = require("./normalize-ast");
2230
2217
  var estraverse = require("estraverse");
2231
2218
  var codeFrame = require("./code-frame");
@@ -2276,7 +2263,7 @@ module.exports = function (opts, code, callback) {
2276
2263
  }
2277
2264
  };
2278
2265
 
2279
- },{"./code-frame":23,"./normalize-ast":24,"acorn-babel":122,"estraverse":179}],27:[function(require,module,exports){
2266
+ },{"./code-frame":22,"./normalize-ast":23,"acorn-babel":121,"estraverse":178}],26:[function(require,module,exports){
2280
2267
  "use strict";
2281
2268
 
2282
2269
  /**
@@ -2295,7 +2282,7 @@ module.exports = function toFastProperties(obj) {
2295
2282
  eval(obj);
2296
2283
  };
2297
2284
 
2298
- },{}],28:[function(require,module,exports){
2285
+ },{}],27:[function(require,module,exports){
2299
2286
  var util = require("util");
2300
2287
 
2301
2288
  exports.messages = {
@@ -2346,7 +2333,7 @@ exports.parseArgs = function (args) {
2346
2333
  });
2347
2334
  };
2348
2335
 
2349
- },{"util":163}],29:[function(require,module,exports){
2336
+ },{"util":162}],28:[function(require,module,exports){
2350
2337
  "use strict";
2351
2338
 
2352
2339
  var extend = require("lodash/object/extend");
@@ -2413,22 +2400,22 @@ def("BindFunctionExpression")
2413
2400
 
2414
2401
  types.finalize();
2415
2402
 
2416
- },{"./types":119,"ast-types":136,"estraverse":179,"lodash/object/extend":282}],30:[function(require,module,exports){
2403
+ },{"./types":118,"ast-types":135,"estraverse":178,"lodash/object/extend":284}],29:[function(require,module,exports){
2417
2404
  "use strict";
2418
2405
 
2419
2406
  module.exports = File;
2420
2407
 
2421
- var SHEBANG_REGEX = /^\#\!.*/;
2422
-
2423
2408
  var sourceMapToComment = require("source-map-to-comment");
2409
+ var shebangRegex = require("shebang-regex");
2424
2410
  var isFunction = require("lodash/lang/isFunction");
2425
2411
  var transform = require("./index");
2426
2412
  var generate = require("../generation");
2427
2413
  var defaults = require("lodash/object/defaults");
2428
2414
  var includes = require("lodash/collection/includes");
2429
- var clone = require("../helpers/clone");
2415
+ var assign = require("lodash/object/assign");
2430
2416
  var parse = require("../helpers/parse");
2431
2417
  var Scope = require("../traversal/scope");
2418
+ var slash = require("slash");
2432
2419
  var util = require("../util");
2433
2420
  var path = require("path");
2434
2421
  var each = require("lodash/collection/each");
@@ -2513,7 +2500,7 @@ File.validOptions = [
2513
2500
  ];
2514
2501
 
2515
2502
  File.prototype.normalizeOptions = function (opts) {
2516
- opts = clone(opts);
2503
+ opts = assign({}, opts);
2517
2504
 
2518
2505
  for (var key in opts) {
2519
2506
  if (key[0] !== "_" && File.validOptions.indexOf(key) < 0) {
@@ -2544,9 +2531,9 @@ File.prototype.normalizeOptions = function (opts) {
2544
2531
  });
2545
2532
 
2546
2533
  // normalize windows path separators to unix
2547
- opts.filename = util.normalisePathSeparator(opts.filename);
2534
+ opts.filename = slash(opts.filename);
2548
2535
  if (opts.sourceRoot) {
2549
- opts.sourceRoot = util.normalisePathSeparator(opts.sourceRoot);
2536
+ opts.sourceRoot = slash(opts.sourceRoot);
2550
2537
  }
2551
2538
 
2552
2539
  opts.basename = path.basename(opts.filename, path.extname(opts.filename));
@@ -2662,12 +2649,13 @@ File.prototype.getModuleFormatter = function (type) {
2662
2649
  };
2663
2650
 
2664
2651
  File.prototype.parseShebang = function (code) {
2665
- var shebangMatch = code.match(SHEBANG_REGEX);
2652
+ var shebangMatch = shebangRegex.exec(code);
2653
+
2666
2654
  if (shebangMatch) {
2667
2655
  this.shebang = shebangMatch[0];
2668
2656
 
2669
2657
  // remove shebang
2670
- code = code.replace(SHEBANG_REGEX, "");
2658
+ code = code.replace(shebangRegex, "");
2671
2659
  }
2672
2660
 
2673
2661
  return code;
@@ -2878,7 +2866,7 @@ File.prototype.generate = function () {
2878
2866
  return result;
2879
2867
  };
2880
2868
 
2881
- },{"../generation":15,"../helpers/clone":22,"../helpers/parse":26,"../traversal/scope":116,"../types":119,"../util":121,"./index":42,"lodash/collection/each":194,"lodash/collection/includes":197,"lodash/lang/isFunction":271,"lodash/object/defaults":281,"path":146,"source-map-to-comment":308}],31:[function(require,module,exports){
2869
+ },{"../generation":15,"../helpers/parse":25,"../traversal/scope":115,"../types":118,"../util":120,"./index":41,"lodash/collection/each":196,"lodash/collection/includes":199,"lodash/lang/isFunction":273,"lodash/object/assign":282,"lodash/object/defaults":283,"path":145,"shebang-regex":312,"slash":313,"source-map-to-comment":314}],30:[function(require,module,exports){
2882
2870
  "use strict";
2883
2871
 
2884
2872
  var explode = require("./explode-assignable-expression");
@@ -2926,7 +2914,7 @@ module.exports = function (exports, opts) {
2926
2914
  };
2927
2915
  };
2928
2916
 
2929
- },{"../../types":119,"./explode-assignable-expression":36}],32:[function(require,module,exports){
2917
+ },{"../../types":118,"./explode-assignable-expression":35}],31:[function(require,module,exports){
2930
2918
  "use strict";
2931
2919
 
2932
2920
  var t = require("../../types");
@@ -2953,7 +2941,7 @@ module.exports = function build(node, buildBody) {
2953
2941
  );
2954
2942
  };
2955
2943
 
2956
- },{"../../types":119}],33:[function(require,module,exports){
2944
+ },{"../../types":118}],32:[function(require,module,exports){
2957
2945
  "use strict";
2958
2946
 
2959
2947
  var explode = require("./explode-assignable-expression");
@@ -3002,7 +2990,7 @@ module.exports = function (exports, opts) {
3002
2990
  };
3003
2991
  };
3004
2992
 
3005
- },{"../../types":119,"./explode-assignable-expression":36}],34:[function(require,module,exports){
2993
+ },{"../../types":118,"./explode-assignable-expression":35}],33:[function(require,module,exports){
3006
2994
  "use strict";
3007
2995
 
3008
2996
  // Based upon the excellent jsx-transpiler by Ingvar Stepanyan (RReverser)
@@ -3288,7 +3276,7 @@ module.exports = function (exports, opts) {
3288
3276
  };
3289
3277
  };
3290
3278
 
3291
- },{"../../messages":28,"../../types":119,"./react":38,"esutils":183,"lodash/lang/isString":277}],35:[function(require,module,exports){
3279
+ },{"../../messages":27,"../../types":118,"./react":37,"esutils":182,"lodash/lang/isString":279}],34:[function(require,module,exports){
3292
3280
  var cloneDeep = require("lodash/lang/cloneDeep");
3293
3281
  var traverse = require("../../traversal");
3294
3282
  var clone = require("lodash/lang/clone");
@@ -3363,7 +3351,7 @@ exports.build = function (mutatorMap) {
3363
3351
  return objExpr;
3364
3352
  };
3365
3353
 
3366
- },{"../../traversal":114,"../../types":119,"lodash/collection/each":194,"lodash/lang/clone":265,"lodash/lang/cloneDeep":266,"lodash/object/has":283}],36:[function(require,module,exports){
3354
+ },{"../../traversal":113,"../../types":118,"lodash/collection/each":196,"lodash/lang/clone":267,"lodash/lang/cloneDeep":268,"lodash/object/has":285}],35:[function(require,module,exports){
3367
3355
  "use strict";
3368
3356
 
3369
3357
  var t = require("../../types");
@@ -3438,7 +3426,7 @@ module.exports = function (node, nodes, file, scope, allowedSingleIdent) {
3438
3426
  };
3439
3427
  };
3440
3428
 
3441
- },{"../../types":119}],37:[function(require,module,exports){
3429
+ },{"../../types":118}],36:[function(require,module,exports){
3442
3430
  "use strict";
3443
3431
 
3444
3432
  var util = require("../../util");
@@ -3493,7 +3481,7 @@ exports.property = function (node, file, scope) {
3493
3481
  }
3494
3482
  };
3495
3483
 
3496
- },{"../../types":119,"../../util":121}],38:[function(require,module,exports){
3484
+ },{"../../types":118,"../../util":120}],37:[function(require,module,exports){
3497
3485
  var t = require("../../types");
3498
3486
 
3499
3487
  var isCreateClassCallExpression = t.buildMatchMemberExpression("React.createClass");
@@ -3521,7 +3509,7 @@ exports.isCompatTag = function (tagName) {
3521
3509
  return tagName && /^[a-z]|\-/.test(tagName);
3522
3510
  };
3523
3511
 
3524
- },{"../../types":119}],39:[function(require,module,exports){
3512
+ },{"../../types":118}],38:[function(require,module,exports){
3525
3513
  "use strict";
3526
3514
 
3527
3515
  var t = require("../../types");
@@ -3563,7 +3551,7 @@ module.exports = function (node, callId, scope) {
3563
3551
  }
3564
3552
  };
3565
3553
 
3566
- },{"../../types":119}],40:[function(require,module,exports){
3554
+ },{"../../types":118}],39:[function(require,module,exports){
3567
3555
  "use strict";
3568
3556
 
3569
3557
  module.exports = ReplaceSupers;
@@ -3868,7 +3856,7 @@ var isSuper = function (node, parent) {
3868
3856
  return t.isIdentifier(node, { name: "super" }) && t.isReferenced(node, parent);
3869
3857
  };
3870
3858
 
3871
- },{"../../messages":28,"../../types":119}],41:[function(require,module,exports){
3859
+ },{"../../messages":27,"../../types":118}],40:[function(require,module,exports){
3872
3860
  "use strict";
3873
3861
 
3874
3862
  var t = require("../../types");
@@ -3891,7 +3879,7 @@ exports.wrap = function (node, callback) {
3891
3879
  }
3892
3880
  };
3893
3881
 
3894
- },{"../../types":119}],42:[function(require,module,exports){
3882
+ },{"../../types":118}],41:[function(require,module,exports){
3895
3883
  "use strict";
3896
3884
 
3897
3885
  module.exports = transform;
@@ -3966,7 +3954,7 @@ each(rawTransformers, function (transformer, key) {
3966
3954
  transform.transformers[key] = new Transformer(key, transformer);
3967
3955
  });
3968
3956
 
3969
- },{"../helpers/normalize-ast":24,"../helpers/object":25,"./file":30,"./modules":51,"./transformer":56,"./transformers":82,"./transformers/deprecated":57,"lodash/collection/each":194}],43:[function(require,module,exports){
3957
+ },{"../helpers/normalize-ast":23,"../helpers/object":24,"./file":29,"./modules":50,"./transformer":55,"./transformers":81,"./transformers/deprecated":56,"lodash/collection/each":196}],42:[function(require,module,exports){
3970
3958
  "use strict";
3971
3959
 
3972
3960
  module.exports = DefaultFormatter;
@@ -4261,7 +4249,7 @@ DefaultFormatter.prototype.exportDeclaration = function (node, nodes) {
4261
4249
  }
4262
4250
  };
4263
4251
 
4264
- },{"../../helpers/object":25,"../../messages":28,"../../types":119,"../../util":121,"lodash/object/extend":282}],44:[function(require,module,exports){
4252
+ },{"../../helpers/object":24,"../../messages":27,"../../types":118,"../../util":120,"lodash/object/extend":284}],43:[function(require,module,exports){
4265
4253
  "use strict";
4266
4254
 
4267
4255
  var util = require("../../util");
@@ -4277,12 +4265,12 @@ module.exports = function (Parent) {
4277
4265
  return Constructor;
4278
4266
  };
4279
4267
 
4280
- },{"../../util":121}],45:[function(require,module,exports){
4268
+ },{"../../util":120}],44:[function(require,module,exports){
4281
4269
  "use strict";
4282
4270
 
4283
4271
  module.exports = require("./_strict")(require("./amd"));
4284
4272
 
4285
- },{"./_strict":44,"./amd":46}],46:[function(require,module,exports){
4273
+ },{"./_strict":43,"./amd":45}],45:[function(require,module,exports){
4286
4274
  "use strict";
4287
4275
 
4288
4276
  module.exports = AMDFormatter;
@@ -4392,7 +4380,7 @@ AMDFormatter.prototype.exportDeclaration = function (node) {
4392
4380
  CommonFormatter.prototype.exportDeclaration.apply(this, arguments);
4393
4381
  };
4394
4382
 
4395
- },{"../../types":119,"../../util":121,"./_default":43,"./common":49,"lodash/collection/includes":197,"lodash/object/values":287}],47:[function(require,module,exports){
4383
+ },{"../../types":118,"../../util":120,"./_default":42,"./common":48,"lodash/collection/includes":199,"lodash/object/values":289}],46:[function(require,module,exports){
4396
4384
  "use strict";
4397
4385
 
4398
4386
  module.exports = CommonStandardFormatter;
@@ -4407,12 +4395,12 @@ function CommonStandardFormatter() {
4407
4395
 
4408
4396
  util.inherits(CommonStandardFormatter, CommonStrictFormatter);
4409
4397
 
4410
- },{"../../util":121,"./common-strict":48}],48:[function(require,module,exports){
4398
+ },{"../../util":120,"./common-strict":47}],47:[function(require,module,exports){
4411
4399
  "use strict";
4412
4400
 
4413
4401
  module.exports = require("./_strict")(require("./common"));
4414
4402
 
4415
- },{"./_strict":44,"./common":49}],49:[function(require,module,exports){
4403
+ },{"./_strict":43,"./common":48}],48:[function(require,module,exports){
4416
4404
  "use strict";
4417
4405
 
4418
4406
  module.exports = CommonJSFormatter;
@@ -4518,7 +4506,7 @@ CommonJSFormatter.prototype._getExternalReference = function (node, nodes) {
4518
4506
  }
4519
4507
  };
4520
4508
 
4521
- },{"../../types":119,"../../util":121,"./_default":43,"lodash/collection/includes":197}],50:[function(require,module,exports){
4509
+ },{"../../types":118,"../../util":120,"./_default":42,"lodash/collection/includes":199}],49:[function(require,module,exports){
4522
4510
  "use strict";
4523
4511
 
4524
4512
  module.exports = IgnoreFormatter;
@@ -4540,7 +4528,7 @@ IgnoreFormatter.prototype.exportSpecifier = function () {
4540
4528
 
4541
4529
  };
4542
4530
 
4543
- },{"../../types":119}],51:[function(require,module,exports){
4531
+ },{"../../types":118}],50:[function(require,module,exports){
4544
4532
  module.exports = {
4545
4533
  commonStandard: require("./common-standard"),
4546
4534
  commonStrict: require("./common-strict"),
@@ -4553,7 +4541,7 @@ module.exports = {
4553
4541
  umd: require("./umd")
4554
4542
  };
4555
4543
 
4556
- },{"./amd":46,"./amd-strict":45,"./common":49,"./common-standard":47,"./common-strict":48,"./ignore":50,"./system":52,"./umd":54,"./umd-strict":53}],52:[function(require,module,exports){
4544
+ },{"./amd":45,"./amd-strict":44,"./common":48,"./common-standard":46,"./common-strict":47,"./ignore":49,"./system":51,"./umd":53,"./umd-strict":52}],51:[function(require,module,exports){
4557
4545
  "use strict";
4558
4546
 
4559
4547
  module.exports = SystemFormatter;
@@ -4756,12 +4744,12 @@ SystemFormatter.prototype.transform = function (program) {
4756
4744
  program.body = [runner];
4757
4745
  };
4758
4746
 
4759
- },{"../../types":119,"../../util":121,"../helpers/use-strict":41,"./_default":43,"./amd":46,"lodash/array/last":190,"lodash/collection/each":194,"lodash/collection/map":198}],53:[function(require,module,exports){
4747
+ },{"../../types":118,"../../util":120,"../helpers/use-strict":40,"./_default":42,"./amd":45,"lodash/array/last":192,"lodash/collection/each":196,"lodash/collection/map":200}],52:[function(require,module,exports){
4760
4748
  "use strict";
4761
4749
 
4762
4750
  module.exports = require("./_strict")(require("./umd"));
4763
4751
 
4764
- },{"./_strict":44,"./umd":54}],54:[function(require,module,exports){
4752
+ },{"./_strict":43,"./umd":53}],53:[function(require,module,exports){
4765
4753
  "use strict";
4766
4754
 
4767
4755
  module.exports = UMDFormatter;
@@ -4836,7 +4824,7 @@ UMDFormatter.prototype.transform = function (program) {
4836
4824
  program.body = [t.expressionStatement(call)];
4837
4825
  };
4838
4826
 
4839
- },{"../../types":119,"../../util":121,"./amd":46,"lodash/object/values":287}],55:[function(require,module,exports){
4827
+ },{"../../types":118,"../../util":120,"./amd":45,"lodash/object/values":289}],54:[function(require,module,exports){
4840
4828
  module.exports = TransformerPass;
4841
4829
 
4842
4830
  var includes = require("lodash/collection/includes");
@@ -4901,7 +4889,7 @@ TransformerPass.prototype.transform = function () {
4901
4889
  file.scope.traverse(file.ast, this.handlers, file);
4902
4890
  };
4903
4891
 
4904
- },{"lodash/collection/includes":197}],56:[function(require,module,exports){
4892
+ },{"lodash/collection/includes":199}],55:[function(require,module,exports){
4905
4893
  "use strict";
4906
4894
 
4907
4895
  module.exports = Transformer;
@@ -4910,7 +4898,7 @@ var TransformerPass = require("./transformer-pass");
4910
4898
  var isFunction = require("lodash/lang/isFunction");
4911
4899
  var traverse = require("../traversal");
4912
4900
  var isObject = require("lodash/lang/isObject");
4913
- var clone = require("../helpers/clone");
4901
+ var assign = require("lodash/object/assign");
4914
4902
  var each = require("lodash/collection/each");
4915
4903
 
4916
4904
  /**
@@ -4920,7 +4908,7 @@ var each = require("lodash/collection/each");
4920
4908
  */
4921
4909
 
4922
4910
  function Transformer(key, transformer, opts) {
4923
- transformer = clone(transformer);
4911
+ transformer = assign({}, transformer);
4924
4912
 
4925
4913
  var take = function (key) {
4926
4914
  var val = transformer[key];
@@ -4978,10 +4966,10 @@ Transformer.prototype.buildPass = function (file) {
4978
4966
  return new TransformerPass(file, this);
4979
4967
  };
4980
4968
 
4981
- },{"../helpers/clone":22,"../traversal":114,"./transformer-pass":55,"lodash/collection/each":194,"lodash/lang/isFunction":271,"lodash/lang/isObject":274}],57:[function(require,module,exports){
4969
+ },{"../traversal":113,"./transformer-pass":54,"lodash/collection/each":196,"lodash/lang/isFunction":273,"lodash/lang/isObject":276,"lodash/object/assign":282}],56:[function(require,module,exports){
4982
4970
  module.exports={}
4983
4971
 
4984
- },{}],58:[function(require,module,exports){
4972
+ },{}],57:[function(require,module,exports){
4985
4973
  "use strict";
4986
4974
 
4987
4975
  var t = require("../../../types");
@@ -4999,7 +4987,7 @@ exports.MemberExpression = function (node) {
4999
4987
  }
5000
4988
  };
5001
4989
 
5002
- },{"../../../types":119}],59:[function(require,module,exports){
4990
+ },{"../../../types":118}],58:[function(require,module,exports){
5003
4991
  "use strict";
5004
4992
 
5005
4993
  var t = require("../../../types");
@@ -5016,7 +5004,7 @@ exports.Property = function (node) {
5016
5004
  }
5017
5005
  };
5018
5006
 
5019
- },{"../../../types":119}],60:[function(require,module,exports){
5007
+ },{"../../../types":118}],59:[function(require,module,exports){
5020
5008
  "use strict";
5021
5009
 
5022
5010
  var defineMap = require("../../helpers/define-map");
@@ -5048,7 +5036,7 @@ exports.ObjectExpression = function (node) {
5048
5036
  );
5049
5037
  };
5050
5038
 
5051
- },{"../../../types":119,"../../helpers/define-map":35}],61:[function(require,module,exports){
5039
+ },{"../../../types":118,"../../helpers/define-map":34}],60:[function(require,module,exports){
5052
5040
  "use strict";
5053
5041
 
5054
5042
  var t = require("../../../types");
@@ -5065,7 +5053,7 @@ exports.ArrowFunctionExpression = function (node) {
5065
5053
  return node;
5066
5054
  };
5067
5055
 
5068
- },{"../../../types":119}],62:[function(require,module,exports){
5056
+ },{"../../../types":118}],61:[function(require,module,exports){
5069
5057
  "use strict";
5070
5058
 
5071
5059
  var t = require("../../../types");
@@ -5112,7 +5100,7 @@ exports.BlockStatement = function (node, parent, scope, file) {
5112
5100
  scope.traverse(node, visitor, state);
5113
5101
  };
5114
5102
 
5115
- },{"../../../types":119}],63:[function(require,module,exports){
5103
+ },{"../../../types":118}],62:[function(require,module,exports){
5116
5104
  "use strict";
5117
5105
 
5118
5106
  var traverse = require("../../../traversal");
@@ -5673,7 +5661,7 @@ BlockScoping.prototype.buildHas = function (ret, call) {
5673
5661
  }
5674
5662
  };
5675
5663
 
5676
- },{"../../../helpers/object":25,"../../../traversal":114,"../../../types":119,"../../../util":121,"lodash/object/extend":282,"lodash/object/values":287}],64:[function(require,module,exports){
5664
+ },{"../../../helpers/object":24,"../../../traversal":113,"../../../types":118,"../../../util":120,"lodash/object/extend":284,"lodash/object/values":289}],63:[function(require,module,exports){
5677
5665
  "use strict";
5678
5666
 
5679
5667
  var ReplaceSupers = require("../../helpers/replace-supers");
@@ -5971,7 +5959,7 @@ ClassTransformer.prototype.pushConstructor = function (method) {
5971
5959
  construct.body.body = construct.body.body.concat(fn.body.body);
5972
5960
  };
5973
5961
 
5974
- },{"../../../messages":28,"../../../types":119,"../../../util":121,"../../helpers/define-map":35,"../../helpers/name-method":37,"../../helpers/replace-supers":40}],65:[function(require,module,exports){
5962
+ },{"../../../messages":27,"../../../types":118,"../../../util":120,"../../helpers/define-map":34,"../../helpers/name-method":36,"../../helpers/replace-supers":39}],64:[function(require,module,exports){
5975
5963
  "use strict";
5976
5964
 
5977
5965
  var messages = require("../../../messages");
@@ -6023,7 +6011,7 @@ exports.VariableDeclaration = function (node) {
6023
6011
  if (node.kind === "const") node.kind = "let";
6024
6012
  };
6025
6013
 
6026
- },{"../../../messages":28,"../../../types":119}],66:[function(require,module,exports){
6014
+ },{"../../../messages":27,"../../../types":118}],65:[function(require,module,exports){
6027
6015
  "use strict";
6028
6016
 
6029
6017
  var messages = require("../../../messages");
@@ -6428,7 +6416,7 @@ exports.VariableDeclaration = function (node, parent, scope, file) {
6428
6416
  return nodes;
6429
6417
  };
6430
6418
 
6431
- },{"../../../messages":28,"../../../types":119}],67:[function(require,module,exports){
6419
+ },{"../../../messages":27,"../../../types":118}],66:[function(require,module,exports){
6432
6420
  "use strict";
6433
6421
 
6434
6422
  var messages = require("../../../messages");
@@ -6536,7 +6524,7 @@ var spec = function (node, parent, scope, file) {
6536
6524
  };
6537
6525
  };
6538
6526
 
6539
- },{"../../../messages":28,"../../../types":119,"../../../util":121}],68:[function(require,module,exports){
6527
+ },{"../../../messages":27,"../../../types":118,"../../../util":120}],67:[function(require,module,exports){
6540
6528
  "use strict";
6541
6529
 
6542
6530
  var t = require("../../../types");
@@ -6590,7 +6578,7 @@ exports.ExportDeclaration = function (node, parent, scope, file) {
6590
6578
  return nodes;
6591
6579
  };
6592
6580
 
6593
- },{"../../../types":119,"../internal/modules":88}],69:[function(require,module,exports){
6581
+ },{"../../../types":118,"../internal/modules":87}],68:[function(require,module,exports){
6594
6582
  "use strict";
6595
6583
 
6596
6584
  var ReplaceSupers = require("../../helpers/replace-supers");
@@ -6626,7 +6614,7 @@ exports.Property = function (node, parent, scope, file) {
6626
6614
  }
6627
6615
  };
6628
6616
 
6629
- },{"../../../types":119,"../../helpers/replace-supers":40}],70:[function(require,module,exports){
6617
+ },{"../../../types":118,"../../helpers/replace-supers":39}],69:[function(require,module,exports){
6630
6618
  "use strict";
6631
6619
 
6632
6620
  var util = require("../../../util");
@@ -6732,7 +6720,7 @@ exports.Function = function (node, parent, scope, file) {
6732
6720
  }
6733
6721
  };
6734
6722
 
6735
- },{"../../../types":119,"../../../util":121}],71:[function(require,module,exports){
6723
+ },{"../../../types":118,"../../../util":120}],70:[function(require,module,exports){
6736
6724
  "use strict";
6737
6725
 
6738
6726
  var util = require("../../../util");
@@ -6810,7 +6798,7 @@ exports.Function = function (node, parent, scope) {
6810
6798
  node.body.body.unshift(loop);
6811
6799
  };
6812
6800
 
6813
- },{"../../../types":119,"../../../util":121}],72:[function(require,module,exports){
6801
+ },{"../../../types":118,"../../../util":120}],71:[function(require,module,exports){
6814
6802
  "use strict";
6815
6803
 
6816
6804
  var t = require("../../../types");
@@ -6941,7 +6929,7 @@ var spec = function (node, body, objId, initProps, file) {
6941
6929
  }
6942
6930
  };
6943
6931
 
6944
- },{"../../../types":119}],73:[function(require,module,exports){
6932
+ },{"../../../types":118}],72:[function(require,module,exports){
6945
6933
  "use strict";
6946
6934
 
6947
6935
  var nameMethod = require("../../helpers/name-method");
@@ -6964,7 +6952,7 @@ exports.Property = function (node, parent, scope, file) {
6964
6952
  }
6965
6953
  };
6966
6954
 
6967
- },{"../../../types":119,"../../helpers/name-method":37,"lodash/lang/clone":265}],74:[function(require,module,exports){
6955
+ },{"../../../types":118,"../../helpers/name-method":36,"lodash/lang/clone":267}],73:[function(require,module,exports){
6968
6956
  "use strict";
6969
6957
 
6970
6958
  var includes = require("lodash/collection/includes");
@@ -7099,7 +7087,7 @@ exports.NewExpression = function (node, parent, scope, file) {
7099
7087
  }
7100
7088
  };
7101
7089
 
7102
- },{"../../../types":119,"lodash/collection/includes":197}],75:[function(require,module,exports){
7090
+ },{"../../../types":118,"lodash/collection/includes":199}],74:[function(require,module,exports){
7103
7091
  "use strict";
7104
7092
 
7105
7093
  var reduceRight = require("lodash/collection/reduceRight");
@@ -7468,7 +7456,7 @@ exports.Function = function (node, parent, scope, file) {
7468
7456
  tailCall.run();
7469
7457
  };
7470
7458
 
7471
- },{"../../../messages":28,"../../../types":119,"../../../util":121,"lodash/array/flatten":189,"lodash/collection/map":198,"lodash/collection/reduceRight":199}],76:[function(require,module,exports){
7459
+ },{"../../../messages":27,"../../../types":118,"../../../util":120,"lodash/array/flatten":191,"lodash/collection/map":200,"lodash/collection/reduceRight":201}],75:[function(require,module,exports){
7472
7460
  "use strict";
7473
7461
 
7474
7462
  var t = require("../../../types");
@@ -7536,7 +7524,7 @@ exports.TemplateLiteral = function (node) {
7536
7524
  }
7537
7525
  };
7538
7526
 
7539
- },{"../../../types":119}],77:[function(require,module,exports){
7527
+ },{"../../../types":118}],76:[function(require,module,exports){
7540
7528
  "use strict";
7541
7529
 
7542
7530
  var rewritePattern = require("regexpu/rewrite-pattern");
@@ -7559,7 +7547,7 @@ exports.Literal = function (node) {
7559
7547
  regex.flags = flags.join("");
7560
7548
  };
7561
7549
 
7562
- },{"../../../types":119,"lodash/array/pull":191,"regexpu/rewrite-pattern":307}],78:[function(require,module,exports){
7550
+ },{"../../../types":118,"lodash/array/pull":193,"regexpu/rewrite-pattern":309}],77:[function(require,module,exports){
7563
7551
  "use strict";
7564
7552
 
7565
7553
  // https://github.com/zenparsing/es-abstract-refs
@@ -7674,7 +7662,7 @@ exports.PrivateDeclaration = function (node) {
7674
7662
  }));
7675
7663
  };
7676
7664
 
7677
- },{"../../../types":119,"../../../util":121}],79:[function(require,module,exports){
7665
+ },{"../../../types":118,"../../../util":120}],78:[function(require,module,exports){
7678
7666
  "use strict";
7679
7667
 
7680
7668
  var buildComprehension = require("../../helpers/build-comprehension");
@@ -7731,7 +7719,7 @@ var array = function (node, parent, scope, file) {
7731
7719
  return container;
7732
7720
  };
7733
7721
 
7734
- },{"../../../traversal":114,"../../../types":119,"../../../util":121,"../../helpers/build-comprehension":32}],80:[function(require,module,exports){
7722
+ },{"../../../traversal":113,"../../../types":118,"../../../util":120,"../../helpers/build-comprehension":31}],79:[function(require,module,exports){
7735
7723
  "use strict";
7736
7724
 
7737
7725
  // https://github.com/rwaldron/exponentiation-operator
@@ -7751,7 +7739,7 @@ build(exports, {
7751
7739
  }
7752
7740
  });
7753
7741
 
7754
- },{"../../../types":119,"../../helpers/build-binary-assignment-operator-transformer":31}],81:[function(require,module,exports){
7742
+ },{"../../../types":118,"../../helpers/build-binary-assignment-operator-transformer":30}],80:[function(require,module,exports){
7755
7743
  "use strict";
7756
7744
 
7757
7745
  // https://github.com/sebmarkbage/ecmascript-rest-spread
@@ -7804,7 +7792,7 @@ exports.ObjectExpression = function (node, parent, scope, file) {
7804
7792
  return t.callExpression(file.addHelper("extends"), args);
7805
7793
  };
7806
7794
 
7807
- },{"../../../types":119}],82:[function(require,module,exports){
7795
+ },{"../../../types":118}],81:[function(require,module,exports){
7808
7796
  module.exports = {
7809
7797
  useStrict: require("./other/use-strict"),
7810
7798
 
@@ -7912,7 +7900,7 @@ module.exports = {
7912
7900
  _cleanUp: require("./internal/cleanup")
7913
7901
  };
7914
7902
 
7915
- },{"./es3/member-expression-literals":58,"./es3/property-literals":59,"./es5/properties.mutators":60,"./es6/arrow-functions":61,"./es6/block-scoping":63,"./es6/block-scoping-tdz":62,"./es6/classes":64,"./es6/constants":65,"./es6/destructuring":66,"./es6/for-of":67,"./es6/modules":68,"./es6/object-super":69,"./es6/parameters.default":70,"./es6/parameters.rest":71,"./es6/properties.computed":72,"./es6/properties.shorthand":73,"./es6/spread":74,"./es6/tail-call":75,"./es6/template-literals":76,"./es6/unicode-regex":77,"./es7/abstract-references":78,"./es7/comprehensions":79,"./es7/exponentiation-operator":80,"./es7/object-rest-spread":81,"./internal/alias-functions":83,"./internal/block-hoist":84,"./internal/cleanup":85,"./internal/declarations":86,"./internal/module-formatter":87,"./internal/modules":88,"./minification/dead-code-elimination":89,"./minification/remove-console-calls":90,"./minification/remove-debugger":91,"./minification/rename-local-variables":92,"./other/async-to-generator":93,"./other/bluebird-coroutines":94,"./other/flow":95,"./other/react":97,"./other/react-compat":96,"./other/regenerator":98,"./other/self-contained":99,"./other/use-strict":100,"./playground/mallet-operator":101,"./playground/memoization-operator":102,"./playground/method-binding":103,"./playground/object-getter-memoization":104,"./spec/block-scoped-functions":105,"./spec/proto-to-assign":106,"./spec/typeof-symbol":107,"./spec/undefined-to-void":108,"./validation/no-for-in-of-assignment":109,"./validation/react":110,"./validation/setters":111,"./validation/undeclared-variable-check":112}],83:[function(require,module,exports){
7903
+ },{"./es3/member-expression-literals":57,"./es3/property-literals":58,"./es5/properties.mutators":59,"./es6/arrow-functions":60,"./es6/block-scoping":62,"./es6/block-scoping-tdz":61,"./es6/classes":63,"./es6/constants":64,"./es6/destructuring":65,"./es6/for-of":66,"./es6/modules":67,"./es6/object-super":68,"./es6/parameters.default":69,"./es6/parameters.rest":70,"./es6/properties.computed":71,"./es6/properties.shorthand":72,"./es6/spread":73,"./es6/tail-call":74,"./es6/template-literals":75,"./es6/unicode-regex":76,"./es7/abstract-references":77,"./es7/comprehensions":78,"./es7/exponentiation-operator":79,"./es7/object-rest-spread":80,"./internal/alias-functions":82,"./internal/block-hoist":83,"./internal/cleanup":84,"./internal/declarations":85,"./internal/module-formatter":86,"./internal/modules":87,"./minification/dead-code-elimination":88,"./minification/remove-console-calls":89,"./minification/remove-debugger":90,"./minification/rename-local-variables":91,"./other/async-to-generator":92,"./other/bluebird-coroutines":93,"./other/flow":94,"./other/react":96,"./other/react-compat":95,"./other/regenerator":97,"./other/self-contained":98,"./other/use-strict":99,"./playground/mallet-operator":100,"./playground/memoization-operator":101,"./playground/method-binding":102,"./playground/object-getter-memoization":103,"./spec/block-scoped-functions":104,"./spec/proto-to-assign":105,"./spec/typeof-symbol":106,"./spec/undefined-to-void":107,"./validation/no-for-in-of-assignment":108,"./validation/react":109,"./validation/setters":110,"./validation/undeclared-variable-check":111}],82:[function(require,module,exports){
7916
7904
  "use strict";
7917
7905
 
7918
7906
  var t = require("../../../types");
@@ -8006,7 +7994,7 @@ exports.FunctionExpression = function (node, parent, scope) {
8006
7994
  }, node, scope);
8007
7995
  };
8008
7996
 
8009
- },{"../../../types":119}],84:[function(require,module,exports){
7997
+ },{"../../../types":118}],83:[function(require,module,exports){
8010
7998
  "use strict";
8011
7999
 
8012
8000
  var useStrict = require("../../helpers/use-strict");
@@ -8044,14 +8032,14 @@ exports.Program = {
8044
8032
  }
8045
8033
  };
8046
8034
 
8047
- },{"../../helpers/use-strict":41,"lodash/array/flatten":189,"lodash/collection/groupBy":196,"lodash/object/values":287}],85:[function(require,module,exports){
8035
+ },{"../../helpers/use-strict":40,"lodash/array/flatten":191,"lodash/collection/groupBy":198,"lodash/object/values":289}],84:[function(require,module,exports){
8048
8036
  exports.SequenceExpression = function (node) {
8049
8037
  if (node.expressions.length === 1) {
8050
8038
  return node.expressions[0];
8051
8039
  }
8052
8040
  };
8053
8041
 
8054
- },{}],86:[function(require,module,exports){
8042
+ },{}],85:[function(require,module,exports){
8055
8043
  "use strict";
8056
8044
 
8057
8045
  var useStrict = require("../../helpers/use-strict");
@@ -8089,7 +8077,7 @@ exports.Program = function (node, parent, scope, file) {
8089
8077
  node._declarations = null;
8090
8078
  };
8091
8079
 
8092
- },{"../../../types":119,"../../helpers/use-strict":41}],87:[function(require,module,exports){
8080
+ },{"../../../types":118,"../../helpers/use-strict":40}],86:[function(require,module,exports){
8093
8081
  "use strict";
8094
8082
 
8095
8083
  var useStrict = require("../../helpers/use-strict");
@@ -8106,7 +8094,7 @@ exports.Program = function (program, parent, scope, file) {
8106
8094
  }
8107
8095
  };
8108
8096
 
8109
- },{"../../helpers/use-strict":41}],88:[function(require,module,exports){
8097
+ },{"../../helpers/use-strict":40}],87:[function(require,module,exports){
8110
8098
  "use strict";
8111
8099
 
8112
8100
  // in this transformer we have to split up classes and function declarations
@@ -8161,7 +8149,7 @@ exports.ExportDeclaration = function (node, parent, scope) {
8161
8149
  }
8162
8150
  };
8163
8151
 
8164
- },{"../../../types":119}],89:[function(require,module,exports){
8152
+ },{"../../../types":118}],88:[function(require,module,exports){
8165
8153
  var t = require("../../../types");
8166
8154
 
8167
8155
  exports.optional = true;
@@ -8239,7 +8227,7 @@ exports.IfStatement = {
8239
8227
  }
8240
8228
  };
8241
8229
 
8242
- },{"../../../types":119}],90:[function(require,module,exports){
8230
+ },{"../../../types":118}],89:[function(require,module,exports){
8243
8231
  "use strict";
8244
8232
 
8245
8233
  var t = require("../../../types");
@@ -8258,7 +8246,7 @@ exports.CallExpression = function (node, parent) {
8258
8246
  }
8259
8247
  };
8260
8248
 
8261
- },{"../../../types":119}],91:[function(require,module,exports){
8249
+ },{"../../../types":118}],90:[function(require,module,exports){
8262
8250
  var t = require("../../../types");
8263
8251
 
8264
8252
  exports.optional = true;
@@ -8269,7 +8257,7 @@ exports.ExpressionStatement = function (node) {
8269
8257
  }
8270
8258
  };
8271
8259
 
8272
- },{"../../../types":119}],92:[function(require,module,exports){
8260
+ },{"../../../types":118}],91:[function(require,module,exports){
8273
8261
  //var t = require("../../../types");
8274
8262
 
8275
8263
  exports.optional = true;
@@ -8280,7 +8268,7 @@ exports.Scopable = function () {
8280
8268
  //}
8281
8269
  };
8282
8270
 
8283
- },{}],93:[function(require,module,exports){
8271
+ },{}],92:[function(require,module,exports){
8284
8272
  "use strict";
8285
8273
 
8286
8274
  var remapAsyncToGenerator = require("../../helpers/remap-async-to-generator");
@@ -8296,7 +8284,7 @@ exports.Function = function (node, parent, scope, file) {
8296
8284
  return remapAsyncToGenerator(node, file.addHelper("async-to-generator"), scope);
8297
8285
  };
8298
8286
 
8299
- },{"../../helpers/remap-async-to-generator":39,"./bluebird-coroutines":94}],94:[function(require,module,exports){
8287
+ },{"../../helpers/remap-async-to-generator":38,"./bluebird-coroutines":93}],93:[function(require,module,exports){
8300
8288
  "use strict";
8301
8289
 
8302
8290
  var remapAsyncToGenerator = require("../../helpers/remap-async-to-generator");
@@ -8319,7 +8307,7 @@ exports.Function = function (node, parent, scope, file) {
8319
8307
  );
8320
8308
  };
8321
8309
 
8322
- },{"../../../types":119,"../../helpers/remap-async-to-generator":39}],95:[function(require,module,exports){
8310
+ },{"../../../types":118,"../../helpers/remap-async-to-generator":38}],94:[function(require,module,exports){
8323
8311
  var t = require("../../../types");
8324
8312
 
8325
8313
  exports.TypeCastExpression = function (node) {
@@ -8334,7 +8322,7 @@ exports.ExportDeclaration = function (node) {
8334
8322
  if (t.isTypeAlias(node.declaration)) this.remove();
8335
8323
  };
8336
8324
 
8337
- },{"../../../types":119}],96:[function(require,module,exports){
8325
+ },{"../../../types":118}],95:[function(require,module,exports){
8338
8326
  "use strict";
8339
8327
 
8340
8328
  var react = require("../../helpers/react");
@@ -8365,7 +8353,7 @@ require("../../helpers/build-react-transformer")(exports, {
8365
8353
  }
8366
8354
  });
8367
8355
 
8368
- },{"../../../types":119,"../../helpers/build-react-transformer":34,"../../helpers/react":38}],97:[function(require,module,exports){
8356
+ },{"../../../types":118,"../../helpers/build-react-transformer":33,"../../helpers/react":37}],96:[function(require,module,exports){
8369
8357
  "use strict";
8370
8358
 
8371
8359
  var react = require("../../helpers/react");
@@ -8387,7 +8375,7 @@ require("../../helpers/build-react-transformer")(exports, {
8387
8375
  }
8388
8376
  });
8389
8377
 
8390
- },{"../../../types":119,"../../helpers/build-react-transformer":34,"../../helpers/react":38}],98:[function(require,module,exports){
8378
+ },{"../../../types":118,"../../helpers/build-react-transformer":33,"../../helpers/react":37}],97:[function(require,module,exports){
8391
8379
  "use strict";
8392
8380
 
8393
8381
  var regenerator = require("regenerator-babel");
@@ -8404,7 +8392,7 @@ exports.Program = {
8404
8392
  }
8405
8393
  };
8406
8394
 
8407
- },{"../../../types":119,"regenerator-babel":299}],99:[function(require,module,exports){
8395
+ },{"../../../types":118,"regenerator-babel":301}],98:[function(require,module,exports){
8408
8396
  "use strict";
8409
8397
 
8410
8398
  var includes = require("lodash/collection/includes");
@@ -8508,7 +8496,7 @@ exports.Identifier = function (node, parent, scope, file) {
8508
8496
  }
8509
8497
  };
8510
8498
 
8511
- },{"../../../types":119,"../../../util":121,"core-js/library":172,"lodash/collection/includes":197,"lodash/object/has":283}],100:[function(require,module,exports){
8499
+ },{"../../../types":118,"../../../util":120,"core-js/library":171,"lodash/collection/includes":199,"lodash/object/has":285}],99:[function(require,module,exports){
8512
8500
  "use strict";
8513
8501
 
8514
8502
  var useStrict = require("../../helpers/use-strict");
@@ -8529,7 +8517,7 @@ exports.ThisExpression = function () {
8529
8517
  return t.identifier("undefined");
8530
8518
  };
8531
8519
 
8532
- },{"../../../types":119,"../../helpers/use-strict":41}],101:[function(require,module,exports){
8520
+ },{"../../../types":118,"../../helpers/use-strict":40}],100:[function(require,module,exports){
8533
8521
  "use strict";
8534
8522
 
8535
8523
  var messages = require("../../../messages");
@@ -8555,7 +8543,7 @@ build(exports, {
8555
8543
  }
8556
8544
  });
8557
8545
 
8558
- },{"../../../messages":28,"../../../types":119,"../../helpers/build-conditional-assignment-operator-transformer":33}],102:[function(require,module,exports){
8546
+ },{"../../../messages":27,"../../../types":118,"../../helpers/build-conditional-assignment-operator-transformer":32}],101:[function(require,module,exports){
8559
8547
  "use strict";
8560
8548
 
8561
8549
  var build = require("../../helpers/build-conditional-assignment-operator-transformer");
@@ -8582,7 +8570,7 @@ build(exports, {
8582
8570
  }
8583
8571
  });
8584
8572
 
8585
- },{"../../../types":119,"../../helpers/build-conditional-assignment-operator-transformer":33}],103:[function(require,module,exports){
8573
+ },{"../../../types":118,"../../helpers/build-conditional-assignment-operator-transformer":32}],102:[function(require,module,exports){
8586
8574
  "use strict";
8587
8575
 
8588
8576
  var t = require("../../../types");
@@ -8629,7 +8617,7 @@ exports.BindFunctionExpression = function (node, parent, scope) {
8629
8617
  ]);
8630
8618
  };
8631
8619
 
8632
- },{"../../../types":119}],104:[function(require,module,exports){
8620
+ },{"../../../types":118}],103:[function(require,module,exports){
8633
8621
  "use strict";
8634
8622
 
8635
8623
  var t = require("../../../types");
@@ -8674,7 +8662,7 @@ exports.MethodDefinition = function (node, parent, scope, file) {
8674
8662
  return node;
8675
8663
  };
8676
8664
 
8677
- },{"../../../types":119}],105:[function(require,module,exports){
8665
+ },{"../../../types":118}],104:[function(require,module,exports){
8678
8666
  "use strict";
8679
8667
 
8680
8668
  var t = require("../../../types");
@@ -8704,7 +8692,7 @@ exports.BlockStatement = function (node, parent, scope, file) {
8704
8692
  }
8705
8693
  };
8706
8694
 
8707
- },{"../../../types":119}],106:[function(require,module,exports){
8695
+ },{"../../../types":118}],105:[function(require,module,exports){
8708
8696
  "use strict";
8709
8697
 
8710
8698
  var t = require("../../../types");
@@ -8768,7 +8756,7 @@ exports.ObjectExpression = function (node, parent, scope, file) {
8768
8756
  }
8769
8757
  };
8770
8758
 
8771
- },{"../../../types":119,"lodash/array/pull":191}],107:[function(require,module,exports){
8759
+ },{"../../../types":118,"lodash/array/pull":193}],106:[function(require,module,exports){
8772
8760
  "use strict";
8773
8761
 
8774
8762
  var t = require("../../../types");
@@ -8793,7 +8781,7 @@ exports.UnaryExpression = function (node, parent, scope, file) {
8793
8781
  }
8794
8782
  };
8795
8783
 
8796
- },{"../../../types":119}],108:[function(require,module,exports){
8784
+ },{"../../../types":118}],107:[function(require,module,exports){
8797
8785
  "use strict";
8798
8786
 
8799
8787
  var t = require("../../../types");
@@ -8806,7 +8794,7 @@ exports.Identifier = function (node, parent) {
8806
8794
  }
8807
8795
  };
8808
8796
 
8809
- },{"../../../types":119}],109:[function(require,module,exports){
8797
+ },{"../../../types":118}],108:[function(require,module,exports){
8810
8798
  "use strict";
8811
8799
 
8812
8800
  var messages = require("../../../messages");
@@ -8823,7 +8811,7 @@ exports.ForOfStatement = function (node, parent, scope, file) {
8823
8811
  }
8824
8812
  };
8825
8813
 
8826
- },{"../../../messages":28,"../../../types":119}],110:[function(require,module,exports){
8814
+ },{"../../../messages":27,"../../../types":118}],109:[function(require,module,exports){
8827
8815
  var messages = require("../../../messages");
8828
8816
  var t = require("../../../types");
8829
8817
 
@@ -8850,7 +8838,7 @@ exports.ExportDeclaration = function (node, parent, scope, file) {
8850
8838
  check(node.source, file);
8851
8839
  };
8852
8840
 
8853
- },{"../../../messages":28,"../../../types":119}],111:[function(require,module,exports){
8841
+ },{"../../../messages":27,"../../../types":118}],110:[function(require,module,exports){
8854
8842
  "use strict";
8855
8843
 
8856
8844
  var messages = require("../../../messages");
@@ -8866,7 +8854,7 @@ exports.Property = function (node, parent, scope, file) {
8866
8854
  }
8867
8855
  };
8868
8856
 
8869
- },{"../../../messages":28}],112:[function(require,module,exports){
8857
+ },{"../../../messages":27}],111:[function(require,module,exports){
8870
8858
  "use strict";
8871
8859
 
8872
8860
  var levenshtein = require("leven");
@@ -8908,7 +8896,7 @@ exports.Identifier = function (node, parent, scope, file) {
8908
8896
  throw file.errorWithNode(node, msg, ReferenceError);
8909
8897
  };
8910
8898
 
8911
- },{"../../../messages":28,"../../../types":119,"leven":187}],113:[function(require,module,exports){
8899
+ },{"../../../messages":27,"../../../types":118,"leven":189}],112:[function(require,module,exports){
8912
8900
  "use strict";
8913
8901
 
8914
8902
  module.exports = TraversalContext;
@@ -8964,7 +8952,7 @@ TraversalContext.prototype.visit = function (node, key) {
8964
8952
  }
8965
8953
  };
8966
8954
 
8967
- },{"./path":115,"lodash/array/compact":188,"lodash/array/flatten":189}],114:[function(require,module,exports){
8955
+ },{"./path":114,"lodash/array/compact":190,"lodash/array/flatten":191}],113:[function(require,module,exports){
8968
8956
  "use strict";
8969
8957
 
8970
8958
  module.exports = traverse;
@@ -9087,7 +9075,7 @@ traverse.hasType = function (tree, scope, type, blacklistTypes) {
9087
9075
  return state.has;
9088
9076
  };
9089
9077
 
9090
- },{"../types":119,"./context":113,"lodash/collection/includes":197}],115:[function(require,module,exports){
9078
+ },{"../types":118,"./context":112,"lodash/collection/includes":199}],114:[function(require,module,exports){
9091
9079
  "use strict";
9092
9080
 
9093
9081
  module.exports = TraversalPath;
@@ -9245,7 +9233,7 @@ TraversalPath.prototype.visit = function () {
9245
9233
  return this.shouldStop;
9246
9234
  };
9247
9235
 
9248
- },{"../types":119,"./index":114,"./scope":116,"lodash/collection/includes":197}],116:[function(require,module,exports){
9236
+ },{"../types":118,"./index":113,"./scope":115,"lodash/collection/includes":199}],115:[function(require,module,exports){
9249
9237
  "use strict";
9250
9238
 
9251
9239
  module.exports = Scope;
@@ -9893,7 +9881,7 @@ Scope.prototype.parentHasBinding = function (name) {
9893
9881
  return this.parent && this.parent.hasBinding(name);
9894
9882
  };
9895
9883
 
9896
- },{"../helpers/object":25,"../messages":28,"../types":119,"./index":114,"globals":185,"lodash/array/flatten":189,"lodash/collection/each":194,"lodash/collection/includes":197,"lodash/object/defaults":281,"lodash/object/extend":282}],117:[function(require,module,exports){
9884
+ },{"../helpers/object":24,"../messages":27,"../types":118,"./index":113,"globals":184,"lodash/array/flatten":191,"lodash/collection/each":196,"lodash/collection/includes":199,"lodash/object/defaults":283,"lodash/object/extend":284}],116:[function(require,module,exports){
9897
9885
  module.exports={
9898
9886
  "ExpressionStatement": ["Statement"],
9899
9887
  "BreakStatement": ["Statement"],
@@ -9980,7 +9968,7 @@ module.exports={
9980
9968
  "JSXSpreadAttribute": ["JSX"]
9981
9969
  }
9982
9970
 
9983
- },{}],118:[function(require,module,exports){
9971
+ },{}],117:[function(require,module,exports){
9984
9972
  module.exports={
9985
9973
  "ArrayExpression": {
9986
9974
  "elements": null
@@ -10150,7 +10138,7 @@ module.exports={
10150
10138
  }
10151
10139
  }
10152
10140
 
10153
- },{}],119:[function(require,module,exports){
10141
+ },{}],118:[function(require,module,exports){
10154
10142
  "use strict";
10155
10143
 
10156
10144
  var toFastProperties = require("../helpers/to-fast-properties");
@@ -10957,7 +10945,7 @@ t.isScope = function (node, parent) {
10957
10945
  toFastProperties(t);
10958
10946
  toFastProperties(t.VISITOR_KEYS);
10959
10947
 
10960
- },{"../helpers/object":25,"../helpers/to-fast-properties":27,"./alias-keys":117,"./builder-keys":118,"./visitor-keys":120,"esutils":183,"lodash/array/compact":188,"lodash/array/uniq":192,"lodash/collection/each":194,"lodash/lang/isString":277}],120:[function(require,module,exports){
10948
+ },{"../helpers/object":24,"../helpers/to-fast-properties":26,"./alias-keys":116,"./builder-keys":117,"./visitor-keys":119,"esutils":182,"lodash/array/compact":190,"lodash/array/uniq":194,"lodash/collection/each":196,"lodash/lang/isString":279}],119:[function(require,module,exports){
10961
10949
  module.exports={
10962
10950
  "ArrayExpression": ["elements"],
10963
10951
  "ArrayPattern": ["elements"],
@@ -11075,7 +11063,7 @@ module.exports={
11075
11063
  "JSXSpreadAttribute": ["argument"]
11076
11064
  }
11077
11065
 
11078
- },{}],121:[function(require,module,exports){
11066
+ },{}],120:[function(require,module,exports){
11079
11067
  (function (__dirname){
11080
11068
  "use strict";
11081
11069
 
@@ -11084,7 +11072,6 @@ require("./patch");
11084
11072
  var cloneDeep = require("lodash/lang/cloneDeep");
11085
11073
  var contains = require("lodash/collection/contains");
11086
11074
  var traverse = require("./traversal");
11087
- var isNumber = require("lodash/lang/isNumber");
11088
11075
  var isString = require("lodash/lang/isString");
11089
11076
  var isRegExp = require("lodash/lang/isRegExp");
11090
11077
  var isEmpty = require("lodash/lang/isEmpty");
@@ -11109,14 +11096,6 @@ exports.canCompile = function (filename, altExts) {
11109
11096
 
11110
11097
  exports.canCompile.EXTENSIONS = [".js", ".jsx", ".es6", ".es"];
11111
11098
 
11112
- exports.normalisePathSeparator = function (filename) {
11113
- return filename.replace(/\\/g, "/");
11114
- };
11115
-
11116
- exports.isInteger = function (i) {
11117
- return isNumber(i) && i % 1 === 0;
11118
- };
11119
-
11120
11099
  exports.resolve = function (loc) {
11121
11100
  try {
11122
11101
  return require.resolve(loc);
@@ -11125,10 +11104,6 @@ exports.resolve = function (loc) {
11125
11104
  }
11126
11105
  };
11127
11106
 
11128
- exports.trimRight = function (str) {
11129
- return str.replace(/[\n\s]+$/g, "");
11130
- };
11131
-
11132
11107
  exports.list = function (val) {
11133
11108
  return val ? val.split(",") : [];
11134
11109
  };
@@ -11148,13 +11123,6 @@ exports.arrayify = function (val) {
11148
11123
  throw new TypeError("illegal type for arrayify");
11149
11124
  };
11150
11125
 
11151
- exports.isAbsolute = function (loc) {
11152
- if (!loc) return false;
11153
- if (loc[0] === "/") return true; // unix
11154
- if (loc[1] === ":" && loc[2] === "\\") return true; // windows
11155
- return false;
11156
- };
11157
-
11158
11126
  var templateVisitor = {
11159
11127
  enter: function (node, parent, scope, nodes) {
11160
11128
  if (t.isExpressionStatement(node)) {
@@ -11193,17 +11161,6 @@ exports.template = function (name, nodes, keepExpression) {
11193
11161
  }
11194
11162
  };
11195
11163
 
11196
- exports.repeat = function (width, cha) {
11197
- cha = cha || " ";
11198
-
11199
- var result = "";
11200
- for (var i = 0; i < width; i++) {
11201
- result += cha;
11202
- }
11203
-
11204
- return result;
11205
- };
11206
-
11207
11164
  exports.parseTemplate = function (loc, code) {
11208
11165
  var ast = parse({ filename: loc }, code).program;
11209
11166
  return traverse.removeProperties(ast);
@@ -11241,7 +11198,7 @@ try {
11241
11198
  }
11242
11199
 
11243
11200
  }).call(this,"/lib/babel")
11244
- },{"../../templates.json":321,"./helpers/parse":26,"./patch":29,"./traversal":114,"./types":119,"debug/node":174,"fs":137,"lodash/collection/contains":193,"lodash/collection/each":194,"lodash/lang/cloneDeep":266,"lodash/lang/isEmpty":270,"lodash/lang/isNumber":273,"lodash/lang/isRegExp":276,"lodash/lang/isString":277,"lodash/object/has":283,"path":146,"util":163}],122:[function(require,module,exports){
11201
+ },{"../../templates.json":328,"./helpers/parse":25,"./patch":28,"./traversal":113,"./types":118,"debug/node":173,"fs":136,"lodash/collection/contains":195,"lodash/collection/each":196,"lodash/lang/cloneDeep":268,"lodash/lang/isEmpty":272,"lodash/lang/isRegExp":278,"lodash/lang/isString":279,"lodash/object/has":285,"path":145,"util":162}],121:[function(require,module,exports){
11245
11202
  // Acorn is a tiny, fast JavaScript parser written in JavaScript.
11246
11203
  //
11247
11204
  // Acorn was written by Marijn Haverbeke and various contributors and
@@ -16041,7 +15998,7 @@ switch(str.length){case 5:switch(str){case "break":case "catch":case "throw":cas
16041
15998
  }
16042
15999
  });
16043
16000
 
16044
- },{}],123:[function(require,module,exports){
16001
+ },{}],122:[function(require,module,exports){
16045
16002
  var types = require("../lib/types");
16046
16003
  var Type = types.Type;
16047
16004
  var def = Type.def;
@@ -16424,7 +16381,7 @@ def("Line")
16424
16381
  .bases("Comment")
16425
16382
  .build("value", /*optional:*/ "leading", "trailing");
16426
16383
 
16427
- },{"../lib/shared":134,"../lib/types":135}],124:[function(require,module,exports){
16384
+ },{"../lib/shared":133,"../lib/types":134}],123:[function(require,module,exports){
16428
16385
  require("./core");
16429
16386
  var types = require("../lib/types");
16430
16387
  var def = types.Type.def;
@@ -16513,7 +16470,7 @@ def("XMLProcessingInstruction")
16513
16470
  .field("target", isString)
16514
16471
  .field("contents", or(isString, null));
16515
16472
 
16516
- },{"../lib/types":135,"./core":123}],125:[function(require,module,exports){
16473
+ },{"../lib/types":134,"./core":122}],124:[function(require,module,exports){
16517
16474
  require("./core");
16518
16475
  var types = require("../lib/types");
16519
16476
  var def = types.Type.def;
@@ -16752,7 +16709,7 @@ def("TemplateElement")
16752
16709
  .field("value", {"cooked": isString, "raw": isString})
16753
16710
  .field("tail", isBoolean);
16754
16711
 
16755
- },{"../lib/shared":134,"../lib/types":135,"./core":123}],126:[function(require,module,exports){
16712
+ },{"../lib/shared":133,"../lib/types":134,"./core":122}],125:[function(require,module,exports){
16756
16713
  require("./core");
16757
16714
  var types = require("../lib/types");
16758
16715
  var def = types.Type.def;
@@ -16792,7 +16749,7 @@ def("AwaitExpression")
16792
16749
  .field("argument", or(def("Expression"), null))
16793
16750
  .field("all", isBoolean, defaults["false"]);
16794
16751
 
16795
- },{"../lib/shared":134,"../lib/types":135,"./core":123}],127:[function(require,module,exports){
16752
+ },{"../lib/shared":133,"../lib/types":134,"./core":122}],126:[function(require,module,exports){
16796
16753
  require("./core");
16797
16754
  var types = require("../lib/types");
16798
16755
  var def = types.Type.def;
@@ -17088,7 +17045,7 @@ def("DeclareModule")
17088
17045
  .field("id", or(def("Identifier"), def("Literal")))
17089
17046
  .field("body", def("BlockStatement"));
17090
17047
 
17091
- },{"../lib/shared":134,"../lib/types":135,"./core":123}],128:[function(require,module,exports){
17048
+ },{"../lib/shared":133,"../lib/types":134,"./core":122}],127:[function(require,module,exports){
17092
17049
  require("./core");
17093
17050
  var types = require("../lib/types");
17094
17051
  var def = types.Type.def;
@@ -17129,7 +17086,7 @@ def("GraphIndexExpression")
17129
17086
  .build("index")
17130
17087
  .field("index", geq(0));
17131
17088
 
17132
- },{"../lib/shared":134,"../lib/types":135,"./core":123}],129:[function(require,module,exports){
17089
+ },{"../lib/shared":133,"../lib/types":134,"./core":122}],128:[function(require,module,exports){
17133
17090
  var assert = require("assert");
17134
17091
  var types = require("../main");
17135
17092
  var getFieldNames = types.getFieldNames;
@@ -17309,7 +17266,7 @@ function objectsAreEquivalent(a, b, problemPath) {
17309
17266
 
17310
17267
  module.exports = astNodesAreEquivalent;
17311
17268
 
17312
- },{"../main":136,"assert":138}],130:[function(require,module,exports){
17269
+ },{"../main":135,"assert":137}],129:[function(require,module,exports){
17313
17270
  var assert = require("assert");
17314
17271
  var types = require("./types");
17315
17272
  var n = types.namedTypes;
@@ -17760,7 +17717,7 @@ function cleanUpIfStatementAfterPrune(ifStatement) {
17760
17717
 
17761
17718
  module.exports = NodePath;
17762
17719
 
17763
- },{"./path":132,"./scope":133,"./types":135,"assert":138,"util":163}],131:[function(require,module,exports){
17720
+ },{"./path":131,"./scope":132,"./types":134,"assert":137,"util":162}],130:[function(require,module,exports){
17764
17721
  var assert = require("assert");
17765
17722
  var types = require("./types");
17766
17723
  var NodePath = require("./node-path");
@@ -18117,7 +18074,7 @@ sharedContextProtoMethods.abort = function abort() {
18117
18074
 
18118
18075
  module.exports = PathVisitor;
18119
18076
 
18120
- },{"./node-path":130,"./types":135,"assert":138}],132:[function(require,module,exports){
18077
+ },{"./node-path":129,"./types":134,"assert":137}],131:[function(require,module,exports){
18121
18078
  var assert = require("assert");
18122
18079
  var Op = Object.prototype;
18123
18080
  var hasOwn = Op.hasOwnProperty;
@@ -18467,7 +18424,7 @@ Pp.replace = function replace(replacement) {
18467
18424
 
18468
18425
  module.exports = Path;
18469
18426
 
18470
- },{"./types":135,"assert":138}],133:[function(require,module,exports){
18427
+ },{"./types":134,"assert":137}],132:[function(require,module,exports){
18471
18428
  var assert = require("assert");
18472
18429
  var types = require("./types");
18473
18430
  var Type = types.Type;
@@ -18750,7 +18707,7 @@ Sp.getGlobalScope = function() {
18750
18707
 
18751
18708
  module.exports = Scope;
18752
18709
 
18753
- },{"./node-path":130,"./types":135,"assert":138}],134:[function(require,module,exports){
18710
+ },{"./node-path":129,"./types":134,"assert":137}],133:[function(require,module,exports){
18754
18711
  var types = require("../lib/types");
18755
18712
  var Type = types.Type;
18756
18713
  var builtin = types.builtInTypes;
@@ -18793,7 +18750,7 @@ exports.isPrimitive = new Type(function(value) {
18793
18750
  type === "function");
18794
18751
  }, naiveIsPrimitive.toString());
18795
18752
 
18796
- },{"../lib/types":135}],135:[function(require,module,exports){
18753
+ },{"../lib/types":134}],134:[function(require,module,exports){
18797
18754
  var assert = require("assert");
18798
18755
  var Ap = Array.prototype;
18799
18756
  var slice = Ap.slice;
@@ -19525,7 +19482,7 @@ exports.finalize = function() {
19525
19482
  });
19526
19483
  };
19527
19484
 
19528
- },{"assert":138}],136:[function(require,module,exports){
19485
+ },{"assert":137}],135:[function(require,module,exports){
19529
19486
  var types = require("./lib/types");
19530
19487
 
19531
19488
  // This core module of AST types captures ES5 as it is parsed today by
@@ -19558,9 +19515,9 @@ exports.NodePath = require("./lib/node-path");
19558
19515
  exports.PathVisitor = require("./lib/path-visitor");
19559
19516
  exports.visit = exports.PathVisitor.visit;
19560
19517
 
19561
- },{"./def/core":123,"./def/e4x":124,"./def/es6":125,"./def/es7":126,"./def/fb-harmony":127,"./def/mozilla":128,"./lib/equiv":129,"./lib/node-path":130,"./lib/path-visitor":131,"./lib/types":135}],137:[function(require,module,exports){
19518
+ },{"./def/core":122,"./def/e4x":123,"./def/es6":124,"./def/es7":125,"./def/fb-harmony":126,"./def/mozilla":127,"./lib/equiv":128,"./lib/node-path":129,"./lib/path-visitor":130,"./lib/types":134}],136:[function(require,module,exports){
19562
19519
 
19563
- },{}],138:[function(require,module,exports){
19520
+ },{}],137:[function(require,module,exports){
19564
19521
  // http://wiki.commonjs.org/wiki/Unit_Testing/1.0
19565
19522
  //
19566
19523
  // THIS IS NOT TESTED NOR LIKELY TO WORK OUTSIDE V8!
@@ -19921,7 +19878,7 @@ var objectKeys = Object.keys || function (obj) {
19921
19878
  return keys;
19922
19879
  };
19923
19880
 
19924
- },{"util/":163}],139:[function(require,module,exports){
19881
+ },{"util/":162}],138:[function(require,module,exports){
19925
19882
  /*!
19926
19883
  * The buffer module from node.js, for the browser.
19927
19884
  *
@@ -21234,7 +21191,7 @@ function decodeUtf8Char (str) {
21234
21191
  }
21235
21192
  }
21236
21193
 
21237
- },{"base64-js":140,"ieee754":141,"is-array":142}],140:[function(require,module,exports){
21194
+ },{"base64-js":139,"ieee754":140,"is-array":141}],139:[function(require,module,exports){
21238
21195
  var lookup = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/';
21239
21196
 
21240
21197
  ;(function (exports) {
@@ -21360,7 +21317,7 @@ var lookup = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/';
21360
21317
  exports.fromByteArray = uint8ToBase64
21361
21318
  }(typeof exports === 'undefined' ? (this.base64js = {}) : exports))
21362
21319
 
21363
- },{}],141:[function(require,module,exports){
21320
+ },{}],140:[function(require,module,exports){
21364
21321
  exports.read = function(buffer, offset, isLE, mLen, nBytes) {
21365
21322
  var e, m,
21366
21323
  eLen = nBytes * 8 - mLen - 1,
@@ -21446,7 +21403,7 @@ exports.write = function(buffer, value, offset, isLE, mLen, nBytes) {
21446
21403
  buffer[offset + i - d] |= s * 128;
21447
21404
  };
21448
21405
 
21449
- },{}],142:[function(require,module,exports){
21406
+ },{}],141:[function(require,module,exports){
21450
21407
 
21451
21408
  /**
21452
21409
  * isArray
@@ -21481,7 +21438,7 @@ module.exports = isArray || function (val) {
21481
21438
  return !! val && '[object Array]' == str.call(val);
21482
21439
  };
21483
21440
 
21484
- },{}],143:[function(require,module,exports){
21441
+ },{}],142:[function(require,module,exports){
21485
21442
  // Copyright Joyent, Inc. and other Node contributors.
21486
21443
  //
21487
21444
  // Permission is hereby granted, free of charge, to any person obtaining a
@@ -21784,7 +21741,7 @@ function isUndefined(arg) {
21784
21741
  return arg === void 0;
21785
21742
  }
21786
21743
 
21787
- },{}],144:[function(require,module,exports){
21744
+ },{}],143:[function(require,module,exports){
21788
21745
  if (typeof Object.create === 'function') {
21789
21746
  // implementation from standard node.js 'util' module
21790
21747
  module.exports = function inherits(ctor, superCtor) {
@@ -21809,12 +21766,12 @@ if (typeof Object.create === 'function') {
21809
21766
  }
21810
21767
  }
21811
21768
 
21812
- },{}],145:[function(require,module,exports){
21769
+ },{}],144:[function(require,module,exports){
21813
21770
  module.exports = Array.isArray || function (arr) {
21814
21771
  return Object.prototype.toString.call(arr) == '[object Array]';
21815
21772
  };
21816
21773
 
21817
- },{}],146:[function(require,module,exports){
21774
+ },{}],145:[function(require,module,exports){
21818
21775
  (function (process){
21819
21776
  // Copyright Joyent, Inc. and other Node contributors.
21820
21777
  //
@@ -22042,7 +21999,7 @@ var substr = 'ab'.substr(-1) === 'b'
22042
21999
  ;
22043
22000
 
22044
22001
  }).call(this,require('_process'))
22045
- },{"_process":147}],147:[function(require,module,exports){
22002
+ },{"_process":146}],146:[function(require,module,exports){
22046
22003
  // shim for using process in browser
22047
22004
 
22048
22005
  var process = module.exports = {};
@@ -22101,10 +22058,10 @@ process.chdir = function (dir) {
22101
22058
  };
22102
22059
  process.umask = function() { return 0; };
22103
22060
 
22104
- },{}],148:[function(require,module,exports){
22061
+ },{}],147:[function(require,module,exports){
22105
22062
  module.exports = require("./lib/_stream_duplex.js")
22106
22063
 
22107
- },{"./lib/_stream_duplex.js":149}],149:[function(require,module,exports){
22064
+ },{"./lib/_stream_duplex.js":148}],148:[function(require,module,exports){
22108
22065
  (function (process){
22109
22066
  // Copyright Joyent, Inc. and other Node contributors.
22110
22067
  //
@@ -22197,7 +22154,7 @@ function forEach (xs, f) {
22197
22154
  }
22198
22155
 
22199
22156
  }).call(this,require('_process'))
22200
- },{"./_stream_readable":151,"./_stream_writable":153,"_process":147,"core-util-is":154,"inherits":144}],150:[function(require,module,exports){
22157
+ },{"./_stream_readable":150,"./_stream_writable":152,"_process":146,"core-util-is":153,"inherits":143}],149:[function(require,module,exports){
22201
22158
  // Copyright Joyent, Inc. and other Node contributors.
22202
22159
  //
22203
22160
  // Permission is hereby granted, free of charge, to any person obtaining a
@@ -22245,7 +22202,7 @@ PassThrough.prototype._transform = function(chunk, encoding, cb) {
22245
22202
  cb(null, chunk);
22246
22203
  };
22247
22204
 
22248
- },{"./_stream_transform":152,"core-util-is":154,"inherits":144}],151:[function(require,module,exports){
22205
+ },{"./_stream_transform":151,"core-util-is":153,"inherits":143}],150:[function(require,module,exports){
22249
22206
  (function (process){
22250
22207
  // Copyright Joyent, Inc. and other Node contributors.
22251
22208
  //
@@ -23231,7 +23188,7 @@ function indexOf (xs, x) {
23231
23188
  }
23232
23189
 
23233
23190
  }).call(this,require('_process'))
23234
- },{"_process":147,"buffer":139,"core-util-is":154,"events":143,"inherits":144,"isarray":145,"stream":159,"string_decoder/":160}],152:[function(require,module,exports){
23191
+ },{"_process":146,"buffer":138,"core-util-is":153,"events":142,"inherits":143,"isarray":144,"stream":158,"string_decoder/":159}],151:[function(require,module,exports){
23235
23192
  // Copyright Joyent, Inc. and other Node contributors.
23236
23193
  //
23237
23194
  // Permission is hereby granted, free of charge, to any person obtaining a
@@ -23443,7 +23400,7 @@ function done(stream, er) {
23443
23400
  return stream.push(null);
23444
23401
  }
23445
23402
 
23446
- },{"./_stream_duplex":149,"core-util-is":154,"inherits":144}],153:[function(require,module,exports){
23403
+ },{"./_stream_duplex":148,"core-util-is":153,"inherits":143}],152:[function(require,module,exports){
23447
23404
  (function (process){
23448
23405
  // Copyright Joyent, Inc. and other Node contributors.
23449
23406
  //
@@ -23833,7 +23790,7 @@ function endWritable(stream, state, cb) {
23833
23790
  }
23834
23791
 
23835
23792
  }).call(this,require('_process'))
23836
- },{"./_stream_duplex":149,"_process":147,"buffer":139,"core-util-is":154,"inherits":144,"stream":159}],154:[function(require,module,exports){
23793
+ },{"./_stream_duplex":148,"_process":146,"buffer":138,"core-util-is":153,"inherits":143,"stream":158}],153:[function(require,module,exports){
23837
23794
  (function (Buffer){
23838
23795
  // Copyright Joyent, Inc. and other Node contributors.
23839
23796
  //
@@ -23943,10 +23900,10 @@ function objectToString(o) {
23943
23900
  return Object.prototype.toString.call(o);
23944
23901
  }
23945
23902
  }).call(this,require("buffer").Buffer)
23946
- },{"buffer":139}],155:[function(require,module,exports){
23903
+ },{"buffer":138}],154:[function(require,module,exports){
23947
23904
  module.exports = require("./lib/_stream_passthrough.js")
23948
23905
 
23949
- },{"./lib/_stream_passthrough.js":150}],156:[function(require,module,exports){
23906
+ },{"./lib/_stream_passthrough.js":149}],155:[function(require,module,exports){
23950
23907
  var Stream = require('stream'); // hack to fix a circular dependency issue when used with browserify
23951
23908
  exports = module.exports = require('./lib/_stream_readable.js');
23952
23909
  exports.Stream = Stream;
@@ -23956,13 +23913,13 @@ exports.Duplex = require('./lib/_stream_duplex.js');
23956
23913
  exports.Transform = require('./lib/_stream_transform.js');
23957
23914
  exports.PassThrough = require('./lib/_stream_passthrough.js');
23958
23915
 
23959
- },{"./lib/_stream_duplex.js":149,"./lib/_stream_passthrough.js":150,"./lib/_stream_readable.js":151,"./lib/_stream_transform.js":152,"./lib/_stream_writable.js":153,"stream":159}],157:[function(require,module,exports){
23916
+ },{"./lib/_stream_duplex.js":148,"./lib/_stream_passthrough.js":149,"./lib/_stream_readable.js":150,"./lib/_stream_transform.js":151,"./lib/_stream_writable.js":152,"stream":158}],156:[function(require,module,exports){
23960
23917
  module.exports = require("./lib/_stream_transform.js")
23961
23918
 
23962
- },{"./lib/_stream_transform.js":152}],158:[function(require,module,exports){
23919
+ },{"./lib/_stream_transform.js":151}],157:[function(require,module,exports){
23963
23920
  module.exports = require("./lib/_stream_writable.js")
23964
23921
 
23965
- },{"./lib/_stream_writable.js":153}],159:[function(require,module,exports){
23922
+ },{"./lib/_stream_writable.js":152}],158:[function(require,module,exports){
23966
23923
  // Copyright Joyent, Inc. and other Node contributors.
23967
23924
  //
23968
23925
  // Permission is hereby granted, free of charge, to any person obtaining a
@@ -24091,7 +24048,7 @@ Stream.prototype.pipe = function(dest, options) {
24091
24048
  return dest;
24092
24049
  };
24093
24050
 
24094
- },{"events":143,"inherits":144,"readable-stream/duplex.js":148,"readable-stream/passthrough.js":155,"readable-stream/readable.js":156,"readable-stream/transform.js":157,"readable-stream/writable.js":158}],160:[function(require,module,exports){
24051
+ },{"events":142,"inherits":143,"readable-stream/duplex.js":147,"readable-stream/passthrough.js":154,"readable-stream/readable.js":155,"readable-stream/transform.js":156,"readable-stream/writable.js":157}],159:[function(require,module,exports){
24095
24052
  // Copyright Joyent, Inc. and other Node contributors.
24096
24053
  //
24097
24054
  // Permission is hereby granted, free of charge, to any person obtaining a
@@ -24314,7 +24271,7 @@ function base64DetectIncompleteChar(buffer) {
24314
24271
  this.charLength = this.charReceived ? 3 : 0;
24315
24272
  }
24316
24273
 
24317
- },{"buffer":139}],161:[function(require,module,exports){
24274
+ },{"buffer":138}],160:[function(require,module,exports){
24318
24275
  exports.isatty = function () { return false; };
24319
24276
 
24320
24277
  function ReadStream() {
@@ -24327,14 +24284,14 @@ function WriteStream() {
24327
24284
  }
24328
24285
  exports.WriteStream = WriteStream;
24329
24286
 
24330
- },{}],162:[function(require,module,exports){
24287
+ },{}],161:[function(require,module,exports){
24331
24288
  module.exports = function isBuffer(arg) {
24332
24289
  return arg && typeof arg === 'object'
24333
24290
  && typeof arg.copy === 'function'
24334
24291
  && typeof arg.fill === 'function'
24335
24292
  && typeof arg.readUInt8 === 'function';
24336
24293
  }
24337
- },{}],163:[function(require,module,exports){
24294
+ },{}],162:[function(require,module,exports){
24338
24295
  (function (process,global){
24339
24296
  // Copyright Joyent, Inc. and other Node contributors.
24340
24297
  //
@@ -24924,7 +24881,7 @@ function hasOwnProperty(obj, prop) {
24924
24881
  }
24925
24882
 
24926
24883
  }).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
24927
- },{"./support/isBuffer":162,"_process":147,"inherits":144}],164:[function(require,module,exports){
24884
+ },{"./support/isBuffer":161,"_process":146,"inherits":143}],163:[function(require,module,exports){
24928
24885
  'use strict';
24929
24886
  var escapeStringRegexp = require('escape-string-regexp');
24930
24887
  var ansiStyles = require('ansi-styles');
@@ -25021,7 +24978,7 @@ if (chalk.enabled === undefined) {
25021
24978
  chalk.enabled = chalk.supportsColor;
25022
24979
  }
25023
24980
 
25024
- },{"ansi-styles":165,"escape-string-regexp":166,"has-ansi":167,"strip-ansi":169,"supports-color":171}],165:[function(require,module,exports){
24981
+ },{"ansi-styles":164,"escape-string-regexp":165,"has-ansi":166,"strip-ansi":168,"supports-color":170}],164:[function(require,module,exports){
25025
24982
  'use strict';
25026
24983
  var styles = module.exports;
25027
24984
 
@@ -25063,7 +25020,7 @@ Object.keys(codes).forEach(function (key) {
25063
25020
  style.close = '\u001b[' + val[1] + 'm';
25064
25021
  });
25065
25022
 
25066
- },{}],166:[function(require,module,exports){
25023
+ },{}],165:[function(require,module,exports){
25067
25024
  'use strict';
25068
25025
 
25069
25026
  var matchOperatorsRe = /[|\\{}()[\]^$+*?.]/g;
@@ -25076,19 +25033,19 @@ module.exports = function (str) {
25076
25033
  return str.replace(matchOperatorsRe, '\\$&');
25077
25034
  };
25078
25035
 
25079
- },{}],167:[function(require,module,exports){
25036
+ },{}],166:[function(require,module,exports){
25080
25037
  'use strict';
25081
25038
  var ansiRegex = require('ansi-regex');
25082
25039
  var re = new RegExp(ansiRegex().source); // remove the `g` flag
25083
25040
  module.exports = re.test.bind(re);
25084
25041
 
25085
- },{"ansi-regex":168}],168:[function(require,module,exports){
25042
+ },{"ansi-regex":167}],167:[function(require,module,exports){
25086
25043
  'use strict';
25087
25044
  module.exports = function () {
25088
25045
  return /\u001b\[(?:[0-9]{1,3}(?:;[0-9]{1,3})*)?[m|K]/g;
25089
25046
  };
25090
25047
 
25091
- },{}],169:[function(require,module,exports){
25048
+ },{}],168:[function(require,module,exports){
25092
25049
  'use strict';
25093
25050
  var ansiRegex = require('ansi-regex')();
25094
25051
 
@@ -25096,9 +25053,9 @@ module.exports = function (str) {
25096
25053
  return typeof str === 'string' ? str.replace(ansiRegex, '') : str;
25097
25054
  };
25098
25055
 
25099
- },{"ansi-regex":170}],170:[function(require,module,exports){
25100
- arguments[4][168][0].apply(exports,arguments)
25101
- },{"dup":168}],171:[function(require,module,exports){
25056
+ },{"ansi-regex":169}],169:[function(require,module,exports){
25057
+ arguments[4][167][0].apply(exports,arguments)
25058
+ },{"dup":167}],170:[function(require,module,exports){
25102
25059
  (function (process){
25103
25060
  'use strict';
25104
25061
  module.exports = (function () {
@@ -25134,7 +25091,7 @@ module.exports = (function () {
25134
25091
  })();
25135
25092
 
25136
25093
  }).call(this,require('_process'))
25137
- },{"_process":147}],172:[function(require,module,exports){
25094
+ },{"_process":146}],171:[function(require,module,exports){
25138
25095
  /**
25139
25096
  * Core.js 0.5.4
25140
25097
  * https://github.com/zloirock/core-js
@@ -27395,7 +27352,7 @@ $define(GLOBAL + FORCED, {global: global});
27395
27352
  })});
27396
27353
  }({}, global.console || {}, true);
27397
27354
  }(typeof self != 'undefined' && self.Math === Math ? self : Function('return this')(), false);
27398
- },{}],173:[function(require,module,exports){
27355
+ },{}],172:[function(require,module,exports){
27399
27356
 
27400
27357
  /**
27401
27358
  * This is the common logic for both the Node.js and web browser
@@ -27594,7 +27551,7 @@ function coerce(val) {
27594
27551
  return val;
27595
27552
  }
27596
27553
 
27597
- },{"ms":175}],174:[function(require,module,exports){
27554
+ },{"ms":174}],173:[function(require,module,exports){
27598
27555
  (function (process){
27599
27556
 
27600
27557
  /**
@@ -27807,7 +27764,7 @@ function createWritableStdioStream (fd) {
27807
27764
  exports.enable(load());
27808
27765
 
27809
27766
  }).call(this,require('_process'))
27810
- },{"./debug":173,"_process":147,"fs":137,"net":137,"tty":161,"util":163}],175:[function(require,module,exports){
27767
+ },{"./debug":172,"_process":146,"fs":136,"net":136,"tty":160,"util":162}],174:[function(require,module,exports){
27811
27768
  /**
27812
27769
  * Helpers.
27813
27770
  */
@@ -27920,7 +27877,7 @@ function plural(ms, n, name) {
27920
27877
  return Math.ceil(ms / n) + ' ' + name + 's';
27921
27878
  }
27922
27879
 
27923
- },{}],176:[function(require,module,exports){
27880
+ },{}],175:[function(require,module,exports){
27924
27881
  'use strict';
27925
27882
  var repeating = require('repeating');
27926
27883
 
@@ -28041,7 +27998,7 @@ module.exports = function (str) {
28041
27998
  };
28042
27999
  };
28043
28000
 
28044
- },{"repeating":177}],177:[function(require,module,exports){
28001
+ },{"repeating":176}],176:[function(require,module,exports){
28045
28002
  'use strict';
28046
28003
  var isFinite = require('is-finite');
28047
28004
 
@@ -28067,7 +28024,7 @@ module.exports = function (str, n) {
28067
28024
  return ret;
28068
28025
  };
28069
28026
 
28070
- },{"is-finite":178}],178:[function(require,module,exports){
28027
+ },{"is-finite":177}],177:[function(require,module,exports){
28071
28028
  'use strict';
28072
28029
  module.exports = Number.isFinite || function (val) {
28073
28030
  // Number.isNaN() => val !== val
@@ -28078,7 +28035,7 @@ module.exports = Number.isFinite || function (val) {
28078
28035
  return true;
28079
28036
  };
28080
28037
 
28081
- },{}],179:[function(require,module,exports){
28038
+ },{}],178:[function(require,module,exports){
28082
28039
  /*
28083
28040
  Copyright (C) 2012-2013 Yusuke Suzuki <utatane.tea@gmail.com>
28084
28041
  Copyright (C) 2012 Ariya Hidayat <ariya.hidayat@gmail.com>
@@ -28923,7 +28880,7 @@ module.exports = Number.isFinite || function (val) {
28923
28880
  }));
28924
28881
  /* vim: set sw=4 ts=4 et tw=80 : */
28925
28882
 
28926
- },{}],180:[function(require,module,exports){
28883
+ },{}],179:[function(require,module,exports){
28927
28884
  /*
28928
28885
  Copyright (C) 2013 Yusuke Suzuki <utatane.tea@gmail.com>
28929
28886
 
@@ -29069,7 +29026,7 @@ module.exports = Number.isFinite || function (val) {
29069
29026
  }());
29070
29027
  /* vim: set sw=4 ts=4 et tw=80 : */
29071
29028
 
29072
- },{}],181:[function(require,module,exports){
29029
+ },{}],180:[function(require,module,exports){
29073
29030
  /*
29074
29031
  Copyright (C) 2013-2014 Yusuke Suzuki <utatane.tea@gmail.com>
29075
29032
  Copyright (C) 2014 Ivan Nikulin <ifaaan@gmail.com>
@@ -29172,7 +29129,7 @@ module.exports = Number.isFinite || function (val) {
29172
29129
  }());
29173
29130
  /* vim: set sw=4 ts=4 et tw=80 : */
29174
29131
 
29175
- },{}],182:[function(require,module,exports){
29132
+ },{}],181:[function(require,module,exports){
29176
29133
  /*
29177
29134
  Copyright (C) 2013 Yusuke Suzuki <utatane.tea@gmail.com>
29178
29135
 
@@ -29311,7 +29268,7 @@ module.exports = Number.isFinite || function (val) {
29311
29268
  }());
29312
29269
  /* vim: set sw=4 ts=4 et tw=80 : */
29313
29270
 
29314
- },{"./code":181}],183:[function(require,module,exports){
29271
+ },{"./code":180}],182:[function(require,module,exports){
29315
29272
  /*
29316
29273
  Copyright (C) 2013 Yusuke Suzuki <utatane.tea@gmail.com>
29317
29274
 
@@ -29346,7 +29303,7 @@ module.exports = Number.isFinite || function (val) {
29346
29303
  }());
29347
29304
  /* vim: set sw=4 ts=4 et tw=80 : */
29348
29305
 
29349
- },{"./ast":180,"./code":181,"./keyword":182}],184:[function(require,module,exports){
29306
+ },{"./ast":179,"./code":180,"./keyword":181}],183:[function(require,module,exports){
29350
29307
  module.exports={
29351
29308
  "builtin": {
29352
29309
  "Array": false,
@@ -30080,10 +30037,34 @@ module.exports={
30080
30037
  }
30081
30038
  }
30082
30039
 
30083
- },{}],185:[function(require,module,exports){
30040
+ },{}],184:[function(require,module,exports){
30084
30041
  module.exports = require('./globals.json');
30085
30042
 
30086
- },{"./globals.json":184}],186:[function(require,module,exports){
30043
+ },{"./globals.json":183}],185:[function(require,module,exports){
30044
+ // https://github.com/paulmillr/es6-shim
30045
+ // http://people.mozilla.org/~jorendorff/es6-draft.html#sec-number.isinteger
30046
+ var isNaN = require("is-nan");
30047
+ var isFinite = require("is-finite");
30048
+ module.exports = Number.isInteger || function(val) {
30049
+ return typeof val === "number" &&
30050
+ ! isNaN(val) &&
30051
+ isFinite(val) &&
30052
+ parseInt(val, 10) === val;
30053
+ };
30054
+
30055
+ },{"is-finite":186,"is-nan":187}],186:[function(require,module,exports){
30056
+ arguments[4][177][0].apply(exports,arguments)
30057
+ },{"dup":177}],187:[function(require,module,exports){
30058
+ "use strict";
30059
+
30060
+ /* https://people.mozilla.org/~jorendorff/es6-draft.html#sec-number.isnan */
30061
+
30062
+ module.exports = function isNaN(value) {
30063
+ return value !== value;
30064
+ };
30065
+
30066
+
30067
+ },{}],188:[function(require,module,exports){
30087
30068
  function combine () {
30088
30069
  return new RegExp('('+[].slice.call(arguments).map(function (e) {
30089
30070
  var e = e.toString()
@@ -30158,7 +30139,7 @@ module.exports.type = function (e) {
30158
30139
  return 'invalid'
30159
30140
  }
30160
30141
 
30161
- },{}],187:[function(require,module,exports){
30142
+ },{}],189:[function(require,module,exports){
30162
30143
  // intentionally commented out as it makes it slower...
30163
30144
  //'use strict';
30164
30145
 
@@ -30208,7 +30189,7 @@ module.exports = function (a, b) {
30208
30189
  return ret;
30209
30190
  };
30210
30191
 
30211
- },{}],188:[function(require,module,exports){
30192
+ },{}],190:[function(require,module,exports){
30212
30193
  /**
30213
30194
  * Creates an array with all falsey values removed. The values `false`, `null`,
30214
30195
  * `0`, `""`, `undefined`, and `NaN` are falsey.
@@ -30240,7 +30221,7 @@ function compact(array) {
30240
30221
 
30241
30222
  module.exports = compact;
30242
30223
 
30243
- },{}],189:[function(require,module,exports){
30224
+ },{}],191:[function(require,module,exports){
30244
30225
  var baseFlatten = require('../internal/baseFlatten'),
30245
30226
  isIterateeCall = require('../internal/isIterateeCall');
30246
30227
 
@@ -30274,7 +30255,7 @@ function flatten(array, isDeep, guard) {
30274
30255
 
30275
30256
  module.exports = flatten;
30276
30257
 
30277
- },{"../internal/baseFlatten":216,"../internal/isIterateeCall":256}],190:[function(require,module,exports){
30258
+ },{"../internal/baseFlatten":218,"../internal/isIterateeCall":258}],192:[function(require,module,exports){
30278
30259
  /**
30279
30260
  * Gets the last element of `array`.
30280
30261
  *
@@ -30295,7 +30276,7 @@ function last(array) {
30295
30276
 
30296
30277
  module.exports = last;
30297
30278
 
30298
- },{}],191:[function(require,module,exports){
30279
+ },{}],193:[function(require,module,exports){
30299
30280
  var baseIndexOf = require('../internal/baseIndexOf');
30300
30281
 
30301
30282
  /** Used for native method references. */
@@ -30349,7 +30330,7 @@ function pull() {
30349
30330
 
30350
30331
  module.exports = pull;
30351
30332
 
30352
- },{"../internal/baseIndexOf":222}],192:[function(require,module,exports){
30333
+ },{"../internal/baseIndexOf":224}],194:[function(require,module,exports){
30353
30334
  var baseCallback = require('../internal/baseCallback'),
30354
30335
  baseUniq = require('../internal/baseUniq'),
30355
30336
  isIterateeCall = require('../internal/isIterateeCall'),
@@ -30426,13 +30407,13 @@ function uniq(array, isSorted, iteratee, thisArg) {
30426
30407
 
30427
30408
  module.exports = uniq;
30428
30409
 
30429
- },{"../internal/baseCallback":210,"../internal/baseUniq":237,"../internal/isIterateeCall":256,"../internal/sortedUniq":263}],193:[function(require,module,exports){
30410
+ },{"../internal/baseCallback":212,"../internal/baseUniq":239,"../internal/isIterateeCall":258,"../internal/sortedUniq":265}],195:[function(require,module,exports){
30430
30411
  module.exports = require('./includes');
30431
30412
 
30432
- },{"./includes":197}],194:[function(require,module,exports){
30413
+ },{"./includes":199}],196:[function(require,module,exports){
30433
30414
  module.exports = require('./forEach');
30434
30415
 
30435
- },{"./forEach":195}],195:[function(require,module,exports){
30416
+ },{"./forEach":197}],197:[function(require,module,exports){
30436
30417
  var arrayEach = require('../internal/arrayEach'),
30437
30418
  baseEach = require('../internal/baseEach'),
30438
30419
  bindCallback = require('../internal/bindCallback'),
@@ -30472,7 +30453,7 @@ function forEach(collection, iteratee, thisArg) {
30472
30453
 
30473
30454
  module.exports = forEach;
30474
30455
 
30475
- },{"../internal/arrayEach":204,"../internal/baseEach":214,"../internal/bindCallback":239,"../lang/isArray":268}],196:[function(require,module,exports){
30456
+ },{"../internal/arrayEach":206,"../internal/baseEach":216,"../internal/bindCallback":241,"../lang/isArray":270}],198:[function(require,module,exports){
30476
30457
  var createAggregator = require('../internal/createAggregator');
30477
30458
 
30478
30459
  /** Used for native method references. */
@@ -30530,7 +30511,7 @@ var groupBy = createAggregator(function(result, value, key) {
30530
30511
 
30531
30512
  module.exports = groupBy;
30532
30513
 
30533
- },{"../internal/createAggregator":244}],197:[function(require,module,exports){
30514
+ },{"../internal/createAggregator":246}],199:[function(require,module,exports){
30534
30515
  var baseIndexOf = require('../internal/baseIndexOf'),
30535
30516
  isArray = require('../lang/isArray'),
30536
30517
  isLength = require('../internal/isLength'),
@@ -30593,7 +30574,7 @@ function includes(collection, target, fromIndex) {
30593
30574
 
30594
30575
  module.exports = includes;
30595
30576
 
30596
- },{"../internal/baseIndexOf":222,"../internal/isLength":257,"../lang/isArray":268,"../lang/isString":277,"../object/values":287}],198:[function(require,module,exports){
30577
+ },{"../internal/baseIndexOf":224,"../internal/isLength":259,"../lang/isArray":270,"../lang/isString":279,"../object/values":289}],200:[function(require,module,exports){
30597
30578
  var arrayMap = require('../internal/arrayMap'),
30598
30579
  baseCallback = require('../internal/baseCallback'),
30599
30580
  baseMap = require('../internal/baseMap'),
@@ -30659,7 +30640,7 @@ function map(collection, iteratee, thisArg) {
30659
30640
 
30660
30641
  module.exports = map;
30661
30642
 
30662
- },{"../internal/arrayMap":205,"../internal/baseCallback":210,"../internal/baseMap":226,"../lang/isArray":268}],199:[function(require,module,exports){
30643
+ },{"../internal/arrayMap":207,"../internal/baseCallback":212,"../internal/baseMap":228,"../lang/isArray":270}],201:[function(require,module,exports){
30663
30644
  var arrayReduceRight = require('../internal/arrayReduceRight'),
30664
30645
  baseCallback = require('../internal/baseCallback'),
30665
30646
  baseEachRight = require('../internal/baseEachRight'),
@@ -30692,7 +30673,7 @@ function reduceRight(collection, iteratee, accumulator, thisArg) {
30692
30673
 
30693
30674
  module.exports = reduceRight;
30694
30675
 
30695
- },{"../internal/arrayReduceRight":206,"../internal/baseCallback":210,"../internal/baseEachRight":215,"../internal/baseReduce":232,"../lang/isArray":268}],200:[function(require,module,exports){
30676
+ },{"../internal/arrayReduceRight":208,"../internal/baseCallback":212,"../internal/baseEachRight":217,"../internal/baseReduce":234,"../lang/isArray":270}],202:[function(require,module,exports){
30696
30677
  var arraySome = require('../internal/arraySome'),
30697
30678
  baseCallback = require('../internal/baseCallback'),
30698
30679
  baseSome = require('../internal/baseSome'),
@@ -30758,7 +30739,7 @@ function some(collection, predicate, thisArg) {
30758
30739
 
30759
30740
  module.exports = some;
30760
30741
 
30761
- },{"../internal/arraySome":207,"../internal/baseCallback":210,"../internal/baseSome":234,"../lang/isArray":268}],201:[function(require,module,exports){
30742
+ },{"../internal/arraySome":209,"../internal/baseCallback":212,"../internal/baseSome":236,"../lang/isArray":270}],203:[function(require,module,exports){
30762
30743
  var baseCallback = require('../internal/baseCallback'),
30763
30744
  baseEach = require('../internal/baseEach'),
30764
30745
  baseSortBy = require('../internal/baseSortBy'),
@@ -30828,7 +30809,7 @@ function sortBy(collection, iteratee, thisArg) {
30828
30809
 
30829
30810
  module.exports = sortBy;
30830
30811
 
30831
- },{"../internal/baseCallback":210,"../internal/baseEach":214,"../internal/baseSortBy":235,"../internal/compareAscending":243,"../internal/isIterateeCall":256,"../internal/isLength":257}],202:[function(require,module,exports){
30812
+ },{"../internal/baseCallback":212,"../internal/baseEach":216,"../internal/baseSortBy":237,"../internal/compareAscending":245,"../internal/isIterateeCall":258,"../internal/isLength":259}],204:[function(require,module,exports){
30832
30813
  (function (global){
30833
30814
  var cachePush = require('./cachePush'),
30834
30815
  isNative = require('../lang/isNative');
@@ -30861,7 +30842,7 @@ SetCache.prototype.push = cachePush;
30861
30842
  module.exports = SetCache;
30862
30843
 
30863
30844
  }).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
30864
- },{"../lang/isNative":272,"./cachePush":242}],203:[function(require,module,exports){
30845
+ },{"../lang/isNative":274,"./cachePush":244}],205:[function(require,module,exports){
30865
30846
  /**
30866
30847
  * Copies the values of `source` to `array`.
30867
30848
  *
@@ -30883,7 +30864,7 @@ function arrayCopy(source, array) {
30883
30864
 
30884
30865
  module.exports = arrayCopy;
30885
30866
 
30886
- },{}],204:[function(require,module,exports){
30867
+ },{}],206:[function(require,module,exports){
30887
30868
  /**
30888
30869
  * A specialized version of `_.forEach` for arrays without support for callback
30889
30870
  * shorthands or `this` binding.
@@ -30907,7 +30888,7 @@ function arrayEach(array, iteratee) {
30907
30888
 
30908
30889
  module.exports = arrayEach;
30909
30890
 
30910
- },{}],205:[function(require,module,exports){
30891
+ },{}],207:[function(require,module,exports){
30911
30892
  /**
30912
30893
  * A specialized version of `_.map` for arrays without support for callback
30913
30894
  * shorthands or `this` binding.
@@ -30930,7 +30911,7 @@ function arrayMap(array, iteratee) {
30930
30911
 
30931
30912
  module.exports = arrayMap;
30932
30913
 
30933
- },{}],206:[function(require,module,exports){
30914
+ },{}],208:[function(require,module,exports){
30934
30915
  /**
30935
30916
  * A specialized version of `_.reduceRight` for arrays without support for
30936
30917
  * callback shorthands or `this` binding.
@@ -30956,7 +30937,7 @@ function arrayReduceRight(array, iteratee, accumulator, initFromArray) {
30956
30937
 
30957
30938
  module.exports = arrayReduceRight;
30958
30939
 
30959
- },{}],207:[function(require,module,exports){
30940
+ },{}],209:[function(require,module,exports){
30960
30941
  /**
30961
30942
  * A specialized version of `_.some` for arrays without support for callback
30962
30943
  * shorthands or `this` binding.
@@ -30981,7 +30962,7 @@ function arraySome(array, predicate) {
30981
30962
 
30982
30963
  module.exports = arraySome;
30983
30964
 
30984
- },{}],208:[function(require,module,exports){
30965
+ },{}],210:[function(require,module,exports){
30985
30966
  /**
30986
30967
  * Used by `_.defaults` to customize its `_.assign` use.
30987
30968
  *
@@ -30996,7 +30977,7 @@ function assignDefaults(objectValue, sourceValue) {
30996
30977
 
30997
30978
  module.exports = assignDefaults;
30998
30979
 
30999
- },{}],209:[function(require,module,exports){
30980
+ },{}],211:[function(require,module,exports){
31000
30981
  var baseCopy = require('./baseCopy'),
31001
30982
  keys = require('../object/keys');
31002
30983
 
@@ -31033,7 +31014,7 @@ function baseAssign(object, source, customizer) {
31033
31014
 
31034
31015
  module.exports = baseAssign;
31035
31016
 
31036
- },{"../object/keys":284,"./baseCopy":213}],210:[function(require,module,exports){
31017
+ },{"../object/keys":286,"./baseCopy":215}],212:[function(require,module,exports){
31037
31018
  var baseMatches = require('./baseMatches'),
31038
31019
  baseMatchesProperty = require('./baseMatchesProperty'),
31039
31020
  baseProperty = require('./baseProperty'),
@@ -31071,7 +31052,7 @@ function baseCallback(func, thisArg, argCount) {
31071
31052
 
31072
31053
  module.exports = baseCallback;
31073
31054
 
31074
- },{"../utility/identity":291,"./baseMatches":227,"./baseMatchesProperty":228,"./baseProperty":231,"./bindCallback":239,"./isBindable":254}],211:[function(require,module,exports){
31055
+ },{"../utility/identity":293,"./baseMatches":229,"./baseMatchesProperty":230,"./baseProperty":233,"./bindCallback":241,"./isBindable":256}],213:[function(require,module,exports){
31075
31056
  var arrayCopy = require('./arrayCopy'),
31076
31057
  arrayEach = require('./arrayEach'),
31077
31058
  baseCopy = require('./baseCopy'),
@@ -31203,7 +31184,7 @@ function baseClone(value, isDeep, customizer, key, object, stackA, stackB) {
31203
31184
 
31204
31185
  module.exports = baseClone;
31205
31186
 
31206
- },{"../lang/isArray":268,"../lang/isObject":274,"../object/keys":284,"./arrayCopy":203,"./arrayEach":204,"./baseCopy":213,"./baseForOwn":219,"./initCloneArray":251,"./initCloneByTag":252,"./initCloneObject":253}],212:[function(require,module,exports){
31187
+ },{"../lang/isArray":270,"../lang/isObject":276,"../object/keys":286,"./arrayCopy":205,"./arrayEach":206,"./baseCopy":215,"./baseForOwn":221,"./initCloneArray":253,"./initCloneByTag":254,"./initCloneObject":255}],214:[function(require,module,exports){
31207
31188
  /**
31208
31189
  * The base implementation of `compareAscending` which compares values and
31209
31190
  * sorts them in ascending order without guaranteeing a stable sort.
@@ -31230,7 +31211,7 @@ function baseCompareAscending(value, other) {
31230
31211
 
31231
31212
  module.exports = baseCompareAscending;
31232
31213
 
31233
- },{}],213:[function(require,module,exports){
31214
+ },{}],215:[function(require,module,exports){
31234
31215
  /**
31235
31216
  * Copies the properties of `source` to `object`.
31236
31217
  *
@@ -31257,7 +31238,7 @@ function baseCopy(source, object, props) {
31257
31238
 
31258
31239
  module.exports = baseCopy;
31259
31240
 
31260
- },{}],214:[function(require,module,exports){
31241
+ },{}],216:[function(require,module,exports){
31261
31242
  var baseForOwn = require('./baseForOwn'),
31262
31243
  isLength = require('./isLength'),
31263
31244
  toObject = require('./toObject');
@@ -31289,7 +31270,7 @@ function baseEach(collection, iteratee) {
31289
31270
 
31290
31271
  module.exports = baseEach;
31291
31272
 
31292
- },{"./baseForOwn":219,"./isLength":257,"./toObject":264}],215:[function(require,module,exports){
31273
+ },{"./baseForOwn":221,"./isLength":259,"./toObject":266}],217:[function(require,module,exports){
31293
31274
  var baseForOwnRight = require('./baseForOwnRight'),
31294
31275
  isLength = require('./isLength'),
31295
31276
  toObject = require('./toObject');
@@ -31319,7 +31300,7 @@ function baseEachRight(collection, iteratee) {
31319
31300
 
31320
31301
  module.exports = baseEachRight;
31321
31302
 
31322
- },{"./baseForOwnRight":220,"./isLength":257,"./toObject":264}],216:[function(require,module,exports){
31303
+ },{"./baseForOwnRight":222,"./isLength":259,"./toObject":266}],218:[function(require,module,exports){
31323
31304
  var isArguments = require('../lang/isArguments'),
31324
31305
  isArray = require('../lang/isArray'),
31325
31306
  isLength = require('./isLength'),
@@ -31366,7 +31347,7 @@ function baseFlatten(array, isDeep, isStrict, fromIndex) {
31366
31347
 
31367
31348
  module.exports = baseFlatten;
31368
31349
 
31369
- },{"../lang/isArguments":267,"../lang/isArray":268,"./isLength":257,"./isObjectLike":258}],217:[function(require,module,exports){
31350
+ },{"../lang/isArguments":269,"../lang/isArray":270,"./isLength":259,"./isObjectLike":260}],219:[function(require,module,exports){
31370
31351
  var toObject = require('./toObject');
31371
31352
 
31372
31353
  /**
@@ -31398,7 +31379,7 @@ function baseFor(object, iteratee, keysFunc) {
31398
31379
 
31399
31380
  module.exports = baseFor;
31400
31381
 
31401
- },{"./toObject":264}],218:[function(require,module,exports){
31382
+ },{"./toObject":266}],220:[function(require,module,exports){
31402
31383
  var baseFor = require('./baseFor'),
31403
31384
  keysIn = require('../object/keysIn');
31404
31385
 
@@ -31417,7 +31398,7 @@ function baseForIn(object, iteratee) {
31417
31398
 
31418
31399
  module.exports = baseForIn;
31419
31400
 
31420
- },{"../object/keysIn":285,"./baseFor":217}],219:[function(require,module,exports){
31401
+ },{"../object/keysIn":287,"./baseFor":219}],221:[function(require,module,exports){
31421
31402
  var baseFor = require('./baseFor'),
31422
31403
  keys = require('../object/keys');
31423
31404
 
@@ -31436,7 +31417,7 @@ function baseForOwn(object, iteratee) {
31436
31417
 
31437
31418
  module.exports = baseForOwn;
31438
31419
 
31439
- },{"../object/keys":284,"./baseFor":217}],220:[function(require,module,exports){
31420
+ },{"../object/keys":286,"./baseFor":219}],222:[function(require,module,exports){
31440
31421
  var baseForRight = require('./baseForRight'),
31441
31422
  keys = require('../object/keys');
31442
31423
 
@@ -31455,7 +31436,7 @@ function baseForOwnRight(object, iteratee) {
31455
31436
 
31456
31437
  module.exports = baseForOwnRight;
31457
31438
 
31458
- },{"../object/keys":284,"./baseForRight":221}],221:[function(require,module,exports){
31439
+ },{"../object/keys":286,"./baseForRight":223}],223:[function(require,module,exports){
31459
31440
  var toObject = require('./toObject');
31460
31441
 
31461
31442
  /**
@@ -31484,7 +31465,7 @@ function baseForRight(object, iteratee, keysFunc) {
31484
31465
 
31485
31466
  module.exports = baseForRight;
31486
31467
 
31487
- },{"./toObject":264}],222:[function(require,module,exports){
31468
+ },{"./toObject":266}],224:[function(require,module,exports){
31488
31469
  var indexOfNaN = require('./indexOfNaN');
31489
31470
 
31490
31471
  /**
@@ -31513,7 +31494,7 @@ function baseIndexOf(array, value, fromIndex) {
31513
31494
 
31514
31495
  module.exports = baseIndexOf;
31515
31496
 
31516
- },{"./indexOfNaN":250}],223:[function(require,module,exports){
31497
+ },{"./indexOfNaN":252}],225:[function(require,module,exports){
31517
31498
  var baseIsEqualDeep = require('./baseIsEqualDeep');
31518
31499
 
31519
31500
  /**
@@ -31549,7 +31530,7 @@ function baseIsEqual(value, other, customizer, isWhere, stackA, stackB) {
31549
31530
 
31550
31531
  module.exports = baseIsEqual;
31551
31532
 
31552
- },{"./baseIsEqualDeep":224}],224:[function(require,module,exports){
31533
+ },{"./baseIsEqualDeep":226}],226:[function(require,module,exports){
31553
31534
  var equalArrays = require('./equalArrays'),
31554
31535
  equalByTag = require('./equalByTag'),
31555
31536
  equalObjects = require('./equalObjects'),
@@ -31652,7 +31633,7 @@ function baseIsEqualDeep(object, other, equalFunc, customizer, isWhere, stackA,
31652
31633
 
31653
31634
  module.exports = baseIsEqualDeep;
31654
31635
 
31655
- },{"../lang/isArray":268,"../lang/isTypedArray":278,"./equalArrays":247,"./equalByTag":248,"./equalObjects":249}],225:[function(require,module,exports){
31636
+ },{"../lang/isArray":270,"../lang/isTypedArray":280,"./equalArrays":249,"./equalByTag":250,"./equalObjects":251}],227:[function(require,module,exports){
31656
31637
  var baseIsEqual = require('./baseIsEqual');
31657
31638
 
31658
31639
  /** Used for native method references. */
@@ -31712,7 +31693,7 @@ function baseIsMatch(object, props, values, strictCompareFlags, customizer) {
31712
31693
 
31713
31694
  module.exports = baseIsMatch;
31714
31695
 
31715
- },{"./baseIsEqual":223}],226:[function(require,module,exports){
31696
+ },{"./baseIsEqual":225}],228:[function(require,module,exports){
31716
31697
  var baseEach = require('./baseEach');
31717
31698
 
31718
31699
  /**
@@ -31734,7 +31715,7 @@ function baseMap(collection, iteratee) {
31734
31715
 
31735
31716
  module.exports = baseMap;
31736
31717
 
31737
- },{"./baseEach":214}],227:[function(require,module,exports){
31718
+ },{"./baseEach":216}],229:[function(require,module,exports){
31738
31719
  var baseIsMatch = require('./baseIsMatch'),
31739
31720
  isStrictComparable = require('./isStrictComparable'),
31740
31721
  keys = require('../object/keys');
@@ -31781,7 +31762,7 @@ function baseMatches(source) {
31781
31762
 
31782
31763
  module.exports = baseMatches;
31783
31764
 
31784
- },{"../object/keys":284,"./baseIsMatch":225,"./isStrictComparable":259}],228:[function(require,module,exports){
31765
+ },{"../object/keys":286,"./baseIsMatch":227,"./isStrictComparable":261}],230:[function(require,module,exports){
31785
31766
  var baseIsEqual = require('./baseIsEqual'),
31786
31767
  isStrictComparable = require('./isStrictComparable');
31787
31768
 
@@ -31807,7 +31788,7 @@ function baseMatchesProperty(key, value) {
31807
31788
 
31808
31789
  module.exports = baseMatchesProperty;
31809
31790
 
31810
- },{"./baseIsEqual":223,"./isStrictComparable":259}],229:[function(require,module,exports){
31791
+ },{"./baseIsEqual":225,"./isStrictComparable":261}],231:[function(require,module,exports){
31811
31792
  var arrayEach = require('./arrayEach'),
31812
31793
  baseForOwn = require('./baseForOwn'),
31813
31794
  baseMergeDeep = require('./baseMergeDeep'),
@@ -31854,7 +31835,7 @@ function baseMerge(object, source, customizer, stackA, stackB) {
31854
31835
 
31855
31836
  module.exports = baseMerge;
31856
31837
 
31857
- },{"../lang/isArray":268,"../lang/isTypedArray":278,"./arrayEach":204,"./baseForOwn":219,"./baseMergeDeep":230,"./isLength":257,"./isObjectLike":258}],230:[function(require,module,exports){
31838
+ },{"../lang/isArray":270,"../lang/isTypedArray":280,"./arrayEach":206,"./baseForOwn":221,"./baseMergeDeep":232,"./isLength":259,"./isObjectLike":260}],232:[function(require,module,exports){
31858
31839
  var arrayCopy = require('./arrayCopy'),
31859
31840
  isArguments = require('../lang/isArguments'),
31860
31841
  isArray = require('../lang/isArray'),
@@ -31923,7 +31904,7 @@ function baseMergeDeep(object, source, key, mergeFunc, customizer, stackA, stack
31923
31904
 
31924
31905
  module.exports = baseMergeDeep;
31925
31906
 
31926
- },{"../lang/isArguments":267,"../lang/isArray":268,"../lang/isPlainObject":275,"../lang/isTypedArray":278,"../lang/toPlainObject":279,"./arrayCopy":203,"./isLength":257}],231:[function(require,module,exports){
31907
+ },{"../lang/isArguments":269,"../lang/isArray":270,"../lang/isPlainObject":277,"../lang/isTypedArray":280,"../lang/toPlainObject":281,"./arrayCopy":205,"./isLength":259}],233:[function(require,module,exports){
31927
31908
  /**
31928
31909
  * The base implementation of `_.property` which does not coerce `key` to a string.
31929
31910
  *
@@ -31939,7 +31920,7 @@ function baseProperty(key) {
31939
31920
 
31940
31921
  module.exports = baseProperty;
31941
31922
 
31942
- },{}],232:[function(require,module,exports){
31923
+ },{}],234:[function(require,module,exports){
31943
31924
  /**
31944
31925
  * The base implementation of `_.reduce` and `_.reduceRight` without support
31945
31926
  * for callback shorthands or `this` binding, which iterates over `collection`
@@ -31965,7 +31946,7 @@ function baseReduce(collection, iteratee, accumulator, initFromCollection, eachF
31965
31946
 
31966
31947
  module.exports = baseReduce;
31967
31948
 
31968
- },{}],233:[function(require,module,exports){
31949
+ },{}],235:[function(require,module,exports){
31969
31950
  var identity = require('../utility/identity'),
31970
31951
  metaMap = require('./metaMap');
31971
31952
 
@@ -31984,7 +31965,7 @@ var baseSetData = !metaMap ? identity : function(func, data) {
31984
31965
 
31985
31966
  module.exports = baseSetData;
31986
31967
 
31987
- },{"../utility/identity":291,"./metaMap":260}],234:[function(require,module,exports){
31968
+ },{"../utility/identity":293,"./metaMap":262}],236:[function(require,module,exports){
31988
31969
  var baseEach = require('./baseEach');
31989
31970
 
31990
31971
  /**
@@ -32009,7 +31990,7 @@ function baseSome(collection, predicate) {
32009
31990
 
32010
31991
  module.exports = baseSome;
32011
31992
 
32012
- },{"./baseEach":214}],235:[function(require,module,exports){
31993
+ },{"./baseEach":216}],237:[function(require,module,exports){
32013
31994
  /**
32014
31995
  * The base implementation of `_.sortBy` and `_.sortByAll` which uses `comparer`
32015
31996
  * to define the sort order of `array` and replaces criteria objects with their
@@ -32032,7 +32013,7 @@ function baseSortBy(array, comparer) {
32032
32013
 
32033
32014
  module.exports = baseSortBy;
32034
32015
 
32035
- },{}],236:[function(require,module,exports){
32016
+ },{}],238:[function(require,module,exports){
32036
32017
  /**
32037
32018
  * Converts `value` to a string if it is not one. An empty string is returned
32038
32019
  * for `null` or `undefined` values.
@@ -32050,7 +32031,7 @@ function baseToString(value) {
32050
32031
 
32051
32032
  module.exports = baseToString;
32052
32033
 
32053
- },{}],237:[function(require,module,exports){
32034
+ },{}],239:[function(require,module,exports){
32054
32035
  var baseIndexOf = require('./baseIndexOf'),
32055
32036
  cacheIndexOf = require('./cacheIndexOf'),
32056
32037
  createCache = require('./createCache');
@@ -32109,7 +32090,7 @@ function baseUniq(array, iteratee) {
32109
32090
 
32110
32091
  module.exports = baseUniq;
32111
32092
 
32112
- },{"./baseIndexOf":222,"./cacheIndexOf":241,"./createCache":246}],238:[function(require,module,exports){
32093
+ },{"./baseIndexOf":224,"./cacheIndexOf":243,"./createCache":248}],240:[function(require,module,exports){
32113
32094
  /**
32114
32095
  * The base implementation of `_.values` and `_.valuesIn` which creates an
32115
32096
  * array of `object` property values corresponding to the property names
@@ -32133,7 +32114,7 @@ function baseValues(object, props) {
32133
32114
 
32134
32115
  module.exports = baseValues;
32135
32116
 
32136
- },{}],239:[function(require,module,exports){
32117
+ },{}],241:[function(require,module,exports){
32137
32118
  var identity = require('../utility/identity');
32138
32119
 
32139
32120
  /**
@@ -32174,7 +32155,7 @@ function bindCallback(func, thisArg, argCount) {
32174
32155
 
32175
32156
  module.exports = bindCallback;
32176
32157
 
32177
- },{"../utility/identity":291}],240:[function(require,module,exports){
32158
+ },{"../utility/identity":293}],242:[function(require,module,exports){
32178
32159
  (function (global){
32179
32160
  var constant = require('../utility/constant'),
32180
32161
  isNative = require('../lang/isNative');
@@ -32233,7 +32214,7 @@ if (!bufferSlice) {
32233
32214
  module.exports = bufferClone;
32234
32215
 
32235
32216
  }).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
32236
- },{"../lang/isNative":272,"../utility/constant":290}],241:[function(require,module,exports){
32217
+ },{"../lang/isNative":274,"../utility/constant":292}],243:[function(require,module,exports){
32237
32218
  var isObject = require('../lang/isObject');
32238
32219
 
32239
32220
  /**
@@ -32254,7 +32235,7 @@ function cacheIndexOf(cache, value) {
32254
32235
 
32255
32236
  module.exports = cacheIndexOf;
32256
32237
 
32257
- },{"../lang/isObject":274}],242:[function(require,module,exports){
32238
+ },{"../lang/isObject":276}],244:[function(require,module,exports){
32258
32239
  var isObject = require('../lang/isObject');
32259
32240
 
32260
32241
  /**
@@ -32276,7 +32257,7 @@ function cachePush(value) {
32276
32257
 
32277
32258
  module.exports = cachePush;
32278
32259
 
32279
- },{"../lang/isObject":274}],243:[function(require,module,exports){
32260
+ },{"../lang/isObject":276}],245:[function(require,module,exports){
32280
32261
  var baseCompareAscending = require('./baseCompareAscending');
32281
32262
 
32282
32263
  /**
@@ -32294,7 +32275,7 @@ function compareAscending(object, other) {
32294
32275
 
32295
32276
  module.exports = compareAscending;
32296
32277
 
32297
- },{"./baseCompareAscending":212}],244:[function(require,module,exports){
32278
+ },{"./baseCompareAscending":214}],246:[function(require,module,exports){
32298
32279
  var baseCallback = require('./baseCallback'),
32299
32280
  baseEach = require('./baseEach'),
32300
32281
  isArray = require('../lang/isArray');
@@ -32333,7 +32314,7 @@ function createAggregator(setter, initializer) {
32333
32314
 
32334
32315
  module.exports = createAggregator;
32335
32316
 
32336
- },{"../lang/isArray":268,"./baseCallback":210,"./baseEach":214}],245:[function(require,module,exports){
32317
+ },{"../lang/isArray":270,"./baseCallback":212,"./baseEach":216}],247:[function(require,module,exports){
32337
32318
  var bindCallback = require('./bindCallback'),
32338
32319
  isIterateeCall = require('./isIterateeCall');
32339
32320
 
@@ -32375,7 +32356,7 @@ function createAssigner(assigner) {
32375
32356
 
32376
32357
  module.exports = createAssigner;
32377
32358
 
32378
- },{"./bindCallback":239,"./isIterateeCall":256}],246:[function(require,module,exports){
32359
+ },{"./bindCallback":241,"./isIterateeCall":258}],248:[function(require,module,exports){
32379
32360
  (function (global){
32380
32361
  var SetCache = require('./SetCache'),
32381
32362
  constant = require('../utility/constant'),
@@ -32401,7 +32382,7 @@ var createCache = !(nativeCreate && Set) ? constant(null) : function(values) {
32401
32382
  module.exports = createCache;
32402
32383
 
32403
32384
  }).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
32404
- },{"../lang/isNative":272,"../utility/constant":290,"./SetCache":202}],247:[function(require,module,exports){
32385
+ },{"../lang/isNative":274,"../utility/constant":292,"./SetCache":204}],249:[function(require,module,exports){
32405
32386
  /**
32406
32387
  * A specialized version of `baseIsEqualDeep` for arrays with support for
32407
32388
  * partial deep comparisons.
@@ -32457,7 +32438,7 @@ function equalArrays(array, other, equalFunc, customizer, isWhere, stackA, stack
32457
32438
 
32458
32439
  module.exports = equalArrays;
32459
32440
 
32460
- },{}],248:[function(require,module,exports){
32441
+ },{}],250:[function(require,module,exports){
32461
32442
  /** `Object#toString` result references. */
32462
32443
  var boolTag = '[object Boolean]',
32463
32444
  dateTag = '[object Date]',
@@ -32508,7 +32489,7 @@ function equalByTag(object, other, tag) {
32508
32489
 
32509
32490
  module.exports = equalByTag;
32510
32491
 
32511
- },{}],249:[function(require,module,exports){
32492
+ },{}],251:[function(require,module,exports){
32512
32493
  var keys = require('../object/keys');
32513
32494
 
32514
32495
  /** Used for native method references. */
@@ -32582,7 +32563,7 @@ function equalObjects(object, other, equalFunc, customizer, isWhere, stackA, sta
32582
32563
 
32583
32564
  module.exports = equalObjects;
32584
32565
 
32585
- },{"../object/keys":284}],250:[function(require,module,exports){
32566
+ },{"../object/keys":286}],252:[function(require,module,exports){
32586
32567
  /**
32587
32568
  * Gets the index at which the first occurrence of `NaN` is found in `array`.
32588
32569
  * If `fromRight` is provided elements of `array` are iterated from right to left.
@@ -32608,7 +32589,7 @@ function indexOfNaN(array, fromIndex, fromRight) {
32608
32589
 
32609
32590
  module.exports = indexOfNaN;
32610
32591
 
32611
- },{}],251:[function(require,module,exports){
32592
+ },{}],253:[function(require,module,exports){
32612
32593
  /** Used for native method references. */
32613
32594
  var objectProto = Object.prototype;
32614
32595
 
@@ -32636,7 +32617,7 @@ function initCloneArray(array) {
32636
32617
 
32637
32618
  module.exports = initCloneArray;
32638
32619
 
32639
- },{}],252:[function(require,module,exports){
32620
+ },{}],254:[function(require,module,exports){
32640
32621
  var bufferClone = require('./bufferClone');
32641
32622
 
32642
32623
  /** `Object#toString` result references. */
@@ -32702,7 +32683,7 @@ function initCloneByTag(object, tag, isDeep) {
32702
32683
 
32703
32684
  module.exports = initCloneByTag;
32704
32685
 
32705
- },{"./bufferClone":240}],253:[function(require,module,exports){
32686
+ },{"./bufferClone":242}],255:[function(require,module,exports){
32706
32687
  /**
32707
32688
  * Initializes an object clone.
32708
32689
  *
@@ -32720,7 +32701,7 @@ function initCloneObject(object) {
32720
32701
 
32721
32702
  module.exports = initCloneObject;
32722
32703
 
32723
- },{}],254:[function(require,module,exports){
32704
+ },{}],256:[function(require,module,exports){
32724
32705
  var baseSetData = require('./baseSetData'),
32725
32706
  isNative = require('../lang/isNative'),
32726
32707
  support = require('../support');
@@ -32760,7 +32741,7 @@ function isBindable(func) {
32760
32741
 
32761
32742
  module.exports = isBindable;
32762
32743
 
32763
- },{"../lang/isNative":272,"../support":289,"./baseSetData":233}],255:[function(require,module,exports){
32744
+ },{"../lang/isNative":274,"../support":291,"./baseSetData":235}],257:[function(require,module,exports){
32764
32745
  /**
32765
32746
  * Used as the maximum length of an array-like value.
32766
32747
  * See the [ES spec](https://people.mozilla.org/~jorendorff/es6-draft.html#sec-number.max_safe_integer)
@@ -32784,7 +32765,7 @@ function isIndex(value, length) {
32784
32765
 
32785
32766
  module.exports = isIndex;
32786
32767
 
32787
- },{}],256:[function(require,module,exports){
32768
+ },{}],258:[function(require,module,exports){
32788
32769
  var isIndex = require('./isIndex'),
32789
32770
  isLength = require('./isLength'),
32790
32771
  isObject = require('../lang/isObject');
@@ -32814,7 +32795,7 @@ function isIterateeCall(value, index, object) {
32814
32795
 
32815
32796
  module.exports = isIterateeCall;
32816
32797
 
32817
- },{"../lang/isObject":274,"./isIndex":255,"./isLength":257}],257:[function(require,module,exports){
32798
+ },{"../lang/isObject":276,"./isIndex":257,"./isLength":259}],259:[function(require,module,exports){
32818
32799
  /**
32819
32800
  * Used as the maximum length of an array-like value.
32820
32801
  * See the [ES spec](https://people.mozilla.org/~jorendorff/es6-draft.html#sec-number.max_safe_integer)
@@ -32839,7 +32820,7 @@ function isLength(value) {
32839
32820
 
32840
32821
  module.exports = isLength;
32841
32822
 
32842
- },{}],258:[function(require,module,exports){
32823
+ },{}],260:[function(require,module,exports){
32843
32824
  /**
32844
32825
  * Checks if `value` is object-like.
32845
32826
  *
@@ -32853,7 +32834,7 @@ function isObjectLike(value) {
32853
32834
 
32854
32835
  module.exports = isObjectLike;
32855
32836
 
32856
- },{}],259:[function(require,module,exports){
32837
+ },{}],261:[function(require,module,exports){
32857
32838
  var isObject = require('../lang/isObject');
32858
32839
 
32859
32840
  /**
@@ -32870,7 +32851,7 @@ function isStrictComparable(value) {
32870
32851
 
32871
32852
  module.exports = isStrictComparable;
32872
32853
 
32873
- },{"../lang/isObject":274}],260:[function(require,module,exports){
32854
+ },{"../lang/isObject":276}],262:[function(require,module,exports){
32874
32855
  (function (global){
32875
32856
  var isNative = require('../lang/isNative');
32876
32857
 
@@ -32883,7 +32864,7 @@ var metaMap = WeakMap && new WeakMap;
32883
32864
  module.exports = metaMap;
32884
32865
 
32885
32866
  }).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
32886
- },{"../lang/isNative":272}],261:[function(require,module,exports){
32867
+ },{"../lang/isNative":274}],263:[function(require,module,exports){
32887
32868
  var baseForIn = require('./baseForIn'),
32888
32869
  isObjectLike = require('./isObjectLike');
32889
32870
 
@@ -32936,7 +32917,7 @@ function shimIsPlainObject(value) {
32936
32917
 
32937
32918
  module.exports = shimIsPlainObject;
32938
32919
 
32939
- },{"./baseForIn":218,"./isObjectLike":258}],262:[function(require,module,exports){
32920
+ },{"./baseForIn":220,"./isObjectLike":260}],264:[function(require,module,exports){
32940
32921
  var isArguments = require('../lang/isArguments'),
32941
32922
  isArray = require('../lang/isArray'),
32942
32923
  isIndex = require('./isIndex'),
@@ -32980,7 +32961,7 @@ function shimKeys(object) {
32980
32961
 
32981
32962
  module.exports = shimKeys;
32982
32963
 
32983
- },{"../lang/isArguments":267,"../lang/isArray":268,"../object/keysIn":285,"../support":289,"./isIndex":255,"./isLength":257}],263:[function(require,module,exports){
32964
+ },{"../lang/isArguments":269,"../lang/isArray":270,"../object/keysIn":287,"../support":291,"./isIndex":257,"./isLength":259}],265:[function(require,module,exports){
32984
32965
  /**
32985
32966
  * An implementation of `_.uniq` optimized for sorted arrays without support
32986
32967
  * for callback shorthands and `this` binding.
@@ -33011,7 +32992,7 @@ function sortedUniq(array, iteratee) {
33011
32992
 
33012
32993
  module.exports = sortedUniq;
33013
32994
 
33014
- },{}],264:[function(require,module,exports){
32995
+ },{}],266:[function(require,module,exports){
33015
32996
  var isObject = require('../lang/isObject');
33016
32997
 
33017
32998
  /**
@@ -33027,7 +33008,7 @@ function toObject(value) {
33027
33008
 
33028
33009
  module.exports = toObject;
33029
33010
 
33030
- },{"../lang/isObject":274}],265:[function(require,module,exports){
33011
+ },{"../lang/isObject":276}],267:[function(require,module,exports){
33031
33012
  var baseClone = require('../internal/baseClone'),
33032
33013
  bindCallback = require('../internal/bindCallback'),
33033
33014
  isIterateeCall = require('../internal/isIterateeCall');
@@ -33094,7 +33075,7 @@ function clone(value, isDeep, customizer, thisArg) {
33094
33075
 
33095
33076
  module.exports = clone;
33096
33077
 
33097
- },{"../internal/baseClone":211,"../internal/bindCallback":239,"../internal/isIterateeCall":256}],266:[function(require,module,exports){
33078
+ },{"../internal/baseClone":213,"../internal/bindCallback":241,"../internal/isIterateeCall":258}],268:[function(require,module,exports){
33098
33079
  var baseClone = require('../internal/baseClone'),
33099
33080
  bindCallback = require('../internal/bindCallback');
33100
33081
 
@@ -33148,7 +33129,7 @@ function cloneDeep(value, customizer, thisArg) {
33148
33129
 
33149
33130
  module.exports = cloneDeep;
33150
33131
 
33151
- },{"../internal/baseClone":211,"../internal/bindCallback":239}],267:[function(require,module,exports){
33132
+ },{"../internal/baseClone":213,"../internal/bindCallback":241}],269:[function(require,module,exports){
33152
33133
  var isLength = require('../internal/isLength'),
33153
33134
  isObjectLike = require('../internal/isObjectLike');
33154
33135
 
@@ -33188,7 +33169,7 @@ function isArguments(value) {
33188
33169
 
33189
33170
  module.exports = isArguments;
33190
33171
 
33191
- },{"../internal/isLength":257,"../internal/isObjectLike":258}],268:[function(require,module,exports){
33172
+ },{"../internal/isLength":259,"../internal/isObjectLike":260}],270:[function(require,module,exports){
33192
33173
  var isLength = require('../internal/isLength'),
33193
33174
  isNative = require('./isNative'),
33194
33175
  isObjectLike = require('../internal/isObjectLike');
@@ -33231,7 +33212,7 @@ var isArray = nativeIsArray || function(value) {
33231
33212
 
33232
33213
  module.exports = isArray;
33233
33214
 
33234
- },{"../internal/isLength":257,"../internal/isObjectLike":258,"./isNative":272}],269:[function(require,module,exports){
33215
+ },{"../internal/isLength":259,"../internal/isObjectLike":260,"./isNative":274}],271:[function(require,module,exports){
33235
33216
  var isObjectLike = require('../internal/isObjectLike');
33236
33217
 
33237
33218
  /** `Object#toString` result references. */
@@ -33269,7 +33250,7 @@ function isBoolean(value) {
33269
33250
 
33270
33251
  module.exports = isBoolean;
33271
33252
 
33272
- },{"../internal/isObjectLike":258}],270:[function(require,module,exports){
33253
+ },{"../internal/isObjectLike":260}],272:[function(require,module,exports){
33273
33254
  var isArguments = require('./isArguments'),
33274
33255
  isArray = require('./isArray'),
33275
33256
  isFunction = require('./isFunction'),
@@ -33319,7 +33300,7 @@ function isEmpty(value) {
33319
33300
 
33320
33301
  module.exports = isEmpty;
33321
33302
 
33322
- },{"../internal/isLength":257,"../internal/isObjectLike":258,"../object/keys":284,"./isArguments":267,"./isArray":268,"./isFunction":271,"./isString":277}],271:[function(require,module,exports){
33303
+ },{"../internal/isLength":259,"../internal/isObjectLike":260,"../object/keys":286,"./isArguments":269,"./isArray":270,"./isFunction":273,"./isString":279}],273:[function(require,module,exports){
33323
33304
  (function (global){
33324
33305
  var isNative = require('./isNative');
33325
33306
 
@@ -33373,7 +33354,7 @@ if (isFunction(/x/) || (Uint8Array && !isFunction(Uint8Array))) {
33373
33354
  module.exports = isFunction;
33374
33355
 
33375
33356
  }).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
33376
- },{"./isNative":272}],272:[function(require,module,exports){
33357
+ },{"./isNative":274}],274:[function(require,module,exports){
33377
33358
  var escapeRegExp = require('../string/escapeRegExp'),
33378
33359
  isObjectLike = require('../internal/isObjectLike');
33379
33360
 
@@ -33430,7 +33411,7 @@ function isNative(value) {
33430
33411
 
33431
33412
  module.exports = isNative;
33432
33413
 
33433
- },{"../internal/isObjectLike":258,"../string/escapeRegExp":288}],273:[function(require,module,exports){
33414
+ },{"../internal/isObjectLike":260,"../string/escapeRegExp":290}],275:[function(require,module,exports){
33434
33415
  var isObjectLike = require('../internal/isObjectLike');
33435
33416
 
33436
33417
  /** `Object#toString` result references. */
@@ -33474,7 +33455,7 @@ function isNumber(value) {
33474
33455
 
33475
33456
  module.exports = isNumber;
33476
33457
 
33477
- },{"../internal/isObjectLike":258}],274:[function(require,module,exports){
33458
+ },{"../internal/isObjectLike":260}],276:[function(require,module,exports){
33478
33459
  /**
33479
33460
  * Checks if `value` is the language type of `Object`.
33480
33461
  * (e.g. arrays, functions, objects, regexes, `new Number(0)`, and `new String('')`)
@@ -33506,7 +33487,7 @@ function isObject(value) {
33506
33487
 
33507
33488
  module.exports = isObject;
33508
33489
 
33509
- },{}],275:[function(require,module,exports){
33490
+ },{}],277:[function(require,module,exports){
33510
33491
  var isNative = require('./isNative'),
33511
33492
  shimIsPlainObject = require('../internal/shimIsPlainObject');
33512
33493
 
@@ -33570,7 +33551,7 @@ var isPlainObject = !getPrototypeOf ? shimIsPlainObject : function(value) {
33570
33551
 
33571
33552
  module.exports = isPlainObject;
33572
33553
 
33573
- },{"../internal/shimIsPlainObject":261,"./isNative":272}],276:[function(require,module,exports){
33554
+ },{"../internal/shimIsPlainObject":263,"./isNative":274}],278:[function(require,module,exports){
33574
33555
  var isObjectLike = require('../internal/isObjectLike');
33575
33556
 
33576
33557
  /** `Object#toString` result references. */
@@ -33608,7 +33589,7 @@ function isRegExp(value) {
33608
33589
 
33609
33590
  module.exports = isRegExp;
33610
33591
 
33611
- },{"../internal/isObjectLike":258}],277:[function(require,module,exports){
33592
+ },{"../internal/isObjectLike":260}],279:[function(require,module,exports){
33612
33593
  var isObjectLike = require('../internal/isObjectLike');
33613
33594
 
33614
33595
  /** `Object#toString` result references. */
@@ -33646,7 +33627,7 @@ function isString(value) {
33646
33627
 
33647
33628
  module.exports = isString;
33648
33629
 
33649
- },{"../internal/isObjectLike":258}],278:[function(require,module,exports){
33630
+ },{"../internal/isObjectLike":260}],280:[function(require,module,exports){
33650
33631
  var isLength = require('../internal/isLength'),
33651
33632
  isObjectLike = require('../internal/isObjectLike');
33652
33633
 
@@ -33723,7 +33704,7 @@ function isTypedArray(value) {
33723
33704
 
33724
33705
  module.exports = isTypedArray;
33725
33706
 
33726
- },{"../internal/isLength":257,"../internal/isObjectLike":258}],279:[function(require,module,exports){
33707
+ },{"../internal/isLength":259,"../internal/isObjectLike":260}],281:[function(require,module,exports){
33727
33708
  var baseCopy = require('../internal/baseCopy'),
33728
33709
  keysIn = require('../object/keysIn');
33729
33710
 
@@ -33756,7 +33737,7 @@ function toPlainObject(value) {
33756
33737
 
33757
33738
  module.exports = toPlainObject;
33758
33739
 
33759
- },{"../internal/baseCopy":213,"../object/keysIn":285}],280:[function(require,module,exports){
33740
+ },{"../internal/baseCopy":215,"../object/keysIn":287}],282:[function(require,module,exports){
33760
33741
  var baseAssign = require('../internal/baseAssign'),
33761
33742
  createAssigner = require('../internal/createAssigner');
33762
33743
 
@@ -33793,7 +33774,7 @@ var assign = createAssigner(baseAssign);
33793
33774
 
33794
33775
  module.exports = assign;
33795
33776
 
33796
- },{"../internal/baseAssign":209,"../internal/createAssigner":245}],281:[function(require,module,exports){
33777
+ },{"../internal/baseAssign":211,"../internal/createAssigner":247}],283:[function(require,module,exports){
33797
33778
  var arrayCopy = require('../internal/arrayCopy'),
33798
33779
  assign = require('./assign'),
33799
33780
  assignDefaults = require('../internal/assignDefaults');
@@ -33825,10 +33806,10 @@ function defaults(object) {
33825
33806
 
33826
33807
  module.exports = defaults;
33827
33808
 
33828
- },{"../internal/arrayCopy":203,"../internal/assignDefaults":208,"./assign":280}],282:[function(require,module,exports){
33809
+ },{"../internal/arrayCopy":205,"../internal/assignDefaults":210,"./assign":282}],284:[function(require,module,exports){
33829
33810
  module.exports = require('./assign');
33830
33811
 
33831
- },{"./assign":280}],283:[function(require,module,exports){
33812
+ },{"./assign":282}],285:[function(require,module,exports){
33832
33813
  /** Used for native method references. */
33833
33814
  var objectProto = Object.prototype;
33834
33815
 
@@ -33856,7 +33837,7 @@ function has(object, key) {
33856
33837
 
33857
33838
  module.exports = has;
33858
33839
 
33859
- },{}],284:[function(require,module,exports){
33840
+ },{}],286:[function(require,module,exports){
33860
33841
  var isLength = require('../internal/isLength'),
33861
33842
  isNative = require('../lang/isNative'),
33862
33843
  isObject = require('../lang/isObject'),
@@ -33906,7 +33887,7 @@ var keys = !nativeKeys ? shimKeys : function(object) {
33906
33887
 
33907
33888
  module.exports = keys;
33908
33889
 
33909
- },{"../internal/isLength":257,"../internal/shimKeys":262,"../lang/isNative":272,"../lang/isObject":274}],285:[function(require,module,exports){
33890
+ },{"../internal/isLength":259,"../internal/shimKeys":264,"../lang/isNative":274,"../lang/isObject":276}],287:[function(require,module,exports){
33910
33891
  var isArguments = require('../lang/isArguments'),
33911
33892
  isArray = require('../lang/isArray'),
33912
33893
  isIndex = require('../internal/isIndex'),
@@ -33973,7 +33954,7 @@ function keysIn(object) {
33973
33954
 
33974
33955
  module.exports = keysIn;
33975
33956
 
33976
- },{"../internal/isIndex":255,"../internal/isLength":257,"../lang/isArguments":267,"../lang/isArray":268,"../lang/isObject":274,"../support":289}],286:[function(require,module,exports){
33957
+ },{"../internal/isIndex":257,"../internal/isLength":259,"../lang/isArguments":269,"../lang/isArray":270,"../lang/isObject":276,"../support":291}],288:[function(require,module,exports){
33977
33958
  var baseMerge = require('../internal/baseMerge'),
33978
33959
  createAssigner = require('../internal/createAssigner');
33979
33960
 
@@ -34027,7 +34008,7 @@ var merge = createAssigner(baseMerge);
34027
34008
 
34028
34009
  module.exports = merge;
34029
34010
 
34030
- },{"../internal/baseMerge":229,"../internal/createAssigner":245}],287:[function(require,module,exports){
34011
+ },{"../internal/baseMerge":231,"../internal/createAssigner":247}],289:[function(require,module,exports){
34031
34012
  var baseValues = require('../internal/baseValues'),
34032
34013
  keys = require('./keys');
34033
34014
 
@@ -34062,7 +34043,7 @@ function values(object) {
34062
34043
 
34063
34044
  module.exports = values;
34064
34045
 
34065
- },{"../internal/baseValues":238,"./keys":284}],288:[function(require,module,exports){
34046
+ },{"../internal/baseValues":240,"./keys":286}],290:[function(require,module,exports){
34066
34047
  var baseToString = require('../internal/baseToString');
34067
34048
 
34068
34049
  /**
@@ -34096,7 +34077,7 @@ function escapeRegExp(string) {
34096
34077
 
34097
34078
  module.exports = escapeRegExp;
34098
34079
 
34099
- },{"../internal/baseToString":236}],289:[function(require,module,exports){
34080
+ },{"../internal/baseToString":238}],291:[function(require,module,exports){
34100
34081
  (function (global){
34101
34082
  var isNative = require('./lang/isNative');
34102
34083
 
@@ -34175,7 +34156,7 @@ var support = {};
34175
34156
  module.exports = support;
34176
34157
 
34177
34158
  }).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
34178
- },{"./lang/isNative":272}],290:[function(require,module,exports){
34159
+ },{"./lang/isNative":274}],292:[function(require,module,exports){
34179
34160
  /**
34180
34161
  * Creates a function that returns `value`.
34181
34162
  *
@@ -34199,7 +34180,7 @@ function constant(value) {
34199
34180
 
34200
34181
  module.exports = constant;
34201
34182
 
34202
- },{}],291:[function(require,module,exports){
34183
+ },{}],293:[function(require,module,exports){
34203
34184
  /**
34204
34185
  * This method returns the first argument provided to it.
34205
34186
  *
@@ -34220,7 +34201,7 @@ function identity(value) {
34220
34201
 
34221
34202
  module.exports = identity;
34222
34203
 
34223
- },{}],292:[function(require,module,exports){
34204
+ },{}],294:[function(require,module,exports){
34224
34205
  "use strict";
34225
34206
 
34226
34207
  var originalObject = Object;
@@ -34351,7 +34332,7 @@ function makeAccessor(secretCreatorFn) {
34351
34332
 
34352
34333
  defProp(exports, "makeAccessor", makeAccessor);
34353
34334
 
34354
- },{}],293:[function(require,module,exports){
34335
+ },{}],295:[function(require,module,exports){
34355
34336
  /**
34356
34337
  * Copyright (c) 2014, Facebook, Inc.
34357
34338
  * All rights reserved.
@@ -35545,7 +35526,7 @@ Ep.explodeExpression = function(path, ignoreResult) {
35545
35526
  }
35546
35527
  };
35547
35528
 
35548
- },{"./leap":295,"./meta":296,"./util":297,"assert":138,"ast-types":136}],294:[function(require,module,exports){
35529
+ },{"./leap":297,"./meta":298,"./util":299,"assert":137,"ast-types":135}],296:[function(require,module,exports){
35549
35530
  /**
35550
35531
  * Copyright (c) 2014, Facebook, Inc.
35551
35532
  * All rights reserved.
@@ -35700,7 +35681,7 @@ exports.hoist = function(funPath) {
35700
35681
  return b.variableDeclaration("var", declarations);
35701
35682
  };
35702
35683
 
35703
- },{"assert":138,"ast-types":136}],295:[function(require,module,exports){
35684
+ },{"assert":137,"ast-types":135}],297:[function(require,module,exports){
35704
35685
  /**
35705
35686
  * Copyright (c) 2014, Facebook, Inc.
35706
35687
  * All rights reserved.
@@ -35879,7 +35860,7 @@ LMp.getContinueLoc = function(label) {
35879
35860
  return this._findLeapLocation("continueLoc", label);
35880
35861
  };
35881
35862
 
35882
- },{"./emit":293,"assert":138,"ast-types":136,"util":163}],296:[function(require,module,exports){
35863
+ },{"./emit":295,"assert":137,"ast-types":135,"util":162}],298:[function(require,module,exports){
35883
35864
  /**
35884
35865
  * Copyright (c) 2014, Facebook, Inc.
35885
35866
  * All rights reserved.
@@ -35981,7 +35962,7 @@ for (var type in leapTypes) {
35981
35962
  exports.hasSideEffects = makePredicate("hasSideEffects", sideEffectTypes);
35982
35963
  exports.containsLeap = makePredicate("containsLeap", leapTypes);
35983
35964
 
35984
- },{"assert":138,"ast-types":136,"private":292}],297:[function(require,module,exports){
35965
+ },{"assert":137,"ast-types":135,"private":294}],299:[function(require,module,exports){
35985
35966
  /**
35986
35967
  * Copyright (c) 2014, Facebook, Inc.
35987
35968
  * All rights reserved.
@@ -36083,7 +36064,7 @@ exports.isReference = function(path, name) {
36083
36064
  }
36084
36065
  };
36085
36066
 
36086
- },{"assert":138,"ast-types":136}],298:[function(require,module,exports){
36067
+ },{"assert":137,"ast-types":135}],300:[function(require,module,exports){
36087
36068
  /**
36088
36069
  * Copyright (c) 2014, Facebook, Inc.
36089
36070
  * All rights reserved.
@@ -36345,7 +36326,7 @@ var awaitVisitor = types.PathVisitor.fromMethodsObject({
36345
36326
  }
36346
36327
  });
36347
36328
 
36348
- },{"./emit":293,"./hoist":294,"./util":297,"assert":138,"ast-types":136,"fs":137}],299:[function(require,module,exports){
36329
+ },{"./emit":295,"./hoist":296,"./util":299,"assert":137,"ast-types":135,"fs":136}],301:[function(require,module,exports){
36349
36330
  (function (__dirname){
36350
36331
  /**
36351
36332
  * Copyright (c) 2014, Facebook, Inc.
@@ -36397,7 +36378,7 @@ runtime.path = path.join(__dirname, "runtime.js");
36397
36378
  exports.transform = transform;
36398
36379
 
36399
36380
  }).call(this,"/node_modules/regenerator-babel")
36400
- },{"./lib/util":297,"./lib/visit":298,"./runtime":301,"assert":138,"ast-types":136,"fs":137,"path":146,"through":300}],300:[function(require,module,exports){
36381
+ },{"./lib/util":299,"./lib/visit":300,"./runtime":303,"assert":137,"ast-types":135,"fs":136,"path":145,"through":302}],302:[function(require,module,exports){
36401
36382
  (function (process){
36402
36383
  var Stream = require('stream')
36403
36384
 
@@ -36509,7 +36490,7 @@ function through (write, end, opts) {
36509
36490
 
36510
36491
 
36511
36492
  }).call(this,require('_process'))
36512
- },{"_process":147,"stream":159}],301:[function(require,module,exports){
36493
+ },{"_process":146,"stream":158}],303:[function(require,module,exports){
36513
36494
  (function (global){
36514
36495
  /**
36515
36496
  * Copyright (c) 2014, Facebook, Inc.
@@ -37040,7 +37021,7 @@ function through (write, end, opts) {
37040
37021
  );
37041
37022
 
37042
37023
  }).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
37043
- },{}],302:[function(require,module,exports){
37024
+ },{}],304:[function(require,module,exports){
37044
37025
  // Generated by `/scripts/character-class-escape-sets.js`. Do not edit.
37045
37026
  var regenerate = require('regenerate');
37046
37027
 
@@ -37146,7 +37127,7 @@ exports.UNICODE_IGNORE_CASE = {
37146
37127
  .addRange(0x7B, 0x10FFFF)
37147
37128
  };
37148
37129
 
37149
- },{"regenerate":304}],303:[function(require,module,exports){
37130
+ },{"regenerate":306}],305:[function(require,module,exports){
37150
37131
  module.exports={
37151
37132
  "75": 8490,
37152
37133
  "83": 383,
@@ -37342,7 +37323,7 @@ module.exports={
37342
37323
  "71903": 71871
37343
37324
  }
37344
37325
 
37345
- },{}],304:[function(require,module,exports){
37326
+ },{}],306:[function(require,module,exports){
37346
37327
  (function (global){
37347
37328
  /*! https://mths.be/regenerate v1.2.0 by @mathias | MIT license */
37348
37329
  ;(function(root) {
@@ -38504,7 +38485,7 @@ module.exports={
38504
38485
  }(this));
38505
38486
 
38506
38487
  }).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
38507
- },{}],305:[function(require,module,exports){
38488
+ },{}],307:[function(require,module,exports){
38508
38489
  (function (global){
38509
38490
  /*!
38510
38491
  * RegJSGen
@@ -38916,7 +38897,7 @@ module.exports={
38916
38897
  }.call(this));
38917
38898
 
38918
38899
  }).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
38919
- },{}],306:[function(require,module,exports){
38900
+ },{}],308:[function(require,module,exports){
38920
38901
  // regjsparser
38921
38902
  //
38922
38903
  // ==================================================================
@@ -39839,7 +39820,7 @@ module.exports={
39839
39820
 
39840
39821
  }());
39841
39822
 
39842
- },{}],307:[function(require,module,exports){
39823
+ },{}],309:[function(require,module,exports){
39843
39824
  var generate = require('regjsgen').generate;
39844
39825
  var parse = require('regjsparser').parse;
39845
39826
  var regenerate = require('regenerate');
@@ -40034,7 +40015,28 @@ module.exports = function(pattern, flags) {
40034
40015
  return generate(tree);
40035
40016
  };
40036
40017
 
40037
- },{"./data/character-class-escape-sets.js":302,"./data/iu-mappings.json":303,"regenerate":304,"regjsgen":305,"regjsparser":306}],308:[function(require,module,exports){
40018
+ },{"./data/character-class-escape-sets.js":304,"./data/iu-mappings.json":305,"regenerate":306,"regjsgen":307,"regjsparser":308}],310:[function(require,module,exports){
40019
+ arguments[4][176][0].apply(exports,arguments)
40020
+ },{"dup":176,"is-finite":311}],311:[function(require,module,exports){
40021
+ arguments[4][177][0].apply(exports,arguments)
40022
+ },{"dup":177}],312:[function(require,module,exports){
40023
+ 'use strict';
40024
+ module.exports = /^#!.*/;
40025
+
40026
+ },{}],313:[function(require,module,exports){
40027
+ 'use strict';
40028
+ module.exports = function (str) {
40029
+ var isExtendedLengthPath = /^\\\\\?\\/.test(str);
40030
+ var hasNonAscii = /[^\x00-\x80]+/.test(str);
40031
+
40032
+ if (isExtendedLengthPath || hasNonAscii) {
40033
+ return str;
40034
+ }
40035
+
40036
+ return str.replace(/\\/g, '/');
40037
+ };
40038
+
40039
+ },{}],314:[function(require,module,exports){
40038
40040
  (function (Buffer){
40039
40041
  'use strict';
40040
40042
  module.exports = function (val) {
@@ -40043,7 +40045,7 @@ module.exports = function (val) {
40043
40045
  };
40044
40046
 
40045
40047
  }).call(this,require("buffer").Buffer)
40046
- },{"buffer":139}],309:[function(require,module,exports){
40048
+ },{"buffer":138}],315:[function(require,module,exports){
40047
40049
  /*
40048
40050
  * Copyright 2009-2011 Mozilla Foundation and contributors
40049
40051
  * Licensed under the New BSD license. See LICENSE.txt or:
@@ -40053,7 +40055,7 @@ exports.SourceMapGenerator = require('./source-map/source-map-generator').Source
40053
40055
  exports.SourceMapConsumer = require('./source-map/source-map-consumer').SourceMapConsumer;
40054
40056
  exports.SourceNode = require('./source-map/source-node').SourceNode;
40055
40057
 
40056
- },{"./source-map/source-map-consumer":315,"./source-map/source-map-generator":316,"./source-map/source-node":317}],310:[function(require,module,exports){
40058
+ },{"./source-map/source-map-consumer":321,"./source-map/source-map-generator":322,"./source-map/source-node":323}],316:[function(require,module,exports){
40057
40059
  /* -*- Mode: js; js-indent-level: 2; -*- */
40058
40060
  /*
40059
40061
  * Copyright 2011 Mozilla Foundation and contributors
@@ -40152,7 +40154,7 @@ define(function (require, exports, module) {
40152
40154
 
40153
40155
  });
40154
40156
 
40155
- },{"./util":318,"amdefine":319}],311:[function(require,module,exports){
40157
+ },{"./util":324,"amdefine":325}],317:[function(require,module,exports){
40156
40158
  /* -*- Mode: js; js-indent-level: 2; -*- */
40157
40159
  /*
40158
40160
  * Copyright 2011 Mozilla Foundation and contributors
@@ -40296,7 +40298,7 @@ define(function (require, exports, module) {
40296
40298
 
40297
40299
  });
40298
40300
 
40299
- },{"./base64":312,"amdefine":319}],312:[function(require,module,exports){
40301
+ },{"./base64":318,"amdefine":325}],318:[function(require,module,exports){
40300
40302
  /* -*- Mode: js; js-indent-level: 2; -*- */
40301
40303
  /*
40302
40304
  * Copyright 2011 Mozilla Foundation and contributors
@@ -40340,7 +40342,7 @@ define(function (require, exports, module) {
40340
40342
 
40341
40343
  });
40342
40344
 
40343
- },{"amdefine":319}],313:[function(require,module,exports){
40345
+ },{"amdefine":325}],319:[function(require,module,exports){
40344
40346
  /* -*- Mode: js; js-indent-level: 2; -*- */
40345
40347
  /*
40346
40348
  * Copyright 2011 Mozilla Foundation and contributors
@@ -40422,7 +40424,7 @@ define(function (require, exports, module) {
40422
40424
 
40423
40425
  });
40424
40426
 
40425
- },{"amdefine":319}],314:[function(require,module,exports){
40427
+ },{"amdefine":325}],320:[function(require,module,exports){
40426
40428
  /* -*- Mode: js; js-indent-level: 2; -*- */
40427
40429
  /*
40428
40430
  * Copyright 2014 Mozilla Foundation and contributors
@@ -40510,7 +40512,7 @@ define(function (require, exports, module) {
40510
40512
 
40511
40513
  });
40512
40514
 
40513
- },{"./util":318,"amdefine":319}],315:[function(require,module,exports){
40515
+ },{"./util":324,"amdefine":325}],321:[function(require,module,exports){
40514
40516
  /* -*- Mode: js; js-indent-level: 2; -*- */
40515
40517
  /*
40516
40518
  * Copyright 2011 Mozilla Foundation and contributors
@@ -41087,7 +41089,7 @@ define(function (require, exports, module) {
41087
41089
 
41088
41090
  });
41089
41091
 
41090
- },{"./array-set":310,"./base64-vlq":311,"./binary-search":313,"./util":318,"amdefine":319}],316:[function(require,module,exports){
41092
+ },{"./array-set":316,"./base64-vlq":317,"./binary-search":319,"./util":324,"amdefine":325}],322:[function(require,module,exports){
41091
41093
  /* -*- Mode: js; js-indent-level: 2; -*- */
41092
41094
  /*
41093
41095
  * Copyright 2011 Mozilla Foundation and contributors
@@ -41489,7 +41491,7 @@ define(function (require, exports, module) {
41489
41491
 
41490
41492
  });
41491
41493
 
41492
- },{"./array-set":310,"./base64-vlq":311,"./mapping-list":314,"./util":318,"amdefine":319}],317:[function(require,module,exports){
41494
+ },{"./array-set":316,"./base64-vlq":317,"./mapping-list":320,"./util":324,"amdefine":325}],323:[function(require,module,exports){
41493
41495
  /* -*- Mode: js; js-indent-level: 2; -*- */
41494
41496
  /*
41495
41497
  * Copyright 2011 Mozilla Foundation and contributors
@@ -41905,7 +41907,7 @@ define(function (require, exports, module) {
41905
41907
 
41906
41908
  });
41907
41909
 
41908
- },{"./source-map-generator":316,"./util":318,"amdefine":319}],318:[function(require,module,exports){
41910
+ },{"./source-map-generator":322,"./util":324,"amdefine":325}],324:[function(require,module,exports){
41909
41911
  /* -*- Mode: js; js-indent-level: 2; -*- */
41910
41912
  /*
41911
41913
  * Copyright 2011 Mozilla Foundation and contributors
@@ -42226,7 +42228,7 @@ define(function (require, exports, module) {
42226
42228
 
42227
42229
  });
42228
42230
 
42229
- },{"amdefine":319}],319:[function(require,module,exports){
42231
+ },{"amdefine":325}],325:[function(require,module,exports){
42230
42232
  (function (process,__filename){
42231
42233
  /** vim: et:ts=4:sw=4:sts=4
42232
42234
  * @license amdefine 0.1.0 Copyright (c) 2011, The Dojo Foundation All Rights Reserved.
@@ -42529,11 +42531,17 @@ function amdefine(module, requireFn) {
42529
42531
  module.exports = amdefine;
42530
42532
 
42531
42533
  }).call(this,require('_process'),"/node_modules/source-map/node_modules/amdefine/amdefine.js")
42532
- },{"_process":147,"path":146}],320:[function(require,module,exports){
42534
+ },{"_process":146,"path":145}],326:[function(require,module,exports){
42535
+ 'use strict';
42536
+ module.exports = function (str) {
42537
+ return str.replace(/[\s\uFEFF\xA0]+$/g, '');
42538
+ };
42539
+
42540
+ },{}],327:[function(require,module,exports){
42533
42541
  module.exports={
42534
42542
  "name": "babel",
42535
42543
  "description": "Turn ES6 code into readable vanilla ES5 with source maps",
42536
- "version": "4.0.2",
42544
+ "version": "4.1.0",
42537
42545
  "author": "Sebastian McKenzie <sebmck@gmail.com>",
42538
42546
  "homepage": "https://babeljs.io/",
42539
42547
  "repository": "babel/babel",
@@ -42582,16 +42590,22 @@ module.exports={
42582
42590
  "esutils": "^1.1.6",
42583
42591
  "fs-readdir-recursive": "^0.1.0",
42584
42592
  "globals": "^6.2.0",
42593
+ "is-integer": "^1.0.4",
42585
42594
  "js-tokenizer": "^1.3.3",
42586
42595
  "leven": "^1.0.1",
42587
42596
  "lodash": "^3.2.0",
42588
42597
  "output-file-sync": "^1.1.0",
42598
+ "path-is-absolute": "^1.0.0",
42589
42599
  "private": "^0.1.6",
42590
42600
  "regenerator-babel": "0.8.10-2",
42591
42601
  "regexpu": "^1.1.1",
42602
+ "repeating": "^1.1.2",
42603
+ "shebang-regex": "^1.0.0",
42604
+ "slash": "^1.0.0",
42592
42605
  "source-map": "^0.1.43",
42593
42606
  "source-map-support": "^0.2.9",
42594
- "source-map-to-comment": "^1.0.0"
42607
+ "source-map-to-comment": "^1.0.0",
42608
+ "trim-right": "^1.0.0"
42595
42609
  },
42596
42610
  "devDependencies": {
42597
42611
  "browserify": "^8.1.3",
@@ -42608,7 +42622,7 @@ module.exports={
42608
42622
  }
42609
42623
  }
42610
42624
 
42611
- },{}],321:[function(require,module,exports){
42625
+ },{}],328:[function(require,module,exports){
42612
42626
  module.exports={"abstract-expression-call":{"type":"Program","start":null,"end":null,"loc":null,"range":null,"body":[{"type":"ExpressionStatement","start":null,"end":null,"loc":null,"range":null,"expression":{"type":"CallExpression","start":null,"end":null,"loc":null,"range":null,"callee":{"type":"MemberExpression","start":null,"end":null,"loc":null,"range":null,"object":{"type":"CallExpression","start":null,"end":null,"loc":null,"range":null,"callee":{"type":"MemberExpression","start":null,"end":null,"loc":null,"range":null,"object":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"PROPERTY","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"property":{"type":"MemberExpression","start":null,"end":null,"loc":null,"range":null,"object":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"Symbol","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"property":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"referenceGet","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"computed":false,"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"computed":true,"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"arguments":[{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"OBJECT","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"property":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"call","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"computed":false,"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"arguments":[{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"OBJECT","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"abstract-expression-delete":{"type":"Program","start":null,"end":null,"loc":null,"range":null,"body":[{"type":"ExpressionStatement","start":null,"end":null,"loc":null,"range":null,"expression":{"type":"CallExpression","start":null,"end":null,"loc":null,"range":null,"callee":{"type":"MemberExpression","start":null,"end":null,"loc":null,"range":null,"object":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"PROPERTY","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"property":{"type":"MemberExpression","start":null,"end":null,"loc":null,"range":null,"object":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"Symbol","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"property":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"referenceDelete","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"computed":false,"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"computed":true,"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"arguments":[{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"OBJECT","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"abstract-expression-get":{"type":"Program","start":null,"end":null,"loc":null,"range":null,"body":[{"type":"ExpressionStatement","start":null,"end":null,"loc":null,"range":null,"expression":{"type":"CallExpression","start":null,"end":null,"loc":null,"range":null,"callee":{"type":"MemberExpression","start":null,"end":null,"loc":null,"range":null,"object":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"PROPERTY","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"property":{"type":"MemberExpression","start":null,"end":null,"loc":null,"range":null,"object":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"Symbol","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"property":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"referenceGet","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"computed":false,"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"computed":true,"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"arguments":[{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"OBJECT","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"abstract-expression-set":{"type":"Program","start":null,"end":null,"loc":null,"range":null,"body":[{"type":"ExpressionStatement","start":null,"end":null,"loc":null,"range":null,"expression":{"type":"CallExpression","start":null,"end":null,"loc":null,"range":null,"callee":{"type":"MemberExpression","start":null,"end":null,"loc":null,"range":null,"object":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"PROPERTY","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"property":{"type":"MemberExpression","start":null,"end":null,"loc":null,"range":null,"object":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"Symbol","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"property":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"referenceSet","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"computed":false,"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"computed":true,"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"arguments":[{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"OBJECT","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"VALUE","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"apply-constructor":{"type":"Program","start":null,"end":null,"loc":null,"range":null,"body":[{"type":"ExpressionStatement","start":null,"end":null,"loc":null,"range":null,"expression":{"type":"FunctionExpression","start":null,"end":null,"loc":null,"range":null,"id":null,"generator":false,"expression":false,"params":[{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"Constructor","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"args","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"body":{"type":"BlockStatement","start":null,"end":null,"loc":null,"range":null,"body":[{"type":"VariableDeclaration","start":null,"end":null,"loc":null,"range":null,"declarations":[{"type":"VariableDeclarator","start":null,"end":null,"loc":null,"range":null,"id":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"instance","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"init":{"type":"CallExpression","start":null,"end":null,"loc":null,"range":null,"callee":{"type":"MemberExpression","start":null,"end":null,"loc":null,"range":null,"object":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"Object","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"property":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"create","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"computed":false,"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"arguments":[{"type":"MemberExpression","start":null,"end":null,"loc":null,"range":null,"object":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"Constructor","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"property":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"prototype","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"computed":false,"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"kind":"var","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},{"type":"VariableDeclaration","start":null,"end":null,"loc":null,"range":null,"declarations":[{"type":"VariableDeclarator","start":null,"end":null,"loc":null,"range":null,"id":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"result","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"init":{"type":"CallExpression","start":null,"end":null,"loc":null,"range":null,"callee":{"type":"MemberExpression","start":null,"end":null,"loc":null,"range":null,"object":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"Constructor","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"property":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"apply","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"computed":false,"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"arguments":[{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"instance","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"args","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"kind":"var","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},{"type":"ReturnStatement","start":null,"end":null,"loc":null,"range":null,"argument":{"type":"ConditionalExpression","start":null,"end":null,"loc":null,"range":null,"test":{"type":"LogicalExpression","start":null,"end":null,"loc":null,"range":null,"left":{"type":"BinaryExpression","start":null,"end":null,"loc":null,"range":null,"left":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"result","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"operator":"!=","right":{"type":"Literal","start":null,"end":null,"loc":null,"range":null,"value":null,"raw":null,"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"operator":"&&","right":{"type":"LogicalExpression","start":null,"end":null,"loc":null,"range":null,"left":{"type":"BinaryExpression","start":null,"end":null,"loc":null,"range":null,"left":{"type":"UnaryExpression","start":null,"end":null,"loc":null,"range":null,"operator":"typeof","prefix":true,"argument":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"result","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"operator":"==","right":{"type":"Literal","start":null,"end":null,"loc":null,"range":null,"value":"object","raw":null,"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"operator":"||","right":{"type":"BinaryExpression","start":null,"end":null,"loc":null,"range":null,"left":{"type":"UnaryExpression","start":null,"end":null,"loc":null,"range":null,"operator":"typeof","prefix":true,"argument":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"result","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"operator":"==","right":{"type":"Literal","start":null,"end":null,"loc":null,"range":null,"value":"function","raw":null,"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"consequent":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"result","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"alternate":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"instance","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"_scopeInfo":null,"_declarations":null,"extendedRange":null,"tokens":null,"raw":null},"_scopeInfo":null,"_declarations":null,"extendedRange":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"array-comprehension-container":{"type":"Program","start":null,"end":null,"loc":null,"range":null,"body":[{"type":"ExpressionStatement","start":null,"end":null,"loc":null,"range":null,"expression":{"type":"CallExpression","start":null,"end":null,"loc":null,"range":null,"callee":{"type":"FunctionExpression","start":null,"end":null,"loc":null,"range":null,"id":null,"generator":false,"expression":false,"params":[],"body":{"type":"BlockStatement","start":null,"end":null,"loc":null,"range":null,"body":[{"type":"VariableDeclaration","start":null,"end":null,"loc":null,"range":null,"declarations":[{"type":"VariableDeclarator","start":null,"end":null,"loc":null,"range":null,"id":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"KEY","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"init":{"type":"ArrayExpression","start":null,"end":null,"loc":null,"range":null,"elements":[],"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"kind":"var","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},{"type":"ReturnStatement","start":null,"end":null,"loc":null,"range":null,"argument":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"KEY","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"_scopeInfo":null,"_declarations":null,"extendedRange":null,"tokens":null,"raw":null},"_scopeInfo":null,"_declarations":null,"extendedRange":null,"tokens":null,"raw":null},"arguments":[],"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"array-from":{"type":"Program","start":null,"end":null,"loc":null,"range":null,"body":[{"type":"ExpressionStatement","start":null,"end":null,"loc":null,"range":null,"expression":{"type":"CallExpression","start":null,"end":null,"loc":null,"range":null,"callee":{"type":"MemberExpression","start":null,"end":null,"loc":null,"range":null,"object":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"Array","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"property":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"from","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"computed":false,"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"arguments":[{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"VALUE","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"array-push":{"type":"Program","start":null,"end":null,"loc":null,"range":null,"body":[{"type":"ExpressionStatement","start":null,"end":null,"loc":null,"range":null,"expression":{"type":"CallExpression","start":null,"end":null,"loc":null,"range":null,"callee":{"type":"MemberExpression","start":null,"end":null,"loc":null,"range":null,"object":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"KEY","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"property":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"push","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"computed":false,"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"arguments":[{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"STATEMENT","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"async-to-generator":{"type":"Program","start":null,"end":null,"loc":null,"range":null,"body":[{"type":"ExpressionStatement","start":null,"end":null,"loc":null,"range":null,"expression":{"type":"FunctionExpression","start":null,"end":null,"loc":null,"range":null,"id":null,"generator":false,"expression":false,"params":[{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"fn","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"body":{"type":"BlockStatement","start":null,"end":null,"loc":null,"range":null,"body":[{"type":"ReturnStatement","start":null,"end":null,"loc":null,"range":null,"argument":{"type":"FunctionExpression","start":null,"end":null,"loc":null,"range":null,"id":null,"generator":false,"expression":false,"params":[],"body":{"type":"BlockStatement","start":null,"end":null,"loc":null,"range":null,"body":[{"type":"VariableDeclaration","start":null,"end":null,"loc":null,"range":null,"declarations":[{"type":"VariableDeclarator","start":null,"end":null,"loc":null,"range":null,"id":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"gen","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"init":{"type":"CallExpression","start":null,"end":null,"loc":null,"range":null,"callee":{"type":"MemberExpression","start":null,"end":null,"loc":null,"range":null,"object":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"fn","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"property":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"apply","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"computed":false,"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"arguments":[{"type":"ThisExpression","start":null,"end":null,"loc":null,"range":null,"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"arguments","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"kind":"var","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},{"type":"ReturnStatement","start":null,"end":null,"loc":null,"range":null,"argument":{"type":"NewExpression","start":null,"end":null,"loc":null,"range":null,"callee":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"Promise","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"arguments":[{"type":"FunctionExpression","start":null,"end":null,"loc":null,"range":null,"id":null,"generator":false,"expression":false,"params":[{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"resolve","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"reject","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"body":{"type":"BlockStatement","start":null,"end":null,"loc":null,"range":null,"body":[{"type":"VariableDeclaration","start":null,"end":null,"loc":null,"range":null,"declarations":[{"type":"VariableDeclarator","start":null,"end":null,"loc":null,"range":null,"id":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"callNext","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"init":{"type":"CallExpression","start":null,"end":null,"loc":null,"range":null,"callee":{"type":"MemberExpression","start":null,"end":null,"loc":null,"range":null,"object":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"step","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"property":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"bind","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"computed":false,"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"arguments":[{"type":"Literal","start":null,"end":null,"loc":null,"range":null,"value":null,"raw":null,"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null},{"type":"Literal","start":null,"end":null,"loc":null,"range":null,"value":"next","raw":null,"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null}],"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"kind":"var","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},{"type":"VariableDeclaration","start":null,"end":null,"loc":null,"range":null,"declarations":[{"type":"VariableDeclarator","start":null,"end":null,"loc":null,"range":null,"id":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"callThrow","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"init":{"type":"CallExpression","start":null,"end":null,"loc":null,"range":null,"callee":{"type":"MemberExpression","start":null,"end":null,"loc":null,"range":null,"object":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"step","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"property":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"bind","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"computed":false,"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"arguments":[{"type":"Literal","start":null,"end":null,"loc":null,"range":null,"value":null,"raw":null,"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null},{"type":"Literal","start":null,"end":null,"loc":null,"range":null,"value":"throw","raw":null,"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null}],"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"kind":"var","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},{"type":"FunctionDeclaration","start":null,"end":null,"loc":null,"range":null,"id":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"step","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"generator":false,"expression":false,"params":[{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"key","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"arg","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"body":{"type":"BlockStatement","start":null,"end":null,"loc":null,"range":null,"body":[{"type":"TryStatement","start":null,"end":null,"loc":null,"range":null,"block":{"type":"BlockStatement","start":null,"end":null,"loc":null,"range":null,"body":[{"type":"VariableDeclaration","start":null,"end":null,"loc":null,"range":null,"declarations":[{"type":"VariableDeclarator","start":null,"end":null,"loc":null,"range":null,"id":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"info","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"init":{"type":"CallExpression","start":null,"end":null,"loc":null,"range":null,"callee":{"type":"MemberExpression","start":null,"end":null,"loc":null,"range":null,"object":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"gen","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"property":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"key","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"computed":true,"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"arguments":[{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"arg","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"kind":"var","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},{"type":"VariableDeclaration","start":null,"end":null,"loc":null,"range":null,"declarations":[{"type":"VariableDeclarator","start":null,"end":null,"loc":null,"range":null,"id":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"value","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"init":{"type":"MemberExpression","start":null,"end":null,"loc":null,"range":null,"object":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"info","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"property":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"value","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"computed":false,"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"kind":"var","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"_scopeInfo":null,"_declarations":null,"extendedRange":null,"tokens":null,"raw":null},"handler":{"type":"CatchClause","start":null,"end":null,"loc":null,"range":null,"param":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"error","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"guard":null,"body":{"type":"BlockStatement","start":null,"end":null,"loc":null,"range":null,"body":[{"type":"ExpressionStatement","start":null,"end":null,"loc":null,"range":null,"expression":{"type":"CallExpression","start":null,"end":null,"loc":null,"range":null,"callee":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"reject","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"arguments":[{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"error","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},{"type":"ReturnStatement","start":null,"end":null,"loc":null,"range":null,"argument":null,"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"_scopeInfo":null,"_declarations":null,"extendedRange":null,"tokens":null,"raw":null},"_scopeInfo":null,"_declarations":null,"extendedRange":null,"tokens":null,"raw":null},"guardedHandlers":[],"finalizer":null,"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},{"type":"IfStatement","start":null,"end":null,"loc":null,"range":null,"test":{"type":"MemberExpression","start":null,"end":null,"loc":null,"range":null,"object":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"info","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"property":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"done","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"computed":false,"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"consequent":{"type":"BlockStatement","start":null,"end":null,"loc":null,"range":null,"body":[{"type":"ExpressionStatement","start":null,"end":null,"loc":null,"range":null,"expression":{"type":"CallExpression","start":null,"end":null,"loc":null,"range":null,"callee":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"resolve","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"arguments":[{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"value","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"_scopeInfo":null,"_declarations":null,"extendedRange":null,"tokens":null,"raw":null},"alternate":{"type":"BlockStatement","start":null,"end":null,"loc":null,"range":null,"body":[{"type":"ExpressionStatement","start":null,"end":null,"loc":null,"range":null,"expression":{"type":"CallExpression","start":null,"end":null,"loc":null,"range":null,"callee":{"type":"MemberExpression","start":null,"end":null,"loc":null,"range":null,"object":{"type":"CallExpression","start":null,"end":null,"loc":null,"range":null,"callee":{"type":"MemberExpression","start":null,"end":null,"loc":null,"range":null,"object":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"Promise","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"property":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"resolve","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"computed":false,"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"arguments":[{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"value","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"property":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"then","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"computed":false,"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"arguments":[{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"callNext","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"callThrow","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"_scopeInfo":null,"_declarations":null,"extendedRange":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"_scopeInfo":null,"_declarations":null,"extendedRange":null,"tokens":null,"raw":null},"_scopeInfo":null,"_declarations":null,"extendedRange":null,"tokens":null,"raw":null},{"type":"ExpressionStatement","start":null,"end":null,"loc":null,"range":null,"expression":{"type":"CallExpression","start":null,"end":null,"loc":null,"range":null,"callee":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"callNext","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"arguments":[],"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"_scopeInfo":null,"_declarations":null,"extendedRange":null,"tokens":null,"raw":null},"_scopeInfo":null,"_declarations":null,"extendedRange":null,"tokens":null,"raw":null}],"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"_scopeInfo":null,"_declarations":null,"extendedRange":null,"tokens":null,"raw":null},"_scopeInfo":null,"_declarations":null,"extendedRange":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"_scopeInfo":null,"_declarations":null,"extendedRange":null,"tokens":null,"raw":null},"_scopeInfo":null,"_declarations":null,"extendedRange":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"bind":{"type":"Program","start":null,"end":null,"loc":null,"range":null,"body":[{"type":"ExpressionStatement","start":null,"end":null,"loc":null,"range":null,"expression":{"type":"MemberExpression","start":null,"end":null,"loc":null,"range":null,"object":{"type":"MemberExpression","start":null,"end":null,"loc":null,"range":null,"object":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"Function","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"property":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"prototype","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"computed":false,"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"property":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"bind","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"computed":false,"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"call":{"type":"Program","start":null,"end":null,"loc":null,"range":null,"body":[{"type":"ExpressionStatement","start":null,"end":null,"loc":null,"range":null,"expression":{"type":"CallExpression","start":null,"end":null,"loc":null,"range":null,"callee":{"type":"MemberExpression","start":null,"end":null,"loc":null,"range":null,"object":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"OBJECT","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"property":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"call","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"computed":false,"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"arguments":[{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"CONTEXT","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"class-call-check":{"type":"Program","start":null,"end":null,"loc":null,"range":null,"body":[{"type":"ExpressionStatement","start":null,"end":null,"loc":null,"range":null,"expression":{"type":"FunctionExpression","start":null,"end":null,"loc":null,"range":null,"id":null,"generator":false,"expression":false,"params":[{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"instance","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"Constructor","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"body":{"type":"BlockStatement","start":null,"end":null,"loc":null,"range":null,"body":[{"type":"IfStatement","start":null,"end":null,"loc":null,"range":null,"test":{"type":"UnaryExpression","start":null,"end":null,"loc":null,"range":null,"operator":"!","prefix":true,"argument":{"type":"BinaryExpression","start":null,"end":null,"loc":null,"range":null,"left":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"instance","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"operator":"instanceof","right":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"Constructor","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"consequent":{"type":"BlockStatement","start":null,"end":null,"loc":null,"range":null,"body":[{"type":"ThrowStatement","start":null,"end":null,"loc":null,"range":null,"argument":{"type":"NewExpression","start":null,"end":null,"loc":null,"range":null,"callee":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"TypeError","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"arguments":[{"type":"Literal","start":null,"end":null,"loc":null,"range":null,"value":"Cannot call a class as a function","raw":null,"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null}],"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"_scopeInfo":null,"_declarations":null,"extendedRange":null,"tokens":null,"raw":null},"alternate":null,"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"_scopeInfo":null,"_declarations":null,"extendedRange":null,"tokens":null,"raw":null},"_scopeInfo":null,"_declarations":null,"extendedRange":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"class-super-constructor-call-loose":{"type":"Program","start":null,"end":null,"loc":null,"range":null,"body":[{"type":"IfStatement","start":null,"end":null,"loc":null,"range":null,"test":{"type":"BinaryExpression","start":null,"end":null,"loc":null,"range":null,"left":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"SUPER_NAME","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"operator":"!=","right":{"type":"Literal","start":null,"end":null,"loc":null,"range":null,"value":null,"raw":null,"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"consequent":{"type":"BlockStatement","start":null,"end":null,"loc":null,"range":null,"body":[{"type":"ExpressionStatement","start":null,"end":null,"loc":null,"range":null,"expression":{"type":"CallExpression","start":null,"end":null,"loc":null,"range":null,"callee":{"type":"MemberExpression","start":null,"end":null,"loc":null,"range":null,"object":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"SUPER_NAME","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"property":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"apply","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"computed":false,"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"arguments":[{"type":"ThisExpression","start":null,"end":null,"loc":null,"range":null,"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"arguments","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"_scopeInfo":null,"_declarations":null,"extendedRange":null,"tokens":null,"raw":null},"alternate":null,"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"class-super-constructor-call":{"type":"Program","start":null,"end":null,"loc":null,"range":null,"body":[{"type":"IfStatement","start":null,"end":null,"loc":null,"range":null,"test":{"type":"BinaryExpression","start":null,"end":null,"loc":null,"range":null,"left":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"SUPER_NAME","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"operator":"!=","right":{"type":"Literal","start":null,"end":null,"loc":null,"range":null,"value":null,"raw":null,"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"consequent":{"type":"BlockStatement","start":null,"end":null,"loc":null,"range":null,"body":[{"type":"ExpressionStatement","start":null,"end":null,"loc":null,"range":null,"expression":{"type":"CallExpression","start":null,"end":null,"loc":null,"range":null,"callee":{"type":"MemberExpression","start":null,"end":null,"loc":null,"range":null,"object":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"SUPER_NAME","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"property":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"apply","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"computed":false,"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"arguments":[{"type":"ThisExpression","start":null,"end":null,"loc":null,"range":null,"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"arguments","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"_scopeInfo":null,"_declarations":null,"extendedRange":null,"tokens":null,"raw":null},"alternate":null,"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"corejs-is-iterator":{"type":"Program","start":null,"end":null,"loc":null,"range":null,"body":[{"type":"ExpressionStatement","start":null,"end":null,"loc":null,"range":null,"expression":{"type":"CallExpression","start":null,"end":null,"loc":null,"range":null,"callee":{"type":"MemberExpression","start":null,"end":null,"loc":null,"range":null,"object":{"type":"MemberExpression","start":null,"end":null,"loc":null,"range":null,"object":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"CORE_ID","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"property":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"$for","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"computed":false,"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"property":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"isIterable","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"computed":false,"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"arguments":[{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"VALUE","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"corejs-iterator":{"type":"Program","start":null,"end":null,"loc":null,"range":null,"body":[{"type":"ExpressionStatement","start":null,"end":null,"loc":null,"range":null,"expression":{"type":"CallExpression","start":null,"end":null,"loc":null,"range":null,"callee":{"type":"MemberExpression","start":null,"end":null,"loc":null,"range":null,"object":{"type":"MemberExpression","start":null,"end":null,"loc":null,"range":null,"object":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"CORE_ID","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"property":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"$for","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"computed":false,"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"property":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"getIterator","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"computed":false,"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"arguments":[{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"VALUE","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"default-parameter":{"type":"Program","start":null,"end":null,"loc":null,"range":null,"body":[{"type":"VariableDeclaration","start":null,"end":null,"loc":null,"range":null,"declarations":[{"type":"VariableDeclarator","start":null,"end":null,"loc":null,"range":null,"id":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"VARIABLE_NAME","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"init":{"type":"ConditionalExpression","start":null,"end":null,"loc":null,"range":null,"test":{"type":"BinaryExpression","start":null,"end":null,"loc":null,"range":null,"left":{"type":"MemberExpression","start":null,"end":null,"loc":null,"range":null,"object":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"ARGUMENTS","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"property":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"ARGUMENT_KEY","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"computed":true,"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"operator":"===","right":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"undefined","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"consequent":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"DEFAULT_VALUE","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"alternate":{"type":"MemberExpression","start":null,"end":null,"loc":null,"range":null,"object":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"ARGUMENTS","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"property":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"ARGUMENT_KEY","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"computed":true,"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"kind":"let","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"defaults":{"type":"Program","start":null,"end":null,"loc":null,"range":null,"body":[{"type":"ExpressionStatement","start":null,"end":null,"loc":null,"range":null,"expression":{"type":"FunctionExpression","start":null,"end":null,"loc":null,"range":null,"id":null,"generator":false,"expression":false,"params":[{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"obj","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"defaults","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"body":{"type":"BlockStatement","start":null,"end":null,"loc":null,"range":null,"body":[{"type":"VariableDeclaration","start":null,"end":null,"loc":null,"range":null,"declarations":[{"type":"VariableDeclarator","start":null,"end":null,"loc":null,"range":null,"id":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"keys","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"init":{"type":"CallExpression","start":null,"end":null,"loc":null,"range":null,"callee":{"type":"MemberExpression","start":null,"end":null,"loc":null,"range":null,"object":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"Object","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"property":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"getOwnPropertyNames","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"computed":false,"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"arguments":[{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"defaults","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"kind":"var","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},{"type":"ForStatement","start":null,"end":null,"loc":null,"range":null,"init":{"type":"VariableDeclaration","start":null,"end":null,"loc":null,"range":null,"declarations":[{"type":"VariableDeclarator","start":null,"end":null,"loc":null,"range":null,"id":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"i","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"init":{"type":"Literal","start":null,"end":null,"loc":null,"range":null,"value":0,"raw":null,"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"kind":"var","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"test":{"type":"BinaryExpression","start":null,"end":null,"loc":null,"range":null,"left":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"i","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"operator":"<","right":{"type":"MemberExpression","start":null,"end":null,"loc":null,"range":null,"object":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"keys","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"property":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"length","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"computed":false,"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"update":{"type":"UpdateExpression","start":null,"end":null,"loc":null,"range":null,"operator":"++","prefix":false,"argument":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"i","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"body":{"type":"BlockStatement","start":null,"end":null,"loc":null,"range":null,"body":[{"type":"VariableDeclaration","start":null,"end":null,"loc":null,"range":null,"declarations":[{"type":"VariableDeclarator","start":null,"end":null,"loc":null,"range":null,"id":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"key","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"init":{"type":"MemberExpression","start":null,"end":null,"loc":null,"range":null,"object":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"keys","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"property":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"i","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"computed":true,"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"kind":"var","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},{"type":"VariableDeclaration","start":null,"end":null,"loc":null,"range":null,"declarations":[{"type":"VariableDeclarator","start":null,"end":null,"loc":null,"range":null,"id":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"value","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"init":{"type":"CallExpression","start":null,"end":null,"loc":null,"range":null,"callee":{"type":"MemberExpression","start":null,"end":null,"loc":null,"range":null,"object":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"Object","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"property":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"getOwnPropertyDescriptor","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"computed":false,"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"arguments":[{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"defaults","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"key","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"kind":"var","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},{"type":"IfStatement","start":null,"end":null,"loc":null,"range":null,"test":{"type":"LogicalExpression","start":null,"end":null,"loc":null,"range":null,"left":{"type":"LogicalExpression","start":null,"end":null,"loc":null,"range":null,"left":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"value","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"operator":"&&","right":{"type":"MemberExpression","start":null,"end":null,"loc":null,"range":null,"object":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"value","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"property":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"configurable","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"computed":false,"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"operator":"&&","right":{"type":"BinaryExpression","start":null,"end":null,"loc":null,"range":null,"left":{"type":"MemberExpression","start":null,"end":null,"loc":null,"range":null,"object":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"obj","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"property":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"key","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"computed":true,"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"operator":"===","right":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"undefined","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"consequent":{"type":"BlockStatement","start":null,"end":null,"loc":null,"range":null,"body":[{"type":"ExpressionStatement","start":null,"end":null,"loc":null,"range":null,"expression":{"type":"CallExpression","start":null,"end":null,"loc":null,"range":null,"callee":{"type":"MemberExpression","start":null,"end":null,"loc":null,"range":null,"object":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"Object","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"property":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"defineProperty","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"computed":false,"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"arguments":[{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"obj","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"key","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"value","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"_scopeInfo":null,"_declarations":null,"extendedRange":null,"tokens":null,"raw":null},"alternate":null,"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"_scopeInfo":null,"_declarations":null,"extendedRange":null,"tokens":null,"raw":null},"_scopeInfo":null,"_declarations":null,"extendedRange":null,"tokens":null,"raw":null},{"type":"ReturnStatement","start":null,"end":null,"loc":null,"range":null,"argument":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"obj","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"_scopeInfo":null,"_declarations":null,"extendedRange":null,"tokens":null,"raw":null},"_scopeInfo":null,"_declarations":null,"extendedRange":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"define-property":{"type":"Program","start":null,"end":null,"loc":null,"range":null,"body":[{"type":"ExpressionStatement","start":null,"end":null,"loc":null,"range":null,"expression":{"type":"FunctionExpression","start":null,"end":null,"loc":null,"range":null,"id":null,"generator":false,"expression":false,"params":[{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"obj","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"key","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"value","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"body":{"type":"BlockStatement","start":null,"end":null,"loc":null,"range":null,"body":[{"type":"ReturnStatement","start":null,"end":null,"loc":null,"range":null,"argument":{"type":"CallExpression","start":null,"end":null,"loc":null,"range":null,"callee":{"type":"MemberExpression","start":null,"end":null,"loc":null,"range":null,"object":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"Object","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"property":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"defineProperty","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"computed":false,"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"arguments":[{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"obj","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"key","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},{"type":"ObjectExpression","start":null,"end":null,"loc":null,"range":null,"properties":[{"type":"Property","start":null,"end":null,"loc":null,"range":null,"method":false,"shorthand":false,"computed":false,"key":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"value","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"value":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"value","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"kind":"init","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},{"type":"Property","start":null,"end":null,"loc":null,"range":null,"method":false,"shorthand":false,"computed":false,"key":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"enumerable","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"value":{"type":"Literal","start":null,"end":null,"loc":null,"range":null,"value":true,"raw":null,"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null},"kind":"init","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},{"type":"Property","start":null,"end":null,"loc":null,"range":null,"method":false,"shorthand":false,"computed":false,"key":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"configurable","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"value":{"type":"Literal","start":null,"end":null,"loc":null,"range":null,"value":true,"raw":null,"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null},"kind":"init","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},{"type":"Property","start":null,"end":null,"loc":null,"range":null,"method":false,"shorthand":false,"computed":false,"key":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"writable","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"value":{"type":"Literal","start":null,"end":null,"loc":null,"range":null,"value":true,"raw":null,"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null},"kind":"init","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"_scopeInfo":null,"_declarations":null,"extendedRange":null,"tokens":null,"raw":null},"_scopeInfo":null,"_declarations":null,"extendedRange":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"exports-assign":{"type":"Program","start":null,"end":null,"loc":null,"range":null,"body":[{"type":"ExpressionStatement","start":null,"end":null,"loc":null,"range":null,"expression":{"type":"AssignmentExpression","start":null,"end":null,"loc":null,"range":null,"operator":"=","left":{"type":"MemberExpression","start":null,"end":null,"loc":null,"range":null,"object":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"exports","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"property":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"KEY","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"computed":false,"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"right":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"VALUE","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"exports-default-assign":{"type":"Program","start":null,"end":null,"loc":null,"range":null,"body":[{"type":"ExpressionStatement","start":null,"end":null,"loc":null,"range":null,"expression":{"type":"AssignmentExpression","start":null,"end":null,"loc":null,"range":null,"operator":"=","left":{"type":"MemberExpression","start":null,"end":null,"loc":null,"range":null,"object":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"module","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"property":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"exports","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"computed":false,"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"right":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"VALUE","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"exports-module-declaration":{"type":"Program","start":null,"end":null,"loc":null,"range":null,"body":[{"type":"ExpressionStatement","start":null,"end":null,"loc":null,"range":null,"expression":{"type":"CallExpression","start":null,"end":null,"loc":null,"range":null,"callee":{"type":"MemberExpression","start":null,"end":null,"loc":null,"range":null,"object":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"Object","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"property":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"defineProperty","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"computed":false,"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"arguments":[{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"exports","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},{"type":"Literal","start":null,"end":null,"loc":null,"range":null,"value":"__esModule","raw":null,"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null},{"type":"ObjectExpression","start":null,"end":null,"loc":null,"range":null,"properties":[{"type":"Property","start":null,"end":null,"loc":null,"range":null,"method":false,"shorthand":false,"computed":false,"key":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"value","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"value":{"type":"Literal","start":null,"end":null,"loc":null,"range":null,"value":true,"raw":null,"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null},"kind":"init","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"extends":{"type":"Program","start":null,"end":null,"loc":null,"range":null,"body":[{"type":"ExpressionStatement","start":null,"end":null,"loc":null,"range":null,"expression":{"type":"LogicalExpression","start":null,"end":null,"loc":null,"range":null,"left":{"type":"MemberExpression","start":null,"end":null,"loc":null,"range":null,"object":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"Object","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"property":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"assign","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"computed":false,"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"operator":"||","right":{"type":"FunctionExpression","start":null,"end":null,"loc":null,"range":null,"id":null,"generator":false,"expression":false,"params":[{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"target","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"body":{"type":"BlockStatement","start":null,"end":null,"loc":null,"range":null,"body":[{"type":"ForStatement","start":null,"end":null,"loc":null,"range":null,"init":{"type":"VariableDeclaration","start":null,"end":null,"loc":null,"range":null,"declarations":[{"type":"VariableDeclarator","start":null,"end":null,"loc":null,"range":null,"id":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"i","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"init":{"type":"Literal","start":null,"end":null,"loc":null,"range":null,"value":1,"raw":null,"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"kind":"var","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"test":{"type":"BinaryExpression","start":null,"end":null,"loc":null,"range":null,"left":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"i","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"operator":"<","right":{"type":"MemberExpression","start":null,"end":null,"loc":null,"range":null,"object":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"arguments","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"property":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"length","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"computed":false,"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"update":{"type":"UpdateExpression","start":null,"end":null,"loc":null,"range":null,"operator":"++","prefix":false,"argument":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"i","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"body":{"type":"BlockStatement","start":null,"end":null,"loc":null,"range":null,"body":[{"type":"VariableDeclaration","start":null,"end":null,"loc":null,"range":null,"declarations":[{"type":"VariableDeclarator","start":null,"end":null,"loc":null,"range":null,"id":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"source","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"init":{"type":"MemberExpression","start":null,"end":null,"loc":null,"range":null,"object":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"arguments","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"property":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"i","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"computed":true,"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"kind":"var","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},{"type":"ForInStatement","start":null,"end":null,"loc":null,"range":null,"left":{"type":"VariableDeclaration","start":null,"end":null,"loc":null,"range":null,"declarations":[{"type":"VariableDeclarator","start":null,"end":null,"loc":null,"range":null,"id":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"key","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"init":null,"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"kind":"var","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"right":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"source","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"body":{"type":"BlockStatement","start":null,"end":null,"loc":null,"range":null,"body":[{"type":"IfStatement","start":null,"end":null,"loc":null,"range":null,"test":{"type":"CallExpression","start":null,"end":null,"loc":null,"range":null,"callee":{"type":"MemberExpression","start":null,"end":null,"loc":null,"range":null,"object":{"type":"MemberExpression","start":null,"end":null,"loc":null,"range":null,"object":{"type":"MemberExpression","start":null,"end":null,"loc":null,"range":null,"object":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"Object","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"property":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"prototype","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"computed":false,"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"property":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"hasOwnProperty","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"computed":false,"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"property":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"call","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"computed":false,"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"arguments":[{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"source","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"key","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"consequent":{"type":"BlockStatement","start":null,"end":null,"loc":null,"range":null,"body":[{"type":"ExpressionStatement","start":null,"end":null,"loc":null,"range":null,"expression":{"type":"AssignmentExpression","start":null,"end":null,"loc":null,"range":null,"operator":"=","left":{"type":"MemberExpression","start":null,"end":null,"loc":null,"range":null,"object":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"target","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"property":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"key","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"computed":true,"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"right":{"type":"MemberExpression","start":null,"end":null,"loc":null,"range":null,"object":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"source","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"property":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"key","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"computed":true,"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"_scopeInfo":null,"_declarations":null,"extendedRange":null,"tokens":null,"raw":null},"alternate":null,"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"_scopeInfo":null,"_declarations":null,"extendedRange":null,"tokens":null,"raw":null},"_scopeInfo":null,"_declarations":null,"extendedRange":null,"tokens":null,"raw":null}],"_scopeInfo":null,"_declarations":null,"extendedRange":null,"tokens":null,"raw":null},"_scopeInfo":null,"_declarations":null,"extendedRange":null,"tokens":null,"raw":null},{"type":"ReturnStatement","start":null,"end":null,"loc":null,"range":null,"argument":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"target","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"_scopeInfo":null,"_declarations":null,"extendedRange":null,"tokens":null,"raw":null},"_scopeInfo":null,"_declarations":null,"extendedRange":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"for-of-loose":{"type":"Program","start":null,"end":null,"loc":null,"range":null,"body":[{"type":"ForStatement","start":null,"end":null,"loc":null,"range":null,"init":{"type":"VariableDeclaration","start":null,"end":null,"loc":null,"range":null,"declarations":[{"type":"VariableDeclarator","start":null,"end":null,"loc":null,"range":null,"id":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"LOOP_OBJECT","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"init":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"OBJECT","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},{"type":"VariableDeclarator","start":null,"end":null,"loc":null,"range":null,"id":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"IS_ARRAY","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"init":{"type":"CallExpression","start":null,"end":null,"loc":null,"range":null,"callee":{"type":"MemberExpression","start":null,"end":null,"loc":null,"range":null,"object":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"Array","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"property":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"isArray","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"computed":false,"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"arguments":[{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"LOOP_OBJECT","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},{"type":"VariableDeclarator","start":null,"end":null,"loc":null,"range":null,"id":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"INDEX","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"init":{"type":"Literal","start":null,"end":null,"loc":null,"range":null,"value":0,"raw":null,"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},{"type":"VariableDeclarator","start":null,"end":null,"loc":null,"range":null,"id":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"LOOP_OBJECT","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"init":{"type":"ConditionalExpression","start":null,"end":null,"loc":null,"range":null,"test":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"IS_ARRAY","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"consequent":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"LOOP_OBJECT","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"alternate":{"type":"CallExpression","start":null,"end":null,"loc":null,"range":null,"callee":{"type":"MemberExpression","start":null,"end":null,"loc":null,"range":null,"object":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"LOOP_OBJECT","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"property":{"type":"MemberExpression","start":null,"end":null,"loc":null,"range":null,"object":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"Symbol","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"property":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"iterator","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"computed":false,"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"computed":true,"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"arguments":[],"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"kind":"var","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"test":null,"update":null,"body":{"type":"BlockStatement","start":null,"end":null,"loc":null,"range":null,"body":[{"type":"VariableDeclaration","start":null,"end":null,"loc":null,"range":null,"declarations":[{"type":"VariableDeclarator","start":null,"end":null,"loc":null,"range":null,"id":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"ID","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"init":null,"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"kind":"var","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},{"type":"IfStatement","start":null,"end":null,"loc":null,"range":null,"test":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"IS_ARRAY","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"consequent":{"type":"BlockStatement","start":null,"end":null,"loc":null,"range":null,"body":[{"type":"IfStatement","start":null,"end":null,"loc":null,"range":null,"test":{"type":"BinaryExpression","start":null,"end":null,"loc":null,"range":null,"left":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"INDEX","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"operator":">=","right":{"type":"MemberExpression","start":null,"end":null,"loc":null,"range":null,"object":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"LOOP_OBJECT","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"property":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"length","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"computed":false,"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"consequent":{"type":"BreakStatement","start":null,"end":null,"loc":null,"range":null,"label":null,"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"alternate":null,"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},{"type":"ExpressionStatement","start":null,"end":null,"loc":null,"range":null,"expression":{"type":"AssignmentExpression","start":null,"end":null,"loc":null,"range":null,"operator":"=","left":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"ID","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"right":{"type":"MemberExpression","start":null,"end":null,"loc":null,"range":null,"object":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"LOOP_OBJECT","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"property":{"type":"UpdateExpression","start":null,"end":null,"loc":null,"range":null,"operator":"++","prefix":false,"argument":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"INDEX","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"computed":true,"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"_scopeInfo":null,"_declarations":null,"extendedRange":null,"tokens":null,"raw":null},"alternate":{"type":"BlockStatement","start":null,"end":null,"loc":null,"range":null,"body":[{"type":"ExpressionStatement","start":null,"end":null,"loc":null,"range":null,"expression":{"type":"AssignmentExpression","start":null,"end":null,"loc":null,"range":null,"operator":"=","left":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"INDEX","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"right":{"type":"CallExpression","start":null,"end":null,"loc":null,"range":null,"callee":{"type":"MemberExpression","start":null,"end":null,"loc":null,"range":null,"object":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"LOOP_OBJECT","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"property":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"next","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"computed":false,"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"arguments":[],"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},{"type":"IfStatement","start":null,"end":null,"loc":null,"range":null,"test":{"type":"MemberExpression","start":null,"end":null,"loc":null,"range":null,"object":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"INDEX","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"property":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"done","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"computed":false,"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"consequent":{"type":"BreakStatement","start":null,"end":null,"loc":null,"range":null,"label":null,"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"alternate":null,"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},{"type":"ExpressionStatement","start":null,"end":null,"loc":null,"range":null,"expression":{"type":"AssignmentExpression","start":null,"end":null,"loc":null,"range":null,"operator":"=","left":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"ID","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"right":{"type":"MemberExpression","start":null,"end":null,"loc":null,"range":null,"object":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"INDEX","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"property":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"value","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"computed":false,"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"_scopeInfo":null,"_declarations":null,"extendedRange":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"_scopeInfo":null,"_declarations":null,"extendedRange":null,"tokens":null,"raw":null},"_scopeInfo":null,"_declarations":null,"extendedRange":null,"tokens":null,"raw":null}],"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"for-of":{"type":"Program","start":null,"end":null,"loc":null,"range":null,"body":[{"type":"ForStatement","start":null,"end":null,"loc":null,"range":null,"init":{"type":"VariableDeclaration","start":null,"end":null,"loc":null,"range":null,"declarations":[{"type":"VariableDeclarator","start":null,"end":null,"loc":null,"range":null,"id":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"ITERATOR_KEY","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"init":{"type":"CallExpression","start":null,"end":null,"loc":null,"range":null,"callee":{"type":"MemberExpression","start":null,"end":null,"loc":null,"range":null,"object":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"OBJECT","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"property":{"type":"MemberExpression","start":null,"end":null,"loc":null,"range":null,"object":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"Symbol","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"property":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"iterator","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"computed":false,"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"computed":true,"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"arguments":[],"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},{"type":"VariableDeclarator","start":null,"end":null,"loc":null,"range":null,"id":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"STEP_KEY","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"init":null,"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"kind":"var","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"test":{"type":"UnaryExpression","start":null,"end":null,"loc":null,"range":null,"operator":"!","prefix":true,"argument":{"type":"MemberExpression","start":null,"end":null,"loc":null,"range":null,"object":{"type":"AssignmentExpression","start":null,"end":null,"loc":null,"range":null,"operator":"=","left":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"STEP_KEY","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"right":{"type":"CallExpression","start":null,"end":null,"loc":null,"range":null,"callee":{"type":"MemberExpression","start":null,"end":null,"loc":null,"range":null,"object":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"ITERATOR_KEY","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"property":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"next","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"computed":false,"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"arguments":[],"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"property":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"done","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"computed":false,"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"update":null,"body":{"type":"BlockStatement","start":null,"end":null,"loc":null,"range":null,"body":[],"_scopeInfo":null,"_declarations":null,"extendedRange":null,"tokens":null,"raw":null},"_scopeInfo":null,"_declarations":null,"extendedRange":null,"tokens":null,"raw":null}],"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"get":{"type":"Program","start":null,"end":null,"loc":null,"range":null,"body":[{"type":"ExpressionStatement","start":null,"end":null,"loc":null,"range":null,"expression":{"type":"FunctionExpression","start":null,"end":null,"loc":null,"range":null,"id":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"get","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"generator":false,"expression":false,"params":[{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"object","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"property","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"receiver","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"body":{"type":"BlockStatement","start":null,"end":null,"loc":null,"range":null,"body":[{"type":"VariableDeclaration","start":null,"end":null,"loc":null,"range":null,"declarations":[{"type":"VariableDeclarator","start":null,"end":null,"loc":null,"range":null,"id":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"desc","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"init":{"type":"CallExpression","start":null,"end":null,"loc":null,"range":null,"callee":{"type":"MemberExpression","start":null,"end":null,"loc":null,"range":null,"object":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"Object","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"property":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"getOwnPropertyDescriptor","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"computed":false,"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"arguments":[{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"object","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"property","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"kind":"var","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},{"type":"IfStatement","start":null,"end":null,"loc":null,"range":null,"test":{"type":"BinaryExpression","start":null,"end":null,"loc":null,"range":null,"left":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"desc","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"operator":"===","right":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"undefined","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"consequent":{"type":"BlockStatement","start":null,"end":null,"loc":null,"range":null,"body":[{"type":"VariableDeclaration","start":null,"end":null,"loc":null,"range":null,"declarations":[{"type":"VariableDeclarator","start":null,"end":null,"loc":null,"range":null,"id":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"parent","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"init":{"type":"CallExpression","start":null,"end":null,"loc":null,"range":null,"callee":{"type":"MemberExpression","start":null,"end":null,"loc":null,"range":null,"object":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"Object","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"property":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"getPrototypeOf","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"computed":false,"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"arguments":[{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"object","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"kind":"var","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},{"type":"IfStatement","start":null,"end":null,"loc":null,"range":null,"test":{"type":"BinaryExpression","start":null,"end":null,"loc":null,"range":null,"left":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"parent","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"operator":"===","right":{"type":"Literal","start":null,"end":null,"loc":null,"range":null,"value":null,"raw":null,"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"consequent":{"type":"BlockStatement","start":null,"end":null,"loc":null,"range":null,"body":[{"type":"ReturnStatement","start":null,"end":null,"loc":null,"range":null,"argument":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"undefined","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"_scopeInfo":null,"_declarations":null,"extendedRange":null,"tokens":null,"raw":null},"alternate":{"type":"BlockStatement","start":null,"end":null,"loc":null,"range":null,"body":[{"type":"ReturnStatement","start":null,"end":null,"loc":null,"range":null,"argument":{"type":"CallExpression","start":null,"end":null,"loc":null,"range":null,"callee":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"get","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"arguments":[{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"parent","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"property","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"receiver","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"_scopeInfo":null,"_declarations":null,"extendedRange":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"_scopeInfo":null,"_declarations":null,"extendedRange":null,"tokens":null,"raw":null},"alternate":{"type":"IfStatement","start":null,"end":null,"loc":null,"range":null,"test":{"type":"LogicalExpression","start":null,"end":null,"loc":null,"range":null,"left":{"type":"BinaryExpression","start":null,"end":null,"loc":null,"range":null,"left":{"type":"Literal","start":null,"end":null,"loc":null,"range":null,"value":"value","raw":null,"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null},"operator":"in","right":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"desc","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"operator":"&&","right":{"type":"MemberExpression","start":null,"end":null,"loc":null,"range":null,"object":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"desc","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"property":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"writable","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"computed":false,"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"consequent":{"type":"BlockStatement","start":null,"end":null,"loc":null,"range":null,"body":[{"type":"ReturnStatement","start":null,"end":null,"loc":null,"range":null,"argument":{"type":"MemberExpression","start":null,"end":null,"loc":null,"range":null,"object":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"desc","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"property":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"value","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"computed":false,"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"_scopeInfo":null,"_declarations":null,"extendedRange":null,"tokens":null,"raw":null},"alternate":{"type":"BlockStatement","start":null,"end":null,"loc":null,"range":null,"body":[{"type":"VariableDeclaration","start":null,"end":null,"loc":null,"range":null,"declarations":[{"type":"VariableDeclarator","start":null,"end":null,"loc":null,"range":null,"id":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"getter","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"init":{"type":"MemberExpression","start":null,"end":null,"loc":null,"range":null,"object":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"desc","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"property":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"get","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"computed":false,"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"kind":"var","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},{"type":"IfStatement","start":null,"end":null,"loc":null,"range":null,"test":{"type":"BinaryExpression","start":null,"end":null,"loc":null,"range":null,"left":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"getter","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"operator":"===","right":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"undefined","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"consequent":{"type":"BlockStatement","start":null,"end":null,"loc":null,"range":null,"body":[{"type":"ReturnStatement","start":null,"end":null,"loc":null,"range":null,"argument":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"undefined","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"_scopeInfo":null,"_declarations":null,"extendedRange":null,"tokens":null,"raw":null},"alternate":null,"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},{"type":"ReturnStatement","start":null,"end":null,"loc":null,"range":null,"argument":{"type":"CallExpression","start":null,"end":null,"loc":null,"range":null,"callee":{"type":"MemberExpression","start":null,"end":null,"loc":null,"range":null,"object":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"getter","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"property":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"call","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"computed":false,"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"arguments":[{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"receiver","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"_scopeInfo":null,"_declarations":null,"extendedRange":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"_scopeInfo":null,"_declarations":null,"extendedRange":null,"tokens":null,"raw":null},"_scopeInfo":null,"_declarations":null,"extendedRange":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"has-own":{"type":"Program","start":null,"end":null,"loc":null,"range":null,"body":[{"type":"ExpressionStatement","start":null,"end":null,"loc":null,"range":null,"expression":{"type":"MemberExpression","start":null,"end":null,"loc":null,"range":null,"object":{"type":"MemberExpression","start":null,"end":null,"loc":null,"range":null,"object":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"Object","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"property":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"prototype","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"computed":false,"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"property":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"hasOwnProperty","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"computed":false,"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"inherits":{"type":"Program","start":null,"end":null,"loc":null,"range":null,"body":[{"type":"ExpressionStatement","start":null,"end":null,"loc":null,"range":null,"expression":{"type":"FunctionExpression","start":null,"end":null,"loc":null,"range":null,"id":null,"generator":false,"expression":false,"params":[{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"subClass","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"superClass","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"body":{"type":"BlockStatement","start":null,"end":null,"loc":null,"range":null,"body":[{"type":"IfStatement","start":null,"end":null,"loc":null,"range":null,"test":{"type":"LogicalExpression","start":null,"end":null,"loc":null,"range":null,"left":{"type":"BinaryExpression","start":null,"end":null,"loc":null,"range":null,"left":{"type":"UnaryExpression","start":null,"end":null,"loc":null,"range":null,"operator":"typeof","prefix":true,"argument":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"superClass","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"operator":"!==","right":{"type":"Literal","start":null,"end":null,"loc":null,"range":null,"value":"function","raw":null,"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"operator":"&&","right":{"type":"BinaryExpression","start":null,"end":null,"loc":null,"range":null,"left":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"superClass","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"operator":"!==","right":{"type":"Literal","start":null,"end":null,"loc":null,"range":null,"value":null,"raw":null,"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"consequent":{"type":"BlockStatement","start":null,"end":null,"loc":null,"range":null,"body":[{"type":"ThrowStatement","start":null,"end":null,"loc":null,"range":null,"argument":{"type":"NewExpression","start":null,"end":null,"loc":null,"range":null,"callee":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"TypeError","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"arguments":[{"type":"BinaryExpression","start":null,"end":null,"loc":null,"range":null,"left":{"type":"Literal","start":null,"end":null,"loc":null,"range":null,"value":"Super expression must either be null or a function, not ","raw":null,"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null},"operator":"+","right":{"type":"UnaryExpression","start":null,"end":null,"loc":null,"range":null,"operator":"typeof","prefix":true,"argument":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"superClass","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"_scopeInfo":null,"_declarations":null,"extendedRange":null,"tokens":null,"raw":null},"alternate":null,"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},{"type":"ExpressionStatement","start":null,"end":null,"loc":null,"range":null,"expression":{"type":"AssignmentExpression","start":null,"end":null,"loc":null,"range":null,"operator":"=","left":{"type":"MemberExpression","start":null,"end":null,"loc":null,"range":null,"object":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"subClass","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"property":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"prototype","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"computed":false,"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"right":{"type":"CallExpression","start":null,"end":null,"loc":null,"range":null,"callee":{"type":"MemberExpression","start":null,"end":null,"loc":null,"range":null,"object":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"Object","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"property":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"create","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"computed":false,"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"arguments":[{"type":"LogicalExpression","start":null,"end":null,"loc":null,"range":null,"left":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"superClass","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"operator":"&&","right":{"type":"MemberExpression","start":null,"end":null,"loc":null,"range":null,"object":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"superClass","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"property":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"prototype","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"computed":false,"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},{"type":"ObjectExpression","start":null,"end":null,"loc":null,"range":null,"properties":[{"type":"Property","start":null,"end":null,"loc":null,"range":null,"method":false,"shorthand":false,"computed":false,"key":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"constructor","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"value":{"type":"ObjectExpression","start":null,"end":null,"loc":null,"range":null,"properties":[{"type":"Property","start":null,"end":null,"loc":null,"range":null,"method":false,"shorthand":false,"computed":false,"key":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"value","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"value":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"subClass","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"kind":"init","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},{"type":"Property","start":null,"end":null,"loc":null,"range":null,"method":false,"shorthand":false,"computed":false,"key":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"enumerable","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"value":{"type":"Literal","start":null,"end":null,"loc":null,"range":null,"value":false,"raw":null,"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null},"kind":"init","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},{"type":"Property","start":null,"end":null,"loc":null,"range":null,"method":false,"shorthand":false,"computed":false,"key":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"writable","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"value":{"type":"Literal","start":null,"end":null,"loc":null,"range":null,"value":true,"raw":null,"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null},"kind":"init","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},{"type":"Property","start":null,"end":null,"loc":null,"range":null,"method":false,"shorthand":false,"computed":false,"key":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"configurable","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"value":{"type":"Literal","start":null,"end":null,"loc":null,"range":null,"value":true,"raw":null,"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null},"kind":"init","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"kind":"init","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},{"type":"IfStatement","start":null,"end":null,"loc":null,"range":null,"test":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"superClass","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"consequent":{"type":"ExpressionStatement","start":null,"end":null,"loc":null,"range":null,"expression":{"type":"AssignmentExpression","start":null,"end":null,"loc":null,"range":null,"operator":"=","left":{"type":"MemberExpression","start":null,"end":null,"loc":null,"range":null,"object":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"subClass","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"property":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"__proto__","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"computed":false,"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"right":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"superClass","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"alternate":null,"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"_scopeInfo":null,"_declarations":null,"extendedRange":null,"tokens":null,"raw":null},"_scopeInfo":null,"_declarations":null,"extendedRange":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"interop-require-wildcard":{"type":"Program","start":null,"end":null,"loc":null,"range":null,"body":[{"type":"ExpressionStatement","start":null,"end":null,"loc":null,"range":null,"expression":{"type":"FunctionExpression","start":null,"end":null,"loc":null,"range":null,"id":null,"generator":false,"expression":false,"params":[{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"obj","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"body":{"type":"BlockStatement","start":null,"end":null,"loc":null,"range":null,"body":[{"type":"ReturnStatement","start":null,"end":null,"loc":null,"range":null,"argument":{"type":"ConditionalExpression","start":null,"end":null,"loc":null,"range":null,"test":{"type":"LogicalExpression","start":null,"end":null,"loc":null,"range":null,"left":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"obj","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"operator":"&&","right":{"type":"MemberExpression","start":null,"end":null,"loc":null,"range":null,"object":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"obj","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"property":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"__esModule","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"computed":false,"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"consequent":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"obj","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"alternate":{"type":"ObjectExpression","start":null,"end":null,"loc":null,"range":null,"properties":[{"type":"Property","start":null,"end":null,"loc":null,"range":null,"method":false,"shorthand":false,"computed":false,"key":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"default","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"value":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"obj","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"kind":"init","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"_scopeInfo":null,"_declarations":null,"extendedRange":null,"tokens":null,"raw":null},"_scopeInfo":null,"_declarations":null,"extendedRange":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"interop-require":{"type":"Program","start":null,"end":null,"loc":null,"range":null,"body":[{"type":"ExpressionStatement","start":null,"end":null,"loc":null,"range":null,"expression":{"type":"FunctionExpression","start":null,"end":null,"loc":null,"range":null,"id":null,"generator":false,"expression":false,"params":[{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"obj","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"body":{"type":"BlockStatement","start":null,"end":null,"loc":null,"range":null,"body":[{"type":"ReturnStatement","start":null,"end":null,"loc":null,"range":null,"argument":{"type":"ConditionalExpression","start":null,"end":null,"loc":null,"range":null,"test":{"type":"LogicalExpression","start":null,"end":null,"loc":null,"range":null,"left":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"obj","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"operator":"&&","right":{"type":"MemberExpression","start":null,"end":null,"loc":null,"range":null,"object":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"obj","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"property":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"__esModule","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"computed":false,"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"consequent":{"type":"MemberExpression","start":null,"end":null,"loc":null,"range":null,"object":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"obj","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"property":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"default","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"computed":false,"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"alternate":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"obj","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"_scopeInfo":null,"_declarations":null,"extendedRange":null,"tokens":null,"raw":null},"_scopeInfo":null,"_declarations":null,"extendedRange":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"let-scoping-return":{"type":"Program","start":null,"end":null,"loc":null,"range":null,"body":[{"type":"IfStatement","start":null,"end":null,"loc":null,"range":null,"test":{"type":"BinaryExpression","start":null,"end":null,"loc":null,"range":null,"left":{"type":"UnaryExpression","start":null,"end":null,"loc":null,"range":null,"operator":"typeof","prefix":true,"argument":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"RETURN","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"operator":"===","right":{"type":"Literal","start":null,"end":null,"loc":null,"range":null,"value":"object","raw":null,"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"consequent":{"type":"ReturnStatement","start":null,"end":null,"loc":null,"range":null,"argument":{"type":"MemberExpression","start":null,"end":null,"loc":null,"range":null,"object":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"RETURN","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"property":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"v","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"computed":false,"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"alternate":null,"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"object-destructuring-empty":{"type":"Program","start":null,"end":null,"loc":null,"range":null,"body":[{"type":"ExpressionStatement","start":null,"end":null,"loc":null,"range":null,"expression":{"type":"FunctionExpression","start":null,"end":null,"loc":null,"range":null,"id":null,"generator":false,"expression":false,"params":[{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"obj","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"body":{"type":"BlockStatement","start":null,"end":null,"loc":null,"range":null,"body":[{"type":"IfStatement","start":null,"end":null,"loc":null,"range":null,"test":{"type":"BinaryExpression","start":null,"end":null,"loc":null,"range":null,"left":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"obj","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"operator":"==","right":{"type":"Literal","start":null,"end":null,"loc":null,"range":null,"value":null,"raw":null,"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"consequent":{"type":"ThrowStatement","start":null,"end":null,"loc":null,"range":null,"argument":{"type":"NewExpression","start":null,"end":null,"loc":null,"range":null,"callee":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"TypeError","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"arguments":[{"type":"Literal","start":null,"end":null,"loc":null,"range":null,"value":"Cannot destructure undefined","raw":null,"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null}],"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"alternate":null,"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"_scopeInfo":null,"_declarations":null,"extendedRange":null,"tokens":null,"raw":null},"_scopeInfo":null,"_declarations":null,"extendedRange":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"object-without-properties":{"type":"Program","start":null,"end":null,"loc":null,"range":null,"body":[{"type":"ExpressionStatement","start":null,"end":null,"loc":null,"range":null,"expression":{"type":"FunctionExpression","start":null,"end":null,"loc":null,"range":null,"id":null,"generator":false,"expression":false,"params":[{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"obj","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"keys","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"body":{"type":"BlockStatement","start":null,"end":null,"loc":null,"range":null,"body":[{"type":"VariableDeclaration","start":null,"end":null,"loc":null,"range":null,"declarations":[{"type":"VariableDeclarator","start":null,"end":null,"loc":null,"range":null,"id":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"target","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"init":{"type":"ObjectExpression","start":null,"end":null,"loc":null,"range":null,"properties":[],"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"kind":"var","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},{"type":"ForInStatement","start":null,"end":null,"loc":null,"range":null,"left":{"type":"VariableDeclaration","start":null,"end":null,"loc":null,"range":null,"declarations":[{"type":"VariableDeclarator","start":null,"end":null,"loc":null,"range":null,"id":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"i","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"init":null,"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"kind":"var","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"right":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"obj","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"body":{"type":"BlockStatement","start":null,"end":null,"loc":null,"range":null,"body":[{"type":"IfStatement","start":null,"end":null,"loc":null,"range":null,"test":{"type":"BinaryExpression","start":null,"end":null,"loc":null,"range":null,"left":{"type":"CallExpression","start":null,"end":null,"loc":null,"range":null,"callee":{"type":"MemberExpression","start":null,"end":null,"loc":null,"range":null,"object":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"keys","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"property":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"indexOf","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"computed":false,"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"arguments":[{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"i","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"operator":">=","right":{"type":"Literal","start":null,"end":null,"loc":null,"range":null,"value":0,"raw":null,"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"consequent":{"type":"ContinueStatement","start":null,"end":null,"loc":null,"range":null,"label":null,"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"alternate":null,"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},{"type":"IfStatement","start":null,"end":null,"loc":null,"range":null,"test":{"type":"UnaryExpression","start":null,"end":null,"loc":null,"range":null,"operator":"!","prefix":true,"argument":{"type":"CallExpression","start":null,"end":null,"loc":null,"range":null,"callee":{"type":"MemberExpression","start":null,"end":null,"loc":null,"range":null,"object":{"type":"MemberExpression","start":null,"end":null,"loc":null,"range":null,"object":{"type":"MemberExpression","start":null,"end":null,"loc":null,"range":null,"object":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"Object","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"property":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"prototype","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"computed":false,"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"property":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"hasOwnProperty","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"computed":false,"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"property":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"call","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"computed":false,"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"arguments":[{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"obj","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"i","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"consequent":{"type":"ContinueStatement","start":null,"end":null,"loc":null,"range":null,"label":null,"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"alternate":null,"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},{"type":"ExpressionStatement","start":null,"end":null,"loc":null,"range":null,"expression":{"type":"AssignmentExpression","start":null,"end":null,"loc":null,"range":null,"operator":"=","left":{"type":"MemberExpression","start":null,"end":null,"loc":null,"range":null,"object":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"target","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"property":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"i","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"computed":true,"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"right":{"type":"MemberExpression","start":null,"end":null,"loc":null,"range":null,"object":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"obj","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"property":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"i","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"computed":true,"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"_scopeInfo":null,"_declarations":null,"extendedRange":null,"tokens":null,"raw":null},"_scopeInfo":null,"_declarations":null,"extendedRange":null,"tokens":null,"raw":null},{"type":"ReturnStatement","start":null,"end":null,"loc":null,"range":null,"argument":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"target","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"_scopeInfo":null,"_declarations":null,"extendedRange":null,"tokens":null,"raw":null},"_scopeInfo":null,"_declarations":null,"extendedRange":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"property-method-assignment-wrapper-generator":{"type":"Program","start":null,"end":null,"loc":null,"range":null,"body":[{"type":"ExpressionStatement","start":null,"end":null,"loc":null,"range":null,"expression":{"type":"CallExpression","start":null,"end":null,"loc":null,"range":null,"callee":{"type":"FunctionExpression","start":null,"end":null,"loc":null,"range":null,"id":null,"generator":false,"expression":false,"params":[{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"FUNCTION_KEY","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"body":{"type":"BlockStatement","start":null,"end":null,"loc":null,"range":null,"body":[{"type":"VariableDeclaration","start":null,"end":null,"loc":null,"range":null,"declarations":[{"type":"VariableDeclarator","start":null,"end":null,"loc":null,"range":null,"id":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"WRAPPER_KEY","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"init":{"type":"FunctionExpression","start":null,"end":null,"loc":null,"range":null,"id":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"FUNCTION_ID","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"generator":true,"expression":false,"params":[],"body":{"type":"BlockStatement","start":null,"end":null,"loc":null,"range":null,"body":[{"type":"ReturnStatement","start":null,"end":null,"loc":null,"range":null,"argument":{"type":"YieldExpression","start":null,"end":null,"loc":null,"range":null,"delegate":true,"argument":{"type":"CallExpression","start":null,"end":null,"loc":null,"range":null,"callee":{"type":"MemberExpression","start":null,"end":null,"loc":null,"range":null,"object":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"FUNCTION_KEY","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"property":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"apply","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"computed":false,"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"arguments":[{"type":"ThisExpression","start":null,"end":null,"loc":null,"range":null,"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"arguments","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"_scopeInfo":null,"_declarations":null,"extendedRange":null,"tokens":null,"raw":null},"_scopeInfo":null,"_declarations":null,"extendedRange":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"kind":"var","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},{"type":"ExpressionStatement","start":null,"end":null,"loc":null,"range":null,"expression":{"type":"AssignmentExpression","start":null,"end":null,"loc":null,"range":null,"operator":"=","left":{"type":"MemberExpression","start":null,"end":null,"loc":null,"range":null,"object":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"WRAPPER_KEY","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"property":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"toString","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"computed":false,"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"right":{"type":"FunctionExpression","start":null,"end":null,"loc":null,"range":null,"id":null,"generator":false,"expression":false,"params":[],"body":{"type":"BlockStatement","start":null,"end":null,"loc":null,"range":null,"body":[{"type":"ReturnStatement","start":null,"end":null,"loc":null,"range":null,"argument":{"type":"CallExpression","start":null,"end":null,"loc":null,"range":null,"callee":{"type":"MemberExpression","start":null,"end":null,"loc":null,"range":null,"object":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"FUNCTION_KEY","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"property":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"toString","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"computed":false,"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"arguments":[],"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"_scopeInfo":null,"_declarations":null,"extendedRange":null,"tokens":null,"raw":null},"_scopeInfo":null,"_declarations":null,"extendedRange":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},{"type":"ReturnStatement","start":null,"end":null,"loc":null,"range":null,"argument":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"WRAPPER_KEY","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"_scopeInfo":null,"_declarations":null,"extendedRange":null,"tokens":null,"raw":null},"_scopeInfo":null,"_declarations":null,"extendedRange":null,"tokens":null,"raw":null},"arguments":[{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"FUNCTION","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"property-method-assignment-wrapper":{"type":"Program","start":null,"end":null,"loc":null,"range":null,"body":[{"type":"ExpressionStatement","start":null,"end":null,"loc":null,"range":null,"expression":{"type":"CallExpression","start":null,"end":null,"loc":null,"range":null,"callee":{"type":"FunctionExpression","start":null,"end":null,"loc":null,"range":null,"id":null,"generator":false,"expression":false,"params":[{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"FUNCTION_KEY","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"body":{"type":"BlockStatement","start":null,"end":null,"loc":null,"range":null,"body":[{"type":"VariableDeclaration","start":null,"end":null,"loc":null,"range":null,"declarations":[{"type":"VariableDeclarator","start":null,"end":null,"loc":null,"range":null,"id":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"WRAPPER_KEY","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"init":{"type":"FunctionExpression","start":null,"end":null,"loc":null,"range":null,"id":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"FUNCTION_ID","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"generator":false,"expression":false,"params":[],"body":{"type":"BlockStatement","start":null,"end":null,"loc":null,"range":null,"body":[{"type":"ReturnStatement","start":null,"end":null,"loc":null,"range":null,"argument":{"type":"CallExpression","start":null,"end":null,"loc":null,"range":null,"callee":{"type":"MemberExpression","start":null,"end":null,"loc":null,"range":null,"object":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"FUNCTION_KEY","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"property":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"apply","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"computed":false,"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"arguments":[{"type":"ThisExpression","start":null,"end":null,"loc":null,"range":null,"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"arguments","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"_scopeInfo":null,"_declarations":null,"extendedRange":null,"tokens":null,"raw":null},"_scopeInfo":null,"_declarations":null,"extendedRange":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"kind":"var","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},{"type":"ExpressionStatement","start":null,"end":null,"loc":null,"range":null,"expression":{"type":"AssignmentExpression","start":null,"end":null,"loc":null,"range":null,"operator":"=","left":{"type":"MemberExpression","start":null,"end":null,"loc":null,"range":null,"object":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"WRAPPER_KEY","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"property":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"toString","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"computed":false,"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"right":{"type":"FunctionExpression","start":null,"end":null,"loc":null,"range":null,"id":null,"generator":false,"expression":false,"params":[],"body":{"type":"BlockStatement","start":null,"end":null,"loc":null,"range":null,"body":[{"type":"ReturnStatement","start":null,"end":null,"loc":null,"range":null,"argument":{"type":"CallExpression","start":null,"end":null,"loc":null,"range":null,"callee":{"type":"MemberExpression","start":null,"end":null,"loc":null,"range":null,"object":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"FUNCTION_KEY","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"property":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"toString","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"computed":false,"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"arguments":[],"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"_scopeInfo":null,"_declarations":null,"extendedRange":null,"tokens":null,"raw":null},"_scopeInfo":null,"_declarations":null,"extendedRange":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},{"type":"ReturnStatement","start":null,"end":null,"loc":null,"range":null,"argument":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"WRAPPER_KEY","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"_scopeInfo":null,"_declarations":null,"extendedRange":null,"tokens":null,"raw":null},"_scopeInfo":null,"_declarations":null,"extendedRange":null,"tokens":null,"raw":null},"arguments":[{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"FUNCTION","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"prototype-identifier":{"type":"Program","start":null,"end":null,"loc":null,"range":null,"body":[{"type":"ExpressionStatement","start":null,"end":null,"loc":null,"range":null,"expression":{"type":"MemberExpression","start":null,"end":null,"loc":null,"range":null,"object":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"CLASS_NAME","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"property":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"prototype","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"computed":false,"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"prototype-properties":{"type":"Program","start":null,"end":null,"loc":null,"range":null,"body":[{"type":"ExpressionStatement","start":null,"end":null,"loc":null,"range":null,"expression":{"type":"FunctionExpression","start":null,"end":null,"loc":null,"range":null,"id":null,"generator":false,"expression":false,"params":[{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"child","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"staticProps","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"instanceProps","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"body":{"type":"BlockStatement","start":null,"end":null,"loc":null,"range":null,"body":[{"type":"IfStatement","start":null,"end":null,"loc":null,"range":null,"test":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"staticProps","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"consequent":{"type":"ExpressionStatement","start":null,"end":null,"loc":null,"range":null,"expression":{"type":"CallExpression","start":null,"end":null,"loc":null,"range":null,"callee":{"type":"MemberExpression","start":null,"end":null,"loc":null,"range":null,"object":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"Object","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"property":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"defineProperties","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"computed":false,"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"arguments":[{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"child","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"staticProps","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"alternate":null,"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},{"type":"IfStatement","start":null,"end":null,"loc":null,"range":null,"test":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"instanceProps","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"consequent":{"type":"ExpressionStatement","start":null,"end":null,"loc":null,"range":null,"expression":{"type":"CallExpression","start":null,"end":null,"loc":null,"range":null,"callee":{"type":"MemberExpression","start":null,"end":null,"loc":null,"range":null,"object":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"Object","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"property":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"defineProperties","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"computed":false,"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"arguments":[{"type":"MemberExpression","start":null,"end":null,"loc":null,"range":null,"object":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"child","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"property":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"prototype","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"computed":false,"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"instanceProps","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"alternate":null,"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"_scopeInfo":null,"_declarations":null,"extendedRange":null,"tokens":null,"raw":null},"_scopeInfo":null,"_declarations":null,"extendedRange":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"require-assign-key":{"type":"Program","start":null,"end":null,"loc":null,"range":null,"body":[{"type":"VariableDeclaration","start":null,"end":null,"loc":null,"range":null,"declarations":[{"type":"VariableDeclarator","start":null,"end":null,"loc":null,"range":null,"id":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"VARIABLE_NAME","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"init":{"type":"MemberExpression","start":null,"end":null,"loc":null,"range":null,"object":{"type":"CallExpression","start":null,"end":null,"loc":null,"range":null,"callee":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"require","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"arguments":[{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"MODULE_NAME","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"property":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"KEY","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"computed":false,"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"kind":"var","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"require":{"type":"Program","start":null,"end":null,"loc":null,"range":null,"body":[{"type":"ExpressionStatement","start":null,"end":null,"loc":null,"range":null,"expression":{"type":"CallExpression","start":null,"end":null,"loc":null,"range":null,"callee":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"require","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"arguments":[{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"MODULE_NAME","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"rest":{"type":"Program","start":null,"end":null,"loc":null,"range":null,"body":[{"type":"ForStatement","start":null,"end":null,"loc":null,"range":null,"init":{"type":"VariableDeclaration","start":null,"end":null,"loc":null,"range":null,"declarations":[{"type":"VariableDeclarator","start":null,"end":null,"loc":null,"range":null,"id":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"LEN","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"init":{"type":"MemberExpression","start":null,"end":null,"loc":null,"range":null,"object":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"ARGUMENTS","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"property":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"length","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"computed":false,"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},{"type":"VariableDeclarator","start":null,"end":null,"loc":null,"range":null,"id":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"ARRAY","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"init":{"type":"CallExpression","start":null,"end":null,"loc":null,"range":null,"callee":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"Array","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"arguments":[{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"ARRAY_LEN","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},{"type":"VariableDeclarator","start":null,"end":null,"loc":null,"range":null,"id":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"KEY","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"init":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"START","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"kind":"var","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"test":{"type":"BinaryExpression","start":null,"end":null,"loc":null,"range":null,"left":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"KEY","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"operator":"<","right":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"LEN","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"update":{"type":"UpdateExpression","start":null,"end":null,"loc":null,"range":null,"operator":"++","prefix":false,"argument":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"KEY","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"body":{"type":"BlockStatement","start":null,"end":null,"loc":null,"range":null,"body":[{"type":"ExpressionStatement","start":null,"end":null,"loc":null,"range":null,"expression":{"type":"AssignmentExpression","start":null,"end":null,"loc":null,"range":null,"operator":"=","left":{"type":"MemberExpression","start":null,"end":null,"loc":null,"range":null,"object":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"ARRAY","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"property":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"ARRAY_KEY","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"computed":true,"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"right":{"type":"MemberExpression","start":null,"end":null,"loc":null,"range":null,"object":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"ARGUMENTS","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"property":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"KEY","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"computed":true,"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"_scopeInfo":null,"_declarations":null,"extendedRange":null,"tokens":null,"raw":null},"_scopeInfo":null,"_declarations":null,"extendedRange":null,"tokens":null,"raw":null}],"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"self-contained-helpers-head":{"type":"Program","start":null,"end":null,"loc":null,"range":null,"body":[{"type":"VariableDeclaration","start":null,"end":null,"loc":null,"range":null,"declarations":[{"type":"VariableDeclarator","start":null,"end":null,"loc":null,"range":null,"id":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"helpers","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"init":{"type":"AssignmentExpression","start":null,"end":null,"loc":null,"range":null,"operator":"=","left":{"type":"MemberExpression","start":null,"end":null,"loc":null,"range":null,"object":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"exports","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"property":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"default","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"computed":false,"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"right":{"type":"ObjectExpression","start":null,"end":null,"loc":null,"range":null,"properties":[],"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"kind":"var","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},{"type":"ExpressionStatement","start":null,"end":null,"loc":null,"range":null,"expression":{"type":"AssignmentExpression","start":null,"end":null,"loc":null,"range":null,"operator":"=","left":{"type":"MemberExpression","start":null,"end":null,"loc":null,"range":null,"object":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"exports","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"property":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"__esModule","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"computed":false,"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"right":{"type":"Literal","start":null,"end":null,"loc":null,"range":null,"value":true,"raw":null,"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"self-global":{"type":"Program","start":null,"end":null,"loc":null,"range":null,"body":[{"type":"ExpressionStatement","start":null,"end":null,"loc":null,"range":null,"expression":{"type":"ConditionalExpression","start":null,"end":null,"loc":null,"range":null,"test":{"type":"BinaryExpression","start":null,"end":null,"loc":null,"range":null,"left":{"type":"UnaryExpression","start":null,"end":null,"loc":null,"range":null,"operator":"typeof","prefix":true,"argument":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"global","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"operator":"===","right":{"type":"Literal","start":null,"end":null,"loc":null,"range":null,"value":"undefined","raw":null,"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"consequent":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"self","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"alternate":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"global","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"set":{"type":"Program","start":null,"end":null,"loc":null,"range":null,"body":[{"type":"ExpressionStatement","start":null,"end":null,"loc":null,"range":null,"expression":{"type":"FunctionExpression","start":null,"end":null,"loc":null,"range":null,"id":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"set","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"generator":false,"expression":false,"params":[{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"object","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"property","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"value","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"receiver","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"body":{"type":"BlockStatement","start":null,"end":null,"loc":null,"range":null,"body":[{"type":"VariableDeclaration","start":null,"end":null,"loc":null,"range":null,"declarations":[{"type":"VariableDeclarator","start":null,"end":null,"loc":null,"range":null,"id":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"desc","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"init":{"type":"CallExpression","start":null,"end":null,"loc":null,"range":null,"callee":{"type":"MemberExpression","start":null,"end":null,"loc":null,"range":null,"object":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"Object","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"property":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"getOwnPropertyDescriptor","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"computed":false,"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"arguments":[{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"object","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"property","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"kind":"var","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},{"type":"IfStatement","start":null,"end":null,"loc":null,"range":null,"test":{"type":"BinaryExpression","start":null,"end":null,"loc":null,"range":null,"left":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"desc","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"operator":"===","right":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"undefined","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"consequent":{"type":"BlockStatement","start":null,"end":null,"loc":null,"range":null,"body":[{"type":"VariableDeclaration","start":null,"end":null,"loc":null,"range":null,"declarations":[{"type":"VariableDeclarator","start":null,"end":null,"loc":null,"range":null,"id":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"parent","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"init":{"type":"CallExpression","start":null,"end":null,"loc":null,"range":null,"callee":{"type":"MemberExpression","start":null,"end":null,"loc":null,"range":null,"object":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"Object","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"property":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"getPrototypeOf","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"computed":false,"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"arguments":[{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"object","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"kind":"var","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},{"type":"IfStatement","start":null,"end":null,"loc":null,"range":null,"test":{"type":"BinaryExpression","start":null,"end":null,"loc":null,"range":null,"left":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"parent","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"operator":"!==","right":{"type":"Literal","start":null,"end":null,"loc":null,"range":null,"value":null,"raw":null,"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"consequent":{"type":"BlockStatement","start":null,"end":null,"loc":null,"range":null,"body":[{"type":"ReturnStatement","start":null,"end":null,"loc":null,"range":null,"argument":{"type":"CallExpression","start":null,"end":null,"loc":null,"range":null,"callee":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"set","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"arguments":[{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"parent","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"property","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"value","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"receiver","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"_scopeInfo":null,"_declarations":null,"extendedRange":null,"tokens":null,"raw":null},"alternate":null,"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"_scopeInfo":null,"_declarations":null,"extendedRange":null,"tokens":null,"raw":null},"alternate":{"type":"IfStatement","start":null,"end":null,"loc":null,"range":null,"test":{"type":"LogicalExpression","start":null,"end":null,"loc":null,"range":null,"left":{"type":"BinaryExpression","start":null,"end":null,"loc":null,"range":null,"left":{"type":"Literal","start":null,"end":null,"loc":null,"range":null,"value":"value","raw":null,"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null},"operator":"in","right":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"desc","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"operator":"&&","right":{"type":"MemberExpression","start":null,"end":null,"loc":null,"range":null,"object":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"desc","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"property":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"writable","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"computed":false,"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"consequent":{"type":"BlockStatement","start":null,"end":null,"loc":null,"range":null,"body":[{"type":"ReturnStatement","start":null,"end":null,"loc":null,"range":null,"argument":{"type":"AssignmentExpression","start":null,"end":null,"loc":null,"range":null,"operator":"=","left":{"type":"MemberExpression","start":null,"end":null,"loc":null,"range":null,"object":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"desc","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"property":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"value","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"computed":false,"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"right":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"value","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"_scopeInfo":null,"_declarations":null,"extendedRange":null,"tokens":null,"raw":null},"alternate":{"type":"BlockStatement","start":null,"end":null,"loc":null,"range":null,"body":[{"type":"VariableDeclaration","start":null,"end":null,"loc":null,"range":null,"declarations":[{"type":"VariableDeclarator","start":null,"end":null,"loc":null,"range":null,"id":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"setter","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"init":{"type":"MemberExpression","start":null,"end":null,"loc":null,"range":null,"object":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"desc","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"property":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"set","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"computed":false,"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"kind":"var","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},{"type":"IfStatement","start":null,"end":null,"loc":null,"range":null,"test":{"type":"BinaryExpression","start":null,"end":null,"loc":null,"range":null,"left":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"setter","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"operator":"!==","right":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"undefined","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"consequent":{"type":"BlockStatement","start":null,"end":null,"loc":null,"range":null,"body":[{"type":"ReturnStatement","start":null,"end":null,"loc":null,"range":null,"argument":{"type":"CallExpression","start":null,"end":null,"loc":null,"range":null,"callee":{"type":"MemberExpression","start":null,"end":null,"loc":null,"range":null,"object":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"setter","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"property":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"call","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"computed":false,"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"arguments":[{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"receiver","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"value","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"_scopeInfo":null,"_declarations":null,"extendedRange":null,"tokens":null,"raw":null},"alternate":null,"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"_scopeInfo":null,"_declarations":null,"extendedRange":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"_scopeInfo":null,"_declarations":null,"extendedRange":null,"tokens":null,"raw":null},"_scopeInfo":null,"_declarations":null,"extendedRange":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"slice":{"type":"Program","start":null,"end":null,"loc":null,"range":null,"body":[{"type":"ExpressionStatement","start":null,"end":null,"loc":null,"range":null,"expression":{"type":"MemberExpression","start":null,"end":null,"loc":null,"range":null,"object":{"type":"MemberExpression","start":null,"end":null,"loc":null,"range":null,"object":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"Array","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"property":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"prototype","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"computed":false,"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"property":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"slice","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"computed":false,"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"sliced-to-array":{"type":"Program","start":null,"end":null,"loc":null,"range":null,"body":[{"type":"ExpressionStatement","start":null,"end":null,"loc":null,"range":null,"expression":{"type":"FunctionExpression","start":null,"end":null,"loc":null,"range":null,"id":null,"generator":false,"expression":false,"params":[{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"arr","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"i","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"body":{"type":"BlockStatement","start":null,"end":null,"loc":null,"range":null,"body":[{"type":"IfStatement","start":null,"end":null,"loc":null,"range":null,"test":{"type":"CallExpression","start":null,"end":null,"loc":null,"range":null,"callee":{"type":"MemberExpression","start":null,"end":null,"loc":null,"range":null,"object":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"Array","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"property":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"isArray","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"computed":false,"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"arguments":[{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"arr","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"consequent":{"type":"BlockStatement","start":null,"end":null,"loc":null,"range":null,"body":[{"type":"ReturnStatement","start":null,"end":null,"loc":null,"range":null,"argument":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"arr","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"_scopeInfo":null,"_declarations":null,"extendedRange":null,"tokens":null,"raw":null},"alternate":{"type":"IfStatement","start":null,"end":null,"loc":null,"range":null,"test":{"type":"BinaryExpression","start":null,"end":null,"loc":null,"range":null,"left":{"type":"MemberExpression","start":null,"end":null,"loc":null,"range":null,"object":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"Symbol","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"property":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"iterator","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"computed":false,"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"operator":"in","right":{"type":"CallExpression","start":null,"end":null,"loc":null,"range":null,"callee":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"Object","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"arguments":[{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"arr","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"consequent":{"type":"BlockStatement","start":null,"end":null,"loc":null,"range":null,"body":[{"type":"VariableDeclaration","start":null,"end":null,"loc":null,"range":null,"declarations":[{"type":"VariableDeclarator","start":null,"end":null,"loc":null,"range":null,"id":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"_arr","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"init":{"type":"ArrayExpression","start":null,"end":null,"loc":null,"range":null,"elements":[],"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"kind":"var","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},{"type":"ForStatement","start":null,"end":null,"loc":null,"range":null,"init":{"type":"VariableDeclaration","start":null,"end":null,"loc":null,"range":null,"declarations":[{"type":"VariableDeclarator","start":null,"end":null,"loc":null,"range":null,"id":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"_iterator","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"init":{"type":"CallExpression","start":null,"end":null,"loc":null,"range":null,"callee":{"type":"MemberExpression","start":null,"end":null,"loc":null,"range":null,"object":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"arr","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"property":{"type":"MemberExpression","start":null,"end":null,"loc":null,"range":null,"object":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"Symbol","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"property":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"iterator","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"computed":false,"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"computed":true,"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"arguments":[],"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},{"type":"VariableDeclarator","start":null,"end":null,"loc":null,"range":null,"id":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"_step","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"init":null,"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"kind":"var","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"test":{"type":"UnaryExpression","start":null,"end":null,"loc":null,"range":null,"operator":"!","prefix":true,"argument":{"type":"MemberExpression","start":null,"end":null,"loc":null,"range":null,"object":{"type":"AssignmentExpression","start":null,"end":null,"loc":null,"range":null,"operator":"=","left":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"_step","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"right":{"type":"CallExpression","start":null,"end":null,"loc":null,"range":null,"callee":{"type":"MemberExpression","start":null,"end":null,"loc":null,"range":null,"object":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"_iterator","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"property":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"next","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"computed":false,"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"arguments":[],"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"property":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"done","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"computed":false,"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"update":null,"body":{"type":"BlockStatement","start":null,"end":null,"loc":null,"range":null,"body":[{"type":"ExpressionStatement","start":null,"end":null,"loc":null,"range":null,"expression":{"type":"CallExpression","start":null,"end":null,"loc":null,"range":null,"callee":{"type":"MemberExpression","start":null,"end":null,"loc":null,"range":null,"object":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"_arr","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"property":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"push","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"computed":false,"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"arguments":[{"type":"MemberExpression","start":null,"end":null,"loc":null,"range":null,"object":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"_step","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"property":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"value","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"computed":false,"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},{"type":"IfStatement","start":null,"end":null,"loc":null,"range":null,"test":{"type":"LogicalExpression","start":null,"end":null,"loc":null,"range":null,"left":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"i","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"operator":"&&","right":{"type":"BinaryExpression","start":null,"end":null,"loc":null,"range":null,"left":{"type":"MemberExpression","start":null,"end":null,"loc":null,"range":null,"object":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"_arr","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"property":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"length","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"computed":false,"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"operator":"===","right":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"i","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"consequent":{"type":"BreakStatement","start":null,"end":null,"loc":null,"range":null,"label":null,"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"alternate":null,"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"_scopeInfo":null,"_declarations":null,"extendedRange":null,"tokens":null,"raw":null},"_scopeInfo":null,"_declarations":null,"extendedRange":null,"tokens":null,"raw":null},{"type":"ReturnStatement","start":null,"end":null,"loc":null,"range":null,"argument":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"_arr","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"_scopeInfo":null,"_declarations":null,"extendedRange":null,"tokens":null,"raw":null},"alternate":{"type":"BlockStatement","start":null,"end":null,"loc":null,"range":null,"body":[{"type":"ThrowStatement","start":null,"end":null,"loc":null,"range":null,"argument":{"type":"NewExpression","start":null,"end":null,"loc":null,"range":null,"callee":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"TypeError","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"arguments":[{"type":"Literal","start":null,"end":null,"loc":null,"range":null,"value":"Invalid attempt to destructure non-iterable instance","raw":null,"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null}],"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"_scopeInfo":null,"_declarations":null,"extendedRange":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"_scopeInfo":null,"_declarations":null,"extendedRange":null,"tokens":null,"raw":null},"_scopeInfo":null,"_declarations":null,"extendedRange":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"system":{"type":"Program","start":null,"end":null,"loc":null,"range":null,"body":[{"type":"ExpressionStatement","start":null,"end":null,"loc":null,"range":null,"expression":{"type":"CallExpression","start":null,"end":null,"loc":null,"range":null,"callee":{"type":"MemberExpression","start":null,"end":null,"loc":null,"range":null,"object":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"System","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"property":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"register","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"computed":false,"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"arguments":[{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"MODULE_NAME","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"MODULE_DEPENDENCIES","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},{"type":"FunctionExpression","start":null,"end":null,"loc":null,"range":null,"id":null,"generator":false,"expression":false,"params":[{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"EXPORT_IDENTIFIER","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"body":{"type":"BlockStatement","start":null,"end":null,"loc":null,"range":null,"body":[{"type":"ReturnStatement","start":null,"end":null,"loc":null,"range":null,"argument":{"type":"ObjectExpression","start":null,"end":null,"loc":null,"range":null,"properties":[{"type":"Property","start":null,"end":null,"loc":null,"range":null,"method":false,"shorthand":false,"computed":false,"key":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"setters","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"value":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"SETTERS","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"kind":"init","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},{"type":"Property","start":null,"end":null,"loc":null,"range":null,"method":false,"shorthand":false,"computed":false,"key":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"execute","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"value":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"EXECUTE","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"kind":"init","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"_scopeInfo":null,"_declarations":null,"extendedRange":null,"tokens":null,"raw":null},"_scopeInfo":null,"_declarations":null,"extendedRange":null,"tokens":null,"raw":null}],"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"tagged-template-literal-loose":{"type":"Program","start":null,"end":null,"loc":null,"range":null,"body":[{"type":"ExpressionStatement","start":null,"end":null,"loc":null,"range":null,"expression":{"type":"FunctionExpression","start":null,"end":null,"loc":null,"range":null,"id":null,"generator":false,"expression":false,"params":[{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"strings","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"raw","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"body":{"type":"BlockStatement","start":null,"end":null,"loc":null,"range":null,"body":[{"type":"ExpressionStatement","start":null,"end":null,"loc":null,"range":null,"expression":{"type":"AssignmentExpression","start":null,"end":null,"loc":null,"range":null,"operator":"=","left":{"type":"MemberExpression","start":null,"end":null,"loc":null,"range":null,"object":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"strings","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"property":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"raw","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"computed":false,"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"right":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"raw","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},{"type":"ReturnStatement","start":null,"end":null,"loc":null,"range":null,"argument":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"strings","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"_scopeInfo":null,"_declarations":null,"extendedRange":null,"tokens":null,"raw":null},"_scopeInfo":null,"_declarations":null,"extendedRange":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"tagged-template-literal":{"type":"Program","start":null,"end":null,"loc":null,"range":null,"body":[{"type":"ExpressionStatement","start":null,"end":null,"loc":null,"range":null,"expression":{"type":"FunctionExpression","start":null,"end":null,"loc":null,"range":null,"id":null,"generator":false,"expression":false,"params":[{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"strings","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"raw","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"body":{"type":"BlockStatement","start":null,"end":null,"loc":null,"range":null,"body":[{"type":"ReturnStatement","start":null,"end":null,"loc":null,"range":null,"argument":{"type":"CallExpression","start":null,"end":null,"loc":null,"range":null,"callee":{"type":"MemberExpression","start":null,"end":null,"loc":null,"range":null,"object":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"Object","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"property":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"freeze","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"computed":false,"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"arguments":[{"type":"CallExpression","start":null,"end":null,"loc":null,"range":null,"callee":{"type":"MemberExpression","start":null,"end":null,"loc":null,"range":null,"object":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"Object","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"property":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"defineProperties","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"computed":false,"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"arguments":[{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"strings","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},{"type":"ObjectExpression","start":null,"end":null,"loc":null,"range":null,"properties":[{"type":"Property","start":null,"end":null,"loc":null,"range":null,"method":false,"shorthand":false,"computed":false,"key":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"raw","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"value":{"type":"ObjectExpression","start":null,"end":null,"loc":null,"range":null,"properties":[{"type":"Property","start":null,"end":null,"loc":null,"range":null,"method":false,"shorthand":false,"computed":false,"key":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"value","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"value":{"type":"CallExpression","start":null,"end":null,"loc":null,"range":null,"callee":{"type":"MemberExpression","start":null,"end":null,"loc":null,"range":null,"object":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"Object","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"property":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"freeze","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"computed":false,"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"arguments":[{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"raw","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"kind":"init","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"kind":"init","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"_scopeInfo":null,"_declarations":null,"extendedRange":null,"tokens":null,"raw":null},"_scopeInfo":null,"_declarations":null,"extendedRange":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"tail-call-body":{"type":"Program","start":null,"end":null,"loc":null,"range":null,"body":[{"type":"BlockStatement","start":null,"end":null,"loc":null,"range":null,"body":[{"type":"LabeledStatement","start":null,"end":null,"loc":null,"range":null,"body":{"type":"WhileStatement","start":null,"end":null,"loc":null,"range":null,"test":{"type":"Literal","start":null,"end":null,"loc":null,"range":null,"value":true,"raw":null,"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null},"body":{"type":"ExpressionStatement","start":null,"end":null,"loc":null,"range":null,"expression":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"BLOCK","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"_scopeInfo":null,"_declarations":null,"extendedRange":null,"tokens":null,"raw":null},"label":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"FUNCTION_ID","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"_scopeInfo":null,"_declarations":null,"extendedRange":null,"tokens":null,"raw":null}],"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"tail-call":{"type":"Program","start":null,"end":null,"loc":null,"range":null,"body":[{"type":"ExpressionStatement","start":null,"end":null,"loc":null,"range":null,"expression":{"type":"CallExpression","start":null,"end":null,"loc":null,"range":null,"callee":{"type":"FunctionExpression","start":null,"end":null,"loc":null,"range":null,"id":null,"generator":false,"expression":false,"params":[],"body":{"type":"BlockStatement","start":null,"end":null,"loc":null,"range":null,"body":[{"type":"FunctionDeclaration","start":null,"end":null,"loc":null,"range":null,"id":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"Tail","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"generator":false,"expression":false,"params":[{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"func","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"args","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"context","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"body":{"type":"BlockStatement","start":null,"end":null,"loc":null,"range":null,"body":[{"type":"ExpressionStatement","start":null,"end":null,"loc":null,"range":null,"expression":{"type":"AssignmentExpression","start":null,"end":null,"loc":null,"range":null,"operator":"=","left":{"type":"MemberExpression","start":null,"end":null,"loc":null,"range":null,"object":{"type":"ThisExpression","start":null,"end":null,"loc":null,"range":null,"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"property":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"func","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"computed":false,"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"right":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"func","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},{"type":"ExpressionStatement","start":null,"end":null,"loc":null,"range":null,"expression":{"type":"AssignmentExpression","start":null,"end":null,"loc":null,"range":null,"operator":"=","left":{"type":"MemberExpression","start":null,"end":null,"loc":null,"range":null,"object":{"type":"ThisExpression","start":null,"end":null,"loc":null,"range":null,"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"property":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"args","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"computed":false,"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"right":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"args","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},{"type":"ExpressionStatement","start":null,"end":null,"loc":null,"range":null,"expression":{"type":"AssignmentExpression","start":null,"end":null,"loc":null,"range":null,"operator":"=","left":{"type":"MemberExpression","start":null,"end":null,"loc":null,"range":null,"object":{"type":"ThisExpression","start":null,"end":null,"loc":null,"range":null,"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"property":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"context","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"computed":false,"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"right":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"context","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"_scopeInfo":null,"_declarations":null,"extendedRange":null,"tokens":null,"raw":null},"_scopeInfo":null,"_declarations":null,"extendedRange":null,"tokens":null,"raw":null},{"type":"ExpressionStatement","start":null,"end":null,"loc":null,"range":null,"expression":{"type":"AssignmentExpression","start":null,"end":null,"loc":null,"range":null,"operator":"=","left":{"type":"MemberExpression","start":null,"end":null,"loc":null,"range":null,"object":{"type":"MemberExpression","start":null,"end":null,"loc":null,"range":null,"object":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"Tail","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"property":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"prototype","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"computed":false,"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"property":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"_isTailDescriptor","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"computed":false,"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"right":{"type":"Literal","start":null,"end":null,"loc":null,"range":null,"value":true,"raw":null,"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},{"type":"VariableDeclaration","start":null,"end":null,"loc":null,"range":null,"declarations":[{"type":"VariableDeclarator","start":null,"end":null,"loc":null,"range":null,"id":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"isRunning","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"init":{"type":"Literal","start":null,"end":null,"loc":null,"range":null,"value":false,"raw":null,"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"kind":"var","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},{"type":"ReturnStatement","start":null,"end":null,"loc":null,"range":null,"argument":{"type":"FunctionExpression","start":null,"end":null,"loc":null,"range":null,"id":null,"generator":false,"expression":false,"params":[{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"func","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"args","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"context","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"body":{"type":"BlockStatement","start":null,"end":null,"loc":null,"range":null,"body":[{"type":"VariableDeclaration","start":null,"end":null,"loc":null,"range":null,"declarations":[{"type":"VariableDeclarator","start":null,"end":null,"loc":null,"range":null,"id":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"result","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"init":{"type":"NewExpression","start":null,"end":null,"loc":null,"range":null,"callee":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"Tail","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"arguments":[{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"func","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"args","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"context","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"kind":"var","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},{"type":"IfStatement","start":null,"end":null,"loc":null,"range":null,"test":{"type":"UnaryExpression","start":null,"end":null,"loc":null,"range":null,"operator":"!","prefix":true,"argument":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"isRunning","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"consequent":{"type":"BlockStatement","start":null,"end":null,"loc":null,"range":null,"body":[{"type":"ExpressionStatement","start":null,"end":null,"loc":null,"range":null,"expression":{"type":"AssignmentExpression","start":null,"end":null,"loc":null,"range":null,"operator":"=","left":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"isRunning","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"right":{"type":"Literal","start":null,"end":null,"loc":null,"range":null,"value":true,"raw":null,"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},{"type":"DoWhileStatement","start":null,"end":null,"loc":null,"range":null,"body":{"type":"BlockStatement","start":null,"end":null,"loc":null,"range":null,"body":[{"type":"ExpressionStatement","start":null,"end":null,"loc":null,"range":null,"expression":{"type":"AssignmentExpression","start":null,"end":null,"loc":null,"range":null,"operator":"=","left":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"result","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"right":{"type":"CallExpression","start":null,"end":null,"loc":null,"range":null,"callee":{"type":"MemberExpression","start":null,"end":null,"loc":null,"range":null,"object":{"type":"MemberExpression","start":null,"end":null,"loc":null,"range":null,"object":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"result","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"property":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"func","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"computed":false,"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"property":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"apply","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"computed":false,"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"arguments":[{"type":"MemberExpression","start":null,"end":null,"loc":null,"range":null,"object":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"result","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"property":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"context","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"computed":false,"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},{"type":"MemberExpression","start":null,"end":null,"loc":null,"range":null,"object":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"result","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"property":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"args","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"computed":false,"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"_scopeInfo":null,"_declarations":null,"extendedRange":null,"tokens":null,"raw":null},"test":{"type":"LogicalExpression","start":null,"end":null,"loc":null,"range":null,"left":{"type":"BinaryExpression","start":null,"end":null,"loc":null,"range":null,"left":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"result","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"operator":"instanceof","right":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"Tail","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"operator":"||","right":{"type":"LogicalExpression","start":null,"end":null,"loc":null,"range":null,"left":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"result","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"operator":"&&","right":{"type":"MemberExpression","start":null,"end":null,"loc":null,"range":null,"object":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"result","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"property":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"_isTailDescriptor","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"computed":false,"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"_scopeInfo":null,"_declarations":null,"extendedRange":null,"tokens":null,"raw":null},{"type":"ExpressionStatement","start":null,"end":null,"loc":null,"range":null,"expression":{"type":"AssignmentExpression","start":null,"end":null,"loc":null,"range":null,"operator":"=","left":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"isRunning","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"right":{"type":"Literal","start":null,"end":null,"loc":null,"range":null,"value":false,"raw":null,"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"_scopeInfo":null,"_declarations":null,"extendedRange":null,"tokens":null,"raw":null},"alternate":null,"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},{"type":"ReturnStatement","start":null,"end":null,"loc":null,"range":null,"argument":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"result","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"_scopeInfo":null,"_declarations":null,"extendedRange":null,"tokens":null,"raw":null},"_scopeInfo":null,"_declarations":null,"extendedRange":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"_scopeInfo":null,"_declarations":null,"extendedRange":null,"tokens":null,"raw":null},"_scopeInfo":null,"_declarations":null,"extendedRange":null,"tokens":null,"raw":null},"arguments":[],"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"temporal-assert-defined":{"type":"Program","start":null,"end":null,"loc":null,"range":null,"body":[{"type":"ExpressionStatement","start":null,"end":null,"loc":null,"range":null,"expression":{"type":"FunctionExpression","start":null,"end":null,"loc":null,"range":null,"id":null,"generator":false,"expression":false,"params":[{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"val","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"name","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"undef","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"body":{"type":"BlockStatement","start":null,"end":null,"loc":null,"range":null,"body":[{"type":"IfStatement","start":null,"end":null,"loc":null,"range":null,"test":{"type":"BinaryExpression","start":null,"end":null,"loc":null,"range":null,"left":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"val","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"operator":"===","right":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"undef","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"consequent":{"type":"BlockStatement","start":null,"end":null,"loc":null,"range":null,"body":[{"type":"ThrowStatement","start":null,"end":null,"loc":null,"range":null,"argument":{"type":"NewExpression","start":null,"end":null,"loc":null,"range":null,"callee":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"ReferenceError","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"arguments":[{"type":"BinaryExpression","start":null,"end":null,"loc":null,"range":null,"left":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"name","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"operator":"+","right":{"type":"Literal","start":null,"end":null,"loc":null,"range":null,"value":" is not defined - temporal dead zone","raw":null,"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"_scopeInfo":null,"_declarations":null,"extendedRange":null,"tokens":null,"raw":null},"alternate":null,"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},{"type":"ReturnStatement","start":null,"end":null,"loc":null,"range":null,"argument":{"type":"Literal","start":null,"end":null,"loc":null,"range":null,"value":true,"raw":null,"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"_scopeInfo":null,"_declarations":null,"extendedRange":null,"tokens":null,"raw":null},"_scopeInfo":null,"_declarations":null,"extendedRange":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"temporal-undefined":{"type":"Program","start":null,"end":null,"loc":null,"range":null,"body":[{"type":"ExpressionStatement","start":null,"end":null,"loc":null,"range":null,"expression":{"type":"ObjectExpression","start":null,"end":null,"loc":null,"range":null,"properties":[],"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"test-exports":{"type":"Program","start":null,"end":null,"loc":null,"range":null,"body":[{"type":"ExpressionStatement","start":null,"end":null,"loc":null,"range":null,"expression":{"type":"BinaryExpression","start":null,"end":null,"loc":null,"range":null,"left":{"type":"UnaryExpression","start":null,"end":null,"loc":null,"range":null,"operator":"typeof","prefix":true,"argument":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"exports","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"operator":"!==","right":{"type":"Literal","start":null,"end":null,"loc":null,"range":null,"value":"undefined","raw":null,"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"test-module":{"type":"Program","start":null,"end":null,"loc":null,"range":null,"body":[{"type":"ExpressionStatement","start":null,"end":null,"loc":null,"range":null,"expression":{"type":"BinaryExpression","start":null,"end":null,"loc":null,"range":null,"left":{"type":"UnaryExpression","start":null,"end":null,"loc":null,"range":null,"operator":"typeof","prefix":true,"argument":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"module","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"operator":"!==","right":{"type":"Literal","start":null,"end":null,"loc":null,"range":null,"value":"undefined","raw":null,"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"to-array":{"type":"Program","start":null,"end":null,"loc":null,"range":null,"body":[{"type":"ExpressionStatement","start":null,"end":null,"loc":null,"range":null,"expression":{"type":"FunctionExpression","start":null,"end":null,"loc":null,"range":null,"id":null,"generator":false,"expression":false,"params":[{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"arr","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"body":{"type":"BlockStatement","start":null,"end":null,"loc":null,"range":null,"body":[{"type":"ReturnStatement","start":null,"end":null,"loc":null,"range":null,"argument":{"type":"ConditionalExpression","start":null,"end":null,"loc":null,"range":null,"test":{"type":"CallExpression","start":null,"end":null,"loc":null,"range":null,"callee":{"type":"MemberExpression","start":null,"end":null,"loc":null,"range":null,"object":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"Array","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"property":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"isArray","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"computed":false,"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"arguments":[{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"arr","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"consequent":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"arr","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"alternate":{"type":"CallExpression","start":null,"end":null,"loc":null,"range":null,"callee":{"type":"MemberExpression","start":null,"end":null,"loc":null,"range":null,"object":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"Array","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"property":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"from","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"computed":false,"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"arguments":[{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"arr","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"_scopeInfo":null,"_declarations":null,"extendedRange":null,"tokens":null,"raw":null},"_scopeInfo":null,"_declarations":null,"extendedRange":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"to-consumable-array":{"type":"Program","start":null,"end":null,"loc":null,"range":null,"body":[{"type":"ExpressionStatement","start":null,"end":null,"loc":null,"range":null,"expression":{"type":"FunctionExpression","start":null,"end":null,"loc":null,"range":null,"id":null,"generator":false,"expression":false,"params":[{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"arr","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"body":{"type":"BlockStatement","start":null,"end":null,"loc":null,"range":null,"body":[{"type":"IfStatement","start":null,"end":null,"loc":null,"range":null,"test":{"type":"CallExpression","start":null,"end":null,"loc":null,"range":null,"callee":{"type":"MemberExpression","start":null,"end":null,"loc":null,"range":null,"object":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"Array","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"property":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"isArray","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"computed":false,"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"arguments":[{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"arr","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"consequent":{"type":"BlockStatement","start":null,"end":null,"loc":null,"range":null,"body":[{"type":"ForStatement","start":null,"end":null,"loc":null,"range":null,"init":{"type":"VariableDeclaration","start":null,"end":null,"loc":null,"range":null,"declarations":[{"type":"VariableDeclarator","start":null,"end":null,"loc":null,"range":null,"id":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"i","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"init":{"type":"Literal","start":null,"end":null,"loc":null,"range":null,"value":0,"raw":null,"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},{"type":"VariableDeclarator","start":null,"end":null,"loc":null,"range":null,"id":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"arr2","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"init":{"type":"CallExpression","start":null,"end":null,"loc":null,"range":null,"callee":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"Array","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"arguments":[{"type":"MemberExpression","start":null,"end":null,"loc":null,"range":null,"object":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"arr","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"property":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"length","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"computed":false,"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"kind":"var","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"test":{"type":"BinaryExpression","start":null,"end":null,"loc":null,"range":null,"left":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"i","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"operator":"<","right":{"type":"MemberExpression","start":null,"end":null,"loc":null,"range":null,"object":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"arr","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"property":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"length","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"computed":false,"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"update":{"type":"UpdateExpression","start":null,"end":null,"loc":null,"range":null,"operator":"++","prefix":false,"argument":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"i","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"body":{"type":"ExpressionStatement","start":null,"end":null,"loc":null,"range":null,"expression":{"type":"AssignmentExpression","start":null,"end":null,"loc":null,"range":null,"operator":"=","left":{"type":"MemberExpression","start":null,"end":null,"loc":null,"range":null,"object":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"arr2","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"property":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"i","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"computed":true,"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"right":{"type":"MemberExpression","start":null,"end":null,"loc":null,"range":null,"object":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"arr","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"property":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"i","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"computed":true,"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"_scopeInfo":null,"_declarations":null,"extendedRange":null,"tokens":null,"raw":null},{"type":"ReturnStatement","start":null,"end":null,"loc":null,"range":null,"argument":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"arr2","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"_scopeInfo":null,"_declarations":null,"extendedRange":null,"tokens":null,"raw":null},"alternate":{"type":"BlockStatement","start":null,"end":null,"loc":null,"range":null,"body":[{"type":"ReturnStatement","start":null,"end":null,"loc":null,"range":null,"argument":{"type":"CallExpression","start":null,"end":null,"loc":null,"range":null,"callee":{"type":"MemberExpression","start":null,"end":null,"loc":null,"range":null,"object":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"Array","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"property":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"from","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"computed":false,"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"arguments":[{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"arr","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"_scopeInfo":null,"_declarations":null,"extendedRange":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"_scopeInfo":null,"_declarations":null,"extendedRange":null,"tokens":null,"raw":null},"_scopeInfo":null,"_declarations":null,"extendedRange":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"typeof":{"type":"Program","start":null,"end":null,"loc":null,"range":null,"body":[{"type":"ExpressionStatement","start":null,"end":null,"loc":null,"range":null,"expression":{"type":"FunctionExpression","start":null,"end":null,"loc":null,"range":null,"id":null,"generator":false,"expression":false,"params":[{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"obj","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"body":{"type":"BlockStatement","start":null,"end":null,"loc":null,"range":null,"body":[{"type":"ReturnStatement","start":null,"end":null,"loc":null,"range":null,"argument":{"type":"ConditionalExpression","start":null,"end":null,"loc":null,"range":null,"test":{"type":"LogicalExpression","start":null,"end":null,"loc":null,"range":null,"left":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"obj","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"operator":"&&","right":{"type":"BinaryExpression","start":null,"end":null,"loc":null,"range":null,"left":{"type":"MemberExpression","start":null,"end":null,"loc":null,"range":null,"object":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"obj","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"property":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"constructor","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"computed":false,"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"operator":"===","right":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"Symbol","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"consequent":{"type":"Literal","start":null,"end":null,"loc":null,"range":null,"value":"symbol","raw":null,"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null},"alternate":{"type":"UnaryExpression","start":null,"end":null,"loc":null,"range":null,"operator":"typeof","prefix":true,"argument":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"obj","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"_scopeInfo":null,"_declarations":null,"extendedRange":null,"tokens":null,"raw":null},"_scopeInfo":null,"_declarations":null,"extendedRange":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"umd-runner-body":{"type":"Program","start":null,"end":null,"loc":null,"range":null,"body":[{"type":"ExpressionStatement","start":null,"end":null,"loc":null,"range":null,"expression":{"type":"FunctionExpression","start":null,"end":null,"loc":null,"range":null,"id":null,"generator":false,"expression":false,"params":[{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"factory","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"body":{"type":"BlockStatement","start":null,"end":null,"loc":null,"range":null,"body":[{"type":"IfStatement","start":null,"end":null,"loc":null,"range":null,"test":{"type":"LogicalExpression","start":null,"end":null,"loc":null,"range":null,"left":{"type":"BinaryExpression","start":null,"end":null,"loc":null,"range":null,"left":{"type":"UnaryExpression","start":null,"end":null,"loc":null,"range":null,"operator":"typeof","prefix":true,"argument":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"define","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"operator":"===","right":{"type":"Literal","start":null,"end":null,"loc":null,"range":null,"value":"function","raw":null,"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"operator":"&&","right":{"type":"MemberExpression","start":null,"end":null,"loc":null,"range":null,"object":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"define","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"property":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"amd","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"computed":false,"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"consequent":{"type":"BlockStatement","start":null,"end":null,"loc":null,"range":null,"body":[{"type":"ExpressionStatement","start":null,"end":null,"loc":null,"range":null,"expression":{"type":"CallExpression","start":null,"end":null,"loc":null,"range":null,"callee":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"define","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"arguments":[{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"AMD_ARGUMENTS","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"factory","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"_scopeInfo":null,"_declarations":null,"extendedRange":null,"tokens":null,"raw":null},"alternate":{"type":"IfStatement","start":null,"end":null,"loc":null,"range":null,"test":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"COMMON_TEST","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"consequent":{"type":"BlockStatement","start":null,"end":null,"loc":null,"range":null,"body":[{"type":"ExpressionStatement","start":null,"end":null,"loc":null,"range":null,"expression":{"type":"CallExpression","start":null,"end":null,"loc":null,"range":null,"callee":{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"factory","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"arguments":[{"type":"Identifier","start":null,"end":null,"loc":null,"range":null,"name":"COMMON_ARGUMENTS","_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"_scopeInfo":null,"_declarations":null,"extendedRange":null,"tokens":null,"raw":null},"alternate":null,"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"_scopeInfo":null,"_declarations":null,"extendedRange":null,"tokens":null,"raw":null},"_scopeInfo":null,"_declarations":null,"extendedRange":null,"tokens":null,"raw":null},"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}],"_declarations":null,"extendedRange":null,"_scopeInfo":null,"tokens":null,"raw":null}}
42613
42627
  },{}]},{},[1])(1)
42614
42628
  });