babel-source 5.4.3 → 5.4.4
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.
- checksums.yaml +8 -8
- data/lib/babel.js +579 -613
- data/lib/babel/polyfill.js +19 -18
- data/lib/babel/source.rb +2 -2
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
---
|
2
2
|
!binary "U0hBMQ==":
|
3
3
|
metadata.gz: !binary |-
|
4
|
-
|
4
|
+
ZGJjYWIxZWQ5YjdiMzU5YmI5NzgwMWU1ZDg0YzUwNjlmM2Q5MGZkMw==
|
5
5
|
data.tar.gz: !binary |-
|
6
|
-
|
6
|
+
ZGViODBhY2QxMjU4OWM1MjMyNDYzNmVmMThlZGFlYjhlYzhhMTdlZA==
|
7
7
|
SHA512:
|
8
8
|
metadata.gz: !binary |-
|
9
|
-
|
10
|
-
|
11
|
-
|
9
|
+
ZDY3MGM1YjExNDg3NjMxNjk5YmRmNWEwZTg4NGFhY2VhNTAzOWQ1ZTExMTlj
|
10
|
+
MzFhZjc5YTQ4NGMzMjRlZDgwNTE3NzU5NzkwZjE0NGI2NTdkZDliNDczZDE5
|
11
|
+
MWNlM2QwMjY3YzVlMWIwNWUyYTVkMzZjN2RmYjAxOGRjNWJmMWY=
|
12
12
|
data.tar.gz: !binary |-
|
13
|
-
|
14
|
-
|
15
|
-
|
13
|
+
ZTk4NTJlMDMzODZiMTY5NWIxMGY4YzFmNjI4NzIwOTcxNTBjMzI4MmMyNGZi
|
14
|
+
Yzk5ZjA1YWU1ZDM5ZDg2ZmU2MjVmMTA4NWUzNjAxYWRjM2Y0YWM4N2EwYWY4
|
15
|
+
MWVkOWJjNjAyYzdiOWNmNGQ2Yjk3YzVhNWVhNjViYmZiYjU1OGE=
|
data/lib/babel.js
CHANGED
@@ -4471,7 +4471,7 @@ if (global.addEventListener) {
|
|
4471
4471
|
global.attachEvent("onload", runScripts);
|
4472
4472
|
}
|
4473
4473
|
}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
4474
|
-
},{"../../../package":
|
4474
|
+
},{"../../../package":517,"../transformation":71,"../transformation/file/options":55,"./node":20}],20:[function(require,module,exports){
|
4475
4475
|
"use strict";
|
4476
4476
|
|
4477
4477
|
exports.__esModule = true;
|
@@ -4589,8 +4589,8 @@ function parse(code) {
|
|
4589
4589
|
opts.sourceType = "module";
|
4590
4590
|
opts.ecmaVersion = Infinity;
|
4591
4591
|
opts.plugins = {
|
4592
|
-
|
4593
|
-
|
4592
|
+
jsx: true,
|
4593
|
+
flow: true
|
4594
4594
|
};
|
4595
4595
|
opts.features = {};
|
4596
4596
|
|
@@ -4600,7 +4600,7 @@ function parse(code) {
|
|
4600
4600
|
|
4601
4601
|
return acorn.parse(code, opts);
|
4602
4602
|
}
|
4603
|
-
},{"../../../package":
|
4603
|
+
},{"../../../package":517,"../../acorn":1,"../polyfill":49,"../tools/build-external-helpers":50,"../transformation":71,"../transformation/file/options":55,"../transformation/transformer":85,"../transformation/transformer-pipeline":84,"../traversal":157,"../types":169,"../util":173,"./register/node-polyfill":22,"fs":189,"lodash/lang/isFunction":427}],21:[function(require,module,exports){
|
4604
4604
|
// required to safely use babel/register within a browserify codebase
|
4605
4605
|
|
4606
4606
|
"use strict";
|
@@ -4831,7 +4831,7 @@ var Buffer = (function () {
|
|
4831
4831
|
|
4832
4832
|
exports["default"] = Buffer;
|
4833
4833
|
module.exports = exports["default"];
|
4834
|
-
},{"lodash/collection/includes":341,"lodash/lang/isBoolean":
|
4834
|
+
},{"lodash/collection/includes":341,"lodash/lang/isBoolean":425,"lodash/lang/isNumber":429,"repeating":499,"trim-right":516}],24:[function(require,module,exports){
|
4835
4835
|
"use strict";
|
4836
4836
|
|
4837
4837
|
exports.__esModule = true;
|
@@ -4872,7 +4872,7 @@ function ClassDeclaration(node, print) {
|
|
4872
4872
|
this.push("class");
|
4873
4873
|
|
4874
4874
|
if (node.id) {
|
4875
|
-
this.
|
4875
|
+
this.push(" ");
|
4876
4876
|
print(node.id);
|
4877
4877
|
}
|
4878
4878
|
|
@@ -5184,7 +5184,7 @@ function MetaProperty(node, print) {
|
|
5184
5184
|
this.push(".");
|
5185
5185
|
print(node.property);
|
5186
5186
|
}
|
5187
|
-
},{"../../types":169,"is-integer":326,"lodash/lang/isNumber":
|
5187
|
+
},{"../../types":169,"is-integer":326,"lodash/lang/isNumber":429}],28:[function(require,module,exports){
|
5188
5188
|
"use strict";
|
5189
5189
|
|
5190
5190
|
exports.__esModule = true;
|
@@ -6069,7 +6069,7 @@ function VariableDeclarator(node, print) {
|
|
6069
6069
|
print(node.init);
|
6070
6070
|
}
|
6071
6071
|
}
|
6072
|
-
},{"../../types":169,"repeating":
|
6072
|
+
},{"../../types":169,"repeating":499}],33:[function(require,module,exports){
|
6073
6073
|
"use strict";
|
6074
6074
|
|
6075
6075
|
exports.__esModule = true;
|
@@ -6173,6 +6173,12 @@ function Property(node, print) {
|
|
6173
6173
|
print(node.key);
|
6174
6174
|
this.push("]");
|
6175
6175
|
} else {
|
6176
|
+
// print `({ foo: foo = 5 } = {})` as `({ foo = 5 } = {});`
|
6177
|
+
if (t.isAssignmentPattern(node.value) && t.isIdentifier(node.key) && node.key.name === node.value.left.name) {
|
6178
|
+
print(node.value);
|
6179
|
+
return;
|
6180
|
+
}
|
6181
|
+
|
6176
6182
|
print(node.key);
|
6177
6183
|
|
6178
6184
|
// shorthand!
|
@@ -6734,7 +6740,7 @@ module.exports = function (ast, opts, code) {
|
|
6734
6740
|
};
|
6735
6741
|
|
6736
6742
|
module.exports.CodeGenerator = CodeGenerator;
|
6737
|
-
},{"../messages":47,"../types":169,"./buffer":23,"./generators/base":24,"./generators/classes":25,"./generators/comprehensions":26,"./generators/expressions":27,"./generators/flow":28,"./generators/jsx":29,"./generators/methods":30,"./generators/modules":31,"./generators/statements":32,"./generators/template-literals":33,"./generators/types":34,"./node":36,"./position":39,"./source-map":40,"./whitespace":41,"detect-indent":315,"lodash/collection/each":339,"lodash/object/extend":
|
6743
|
+
},{"../messages":47,"../types":169,"./buffer":23,"./generators/base":24,"./generators/classes":25,"./generators/comprehensions":26,"./generators/expressions":27,"./generators/flow":28,"./generators/jsx":29,"./generators/methods":30,"./generators/modules":31,"./generators/statements":32,"./generators/template-literals":33,"./generators/types":34,"./node":36,"./position":39,"./source-map":40,"./whitespace":41,"detect-indent":315,"lodash/collection/each":339,"lodash/object/extend":438,"repeating":499}],36:[function(require,module,exports){
|
6738
6744
|
"use strict";
|
6739
6745
|
|
6740
6746
|
exports.__esModule = true;
|
@@ -7233,7 +7239,7 @@ exports.list = {
|
|
7233
7239
|
};
|
7234
7240
|
});
|
7235
7241
|
});
|
7236
|
-
},{"../../types":169,"lodash/collection/each":339,"lodash/collection/map":342,"lodash/lang/isBoolean":
|
7242
|
+
},{"../../types":169,"lodash/collection/each":339,"lodash/collection/map":342,"lodash/lang/isBoolean":425}],39:[function(require,module,exports){
|
7237
7243
|
"use strict";
|
7238
7244
|
|
7239
7245
|
exports.__esModule = true;
|
@@ -7302,7 +7308,7 @@ var SourceMap = (function () {
|
|
7302
7308
|
|
7303
7309
|
if (opts.sourceMaps) {
|
7304
7310
|
this.map = new _sourceMap2["default"].SourceMapGenerator({
|
7305
|
-
file: opts.
|
7311
|
+
file: opts.sourceMapTarget,
|
7306
7312
|
sourceRoot: opts.sourceRoot
|
7307
7313
|
});
|
7308
7314
|
|
@@ -7351,7 +7357,7 @@ var SourceMap = (function () {
|
|
7351
7357
|
|
7352
7358
|
exports["default"] = SourceMap;
|
7353
7359
|
module.exports = exports["default"];
|
7354
|
-
},{"../types":169,"source-map":
|
7360
|
+
},{"../types":169,"source-map":503}],41:[function(require,module,exports){
|
7355
7361
|
"use strict";
|
7356
7362
|
|
7357
7363
|
exports.__esModule = true;
|
@@ -7602,7 +7608,7 @@ exports["default"] = function (lines, lineNumber, colNumber) {
|
|
7602
7608
|
|
7603
7609
|
;
|
7604
7610
|
module.exports = exports["default"];
|
7605
|
-
},{"chalk":217,"esutils":323,"js-tokens":329,"line-numbers":331,"repeating":
|
7611
|
+
},{"chalk":217,"esutils":323,"js-tokens":329,"line-numbers":331,"repeating":499}],43:[function(require,module,exports){
|
7606
7612
|
"use strict";
|
7607
7613
|
|
7608
7614
|
exports.__esModule = true;
|
@@ -7643,7 +7649,7 @@ exports["default"] = function (dest, src) {
|
|
7643
7649
|
};
|
7644
7650
|
|
7645
7651
|
module.exports = exports["default"];
|
7646
|
-
},{"lodash/object/merge":
|
7652
|
+
},{"lodash/object/merge":442}],44:[function(require,module,exports){
|
7647
7653
|
"use strict";
|
7648
7654
|
|
7649
7655
|
exports.__esModule = true;
|
@@ -7723,7 +7729,6 @@ exports["default"] = function (code) {
|
|
7723
7729
|
}
|
7724
7730
|
|
7725
7731
|
var ast = acorn.parse(code, parseOpts);
|
7726
|
-
|
7727
7732
|
_estraverse2["default"].attachComments(ast, comments, tokens);
|
7728
7733
|
ast = (0, _normalizeAst2["default"])(ast, comments, tokens);
|
7729
7734
|
return ast;
|
@@ -7869,7 +7874,7 @@ def("ExportAllDeclaration").bases("Declaration").build("exported", "source").fie
|
|
7869
7874
|
def("BindExpression").bases("Expression").build("object", "callee").field("object", or(def("Expression"), null)).field("callee", def("Expression"));
|
7870
7875
|
|
7871
7876
|
_astTypes2["default"].finalize();
|
7872
|
-
},{"./types":169,"ast-types":188,"estraverse":318,"lodash/object/extend":
|
7877
|
+
},{"./types":169,"ast-types":188,"estraverse":318,"lodash/object/extend":438}],49:[function(require,module,exports){
|
7873
7878
|
(function (global){
|
7874
7879
|
"use strict";
|
7875
7880
|
|
@@ -7882,7 +7887,7 @@ if (global._babelPolyfill) {
|
|
7882
7887
|
}
|
7883
7888
|
global._babelPolyfill = true;
|
7884
7889
|
}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
7885
|
-
},{"core-js/shim":311,"regenerator/runtime":
|
7890
|
+
},{"core-js/shim":311,"regenerator/runtime":492}],50:[function(require,module,exports){
|
7886
7891
|
"use strict";
|
7887
7892
|
|
7888
7893
|
exports.__esModule = true;
|
@@ -8071,7 +8076,7 @@ exports["default"] = function (loc) {
|
|
8071
8076
|
|
8072
8077
|
;
|
8073
8078
|
module.exports = exports["default"];
|
8074
|
-
},{"../helpers/merge":43,"fs":189,"path":199,"strip-json-comments":
|
8079
|
+
},{"../helpers/merge":43,"fs":189,"path":199,"strip-json-comments":514}],52:[function(require,module,exports){
|
8075
8080
|
(function (process){
|
8076
8081
|
"use strict";
|
8077
8082
|
|
@@ -8301,7 +8306,7 @@ var File = (function () {
|
|
8301
8306
|
|
8302
8307
|
(0, _lodashObjectDefaults2["default"])(opts, {
|
8303
8308
|
sourceFileName: opts.filenameRelative,
|
8304
|
-
|
8309
|
+
sourceMapTarget: opts.filenameRelative
|
8305
8310
|
});
|
8306
8311
|
|
8307
8312
|
//
|
@@ -8795,7 +8800,7 @@ module.exports = exports["default"];
|
|
8795
8800
|
|
8796
8801
|
// `err.stack` may be a readonly property in some environments
|
8797
8802
|
}).call(this,require('_process'))
|
8798
|
-
},{"../../api/node":20,"../../generation":35,"../../helpers/code-frame":42,"../../helpers/merge":43,"../../helpers/parse":46,"../../tools/resolve-rc":51,"../../traversal":157,"../../traversal/path":161,"../../traversal/scope":164,"../../types":169,"../../util":173,"../modules":79,"../transformer":85,"./../index":71,"./logger":53,"./option-parsers":54,"./options":55,"./plugin-manager":56,"_process":200,"convert-source-map":225,"lodash/collection/includes":341,"lodash/lang/clone":
|
8803
|
+
},{"../../api/node":20,"../../generation":35,"../../helpers/code-frame":42,"../../helpers/merge":43,"../../helpers/parse":46,"../../tools/resolve-rc":51,"../../traversal":157,"../../traversal/path":161,"../../traversal/scope":164,"../../types":169,"../../util":173,"../modules":79,"../transformer":85,"./../index":71,"./logger":53,"./option-parsers":54,"./options":55,"./plugin-manager":56,"_process":200,"convert-source-map":225,"lodash/collection/includes":341,"lodash/lang/clone":421,"lodash/lang/isFunction":427,"lodash/object/assign":436,"lodash/object/defaults":437,"path":199,"path-is-absolute":454,"shebang-regex":501,"slash":502,"source-map":503}],53:[function(require,module,exports){
|
8799
8804
|
"use strict";
|
8800
8805
|
|
8801
8806
|
exports.__esModule = true;
|
@@ -8941,7 +8946,7 @@ module.exports={
|
|
8941
8946
|
"nonStandard": {
|
8942
8947
|
"type": "boolean",
|
8943
8948
|
"default": true,
|
8944
|
-
"description": "enable support for JSX and Flow"
|
8949
|
+
"description": "enable/disable support for JSX and Flow (on by default)"
|
8945
8950
|
},
|
8946
8951
|
|
8947
8952
|
"experimental": {
|
@@ -8949,7 +8954,7 @@ module.exports={
|
|
8949
8954
|
},
|
8950
8955
|
|
8951
8956
|
"highlightCode": {
|
8952
|
-
"description": "ANSI syntax
|
8957
|
+
"description": "enable/disable ANSI syntax highlighting of code frames (on by default)",
|
8953
8958
|
"type": "boolean",
|
8954
8959
|
"default": true
|
8955
8960
|
},
|
@@ -9046,7 +9051,7 @@ module.exports={
|
|
9046
9051
|
"comments": {
|
9047
9052
|
"type": "boolean",
|
9048
9053
|
"default": true,
|
9049
|
-
"description": "output comments in generated output"
|
9054
|
+
"description": "strip/output comments in generated output (on by default)"
|
9050
9055
|
},
|
9051
9056
|
|
9052
9057
|
"compact": {
|
@@ -9095,6 +9100,11 @@ module.exports={
|
|
9095
9100
|
},
|
9096
9101
|
|
9097
9102
|
"sourceMapName": {
|
9103
|
+
"alias": "sourceMapTarget",
|
9104
|
+
"description": "DEPRECATED - Please use sourceMapTarget"
|
9105
|
+
},
|
9106
|
+
|
9107
|
+
"sourceMapTarget": {
|
9098
9108
|
"type": "string",
|
9099
9109
|
"description": "set `file` on returned source map"
|
9100
9110
|
},
|
@@ -9187,13 +9197,11 @@ var PluginManager = (function () {
|
|
9187
9197
|
|
9188
9198
|
var match = name.match(/^(.*?):(after|before)$/);
|
9189
9199
|
if (match) {
|
9190
|
-
;
|
9200
|
+
name = match[1];
|
9201
|
+
position = match[2];
|
9202
|
+
}
|
9191
9203
|
|
9192
|
-
|
9193
|
-
name = _temp[1];
|
9194
|
-
position = _temp[2];
|
9195
|
-
_temp;
|
9196
|
-
}var loc = util.resolveRelative(name) || util.resolveRelative("babel-plugin-" + name);
|
9204
|
+
var loc = util.resolveRelative("babel-plugin-" + name) || util.resolveRelative(name);
|
9197
9205
|
if (loc) {
|
9198
9206
|
return {
|
9199
9207
|
position: position,
|
@@ -9226,10 +9234,8 @@ var PluginManager = (function () {
|
|
9226
9234
|
|
9227
9235
|
if (name) {
|
9228
9236
|
if (typeof name === "object" && name.transformer) {
|
9229
|
-
|
9230
|
-
|
9231
|
-
position = _temp2.position;
|
9232
|
-
_temp2;
|
9237
|
+
plugin = name.transformer;
|
9238
|
+
position = name.position;
|
9233
9239
|
} else if (typeof name !== "string") {
|
9234
9240
|
// not a string so we'll just assume that it's a direct Transformer instance, if not then
|
9235
9241
|
// the checks later on will complain
|
@@ -9237,11 +9243,10 @@ var PluginManager = (function () {
|
|
9237
9243
|
}
|
9238
9244
|
|
9239
9245
|
if (typeof name === "string") {
|
9240
|
-
var
|
9246
|
+
var _subnormaliseString = this.subnormaliseString(name, position);
|
9241
9247
|
|
9242
|
-
plugin =
|
9243
|
-
position =
|
9244
|
-
_temp3;
|
9248
|
+
plugin = _subnormaliseString.plugin;
|
9249
|
+
position = _subnormaliseString.position;
|
9245
9250
|
}
|
9246
9251
|
} else {
|
9247
9252
|
throw new TypeError(messages.get("pluginIllegalKind", typeof name, name));
|
@@ -9605,7 +9610,7 @@ exports["default"] = function (exports, opts) {
|
|
9605
9610
|
|
9606
9611
|
;
|
9607
9612
|
module.exports = exports["default"];
|
9608
|
-
},{"../../messages":47,"../../types":169,"./react":66,"esutils":323,"lodash/lang/isString":
|
9613
|
+
},{"../../messages":47,"../../types":169,"./react":66,"esutils":323,"lodash/lang/isString":433}],60:[function(require,module,exports){
|
9609
9614
|
"use strict";
|
9610
9615
|
|
9611
9616
|
exports.__esModule = true;
|
@@ -9790,7 +9795,7 @@ function toDefineObject(mutatorMap) {
|
|
9790
9795
|
|
9791
9796
|
return toClassObject(mutatorMap);
|
9792
9797
|
}
|
9793
|
-
},{"../../traversal":157,"../../types":169,"lodash/collection/each":339,"lodash/lang/cloneDeep":
|
9798
|
+
},{"../../traversal":157,"../../types":169,"lodash/collection/each":339,"lodash/lang/cloneDeep":422,"lodash/object/has":439}],62:[function(require,module,exports){
|
9794
9799
|
"use strict";
|
9795
9800
|
|
9796
9801
|
exports.__esModule = true;
|
@@ -10220,7 +10225,7 @@ function buildChildren(node) {
|
|
10220
10225
|
|
10221
10226
|
return elems;
|
10222
10227
|
}
|
10223
|
-
},{"../../types":169,"lodash/lang/isString":
|
10228
|
+
},{"../../types":169,"lodash/lang/isString":433}],67:[function(require,module,exports){
|
10224
10229
|
"use strict";
|
10225
10230
|
|
10226
10231
|
exports.__esModule = true;
|
@@ -11094,7 +11099,7 @@ var DefaultFormatter = (function () {
|
|
11094
11099
|
|
11095
11100
|
exports["default"] = DefaultFormatter;
|
11096
11101
|
module.exports = exports["default"];
|
11097
|
-
},{"../../helpers/object":45,"../../messages":47,"../../traversal":157,"../../types":169,"../../util":173,"lodash/object/extend":
|
11102
|
+
},{"../../helpers/object":45,"../../messages":47,"../../traversal":157,"../../types":169,"../../util":173,"lodash/object/extend":438}],73:[function(require,module,exports){
|
11098
11103
|
"use strict";
|
11099
11104
|
|
11100
11105
|
exports.__esModule = true;
|
@@ -11265,8 +11270,8 @@ var AMDFormatter = (function (_DefaultFormatter) {
|
|
11265
11270
|
} else if (t.isImportNamespaceSpecifier(specifier)) {} else if (!(0, _lodashCollectionIncludes2["default"])(this.file.dynamicImported, node) && t.isSpecifierDefault(specifier) && !this.noInteropRequireImport) {
|
11266
11271
|
// import foo from "foo";
|
11267
11272
|
var uid = this.scope.generateUidIdentifier(specifier.local.name);
|
11268
|
-
nodes.push(t.variableDeclaration("var", [t.variableDeclarator(uid, t.callExpression(this.file.addHelper("interop-require"), [ref]))]));
|
11269
|
-
ref = uid;
|
11273
|
+
nodes.push(t.variableDeclaration("var", [t.variableDeclarator(uid, t.callExpression(this.file.addHelper("interop-require-default"), [ref]))]));
|
11274
|
+
ref = t.memberExpression(uid, t.identifier("default"));
|
11270
11275
|
} else {
|
11271
11276
|
// import { foo } from "foo";
|
11272
11277
|
var imported = specifier.imported;
|
@@ -11322,7 +11327,7 @@ module.exports = exports["default"];
|
|
11322
11327
|
// absolute module reference
|
11323
11328
|
|
11324
11329
|
// import * as bar from "foo";
|
11325
|
-
},{"../../types":169,"../../util":173,"./_default":72,"./common":77,"lodash/collection/includes":341,"lodash/object/values":
|
11330
|
+
},{"../../types":169,"../../util":173,"./_default":72,"./common":77,"lodash/collection/includes":341,"lodash/object/values":444}],76:[function(require,module,exports){
|
11326
11331
|
"use strict";
|
11327
11332
|
|
11328
11333
|
exports.__esModule = true;
|
@@ -11588,42 +11593,40 @@ var _types = require("../../types");
|
|
11588
11593
|
var t = _interopRequireWildcard(_types);
|
11589
11594
|
|
11590
11595
|
var hoistVariablesVisitor = {
|
11591
|
-
|
11592
|
-
|
11593
|
-
|
11594
|
-
|
11595
|
-
}
|
11596
|
-
|
11597
|
-
if (t.isVariableDeclaration(node)) {
|
11598
|
-
if (node.kind !== "var" && !t.isProgram(parent)) {
|
11599
|
-
// let, const
|
11600
|
-
// can't be accessed
|
11601
|
-
return;
|
11602
|
-
}
|
11596
|
+
Function: function Function() {
|
11597
|
+
// nothing inside is accessible
|
11598
|
+
this.skip();
|
11599
|
+
},
|
11603
11600
|
|
11604
|
-
|
11605
|
-
|
11601
|
+
VariableDeclaration: function VariableDeclaration(node, parent, scope, state) {
|
11602
|
+
if (node.kind !== "var" && !t.isProgram(parent)) {
|
11603
|
+
// let, const
|
11604
|
+
// can't be accessed
|
11605
|
+
return;
|
11606
|
+
}
|
11606
11607
|
|
11607
|
-
|
11608
|
+
// ignore block hoisted nodes as these can be left in
|
11609
|
+
if (state.formatter._canHoist(node)) return;
|
11608
11610
|
|
11609
|
-
|
11610
|
-
var declar = node.declarations[i];
|
11611
|
-
state.hoistDeclarators.push(t.variableDeclarator(declar.id));
|
11612
|
-
if (declar.init) {
|
11613
|
-
// no initializer so we can just hoist it as-is
|
11614
|
-
var assign = t.expressionStatement(t.assignmentExpression("=", declar.id, declar.init));
|
11615
|
-
nodes.push(assign);
|
11616
|
-
}
|
11617
|
-
}
|
11611
|
+
var nodes = [];
|
11618
11612
|
|
11619
|
-
|
11620
|
-
|
11621
|
-
|
11622
|
-
|
11613
|
+
for (var i = 0; i < node.declarations.length; i++) {
|
11614
|
+
var declar = node.declarations[i];
|
11615
|
+
state.hoistDeclarators.push(t.variableDeclarator(declar.id));
|
11616
|
+
if (declar.init) {
|
11617
|
+
// no initializer so we can just hoist it as-is
|
11618
|
+
var assign = t.expressionStatement(t.assignmentExpression("=", declar.id, declar.init));
|
11619
|
+
nodes.push(assign);
|
11623
11620
|
}
|
11621
|
+
}
|
11624
11622
|
|
11625
|
-
|
11623
|
+
// for (var i in test)
|
11624
|
+
// for (var i = 0;;)
|
11625
|
+
if (t.isFor(parent) && (parent.left === node || parent.init === node)) {
|
11626
|
+
return node.declarations[0].id;
|
11626
11627
|
}
|
11628
|
+
|
11629
|
+
return nodes;
|
11627
11630
|
}
|
11628
11631
|
};
|
11629
11632
|
|
@@ -11942,7 +11945,7 @@ var UMDFormatter = (function (_AMDFormatter) {
|
|
11942
11945
|
|
11943
11946
|
exports["default"] = UMDFormatter;
|
11944
11947
|
module.exports = exports["default"];
|
11945
|
-
},{"../../types":169,"../../util":173,"./_default":72,"./amd":75,"lodash/object/values":
|
11948
|
+
},{"../../types":169,"../../util":173,"./_default":72,"./amd":75,"lodash/object/values":444,"path":199}],83:[function(require,module,exports){
|
11946
11949
|
"use strict";
|
11947
11950
|
|
11948
11951
|
exports.__esModule = true;
|
@@ -12133,7 +12136,7 @@ var TransformerPipeline = (function () {
|
|
12133
12136
|
|
12134
12137
|
exports["default"] = TransformerPipeline;
|
12135
12138
|
module.exports = exports["default"];
|
12136
|
-
},{"../helpers/normalize-ast":44,"../helpers/object":45,"./file":52,"./transformer":85,"lodash/object/assign":
|
12139
|
+
},{"../helpers/normalize-ast":44,"../helpers/object":45,"./file":52,"./transformer":85,"lodash/object/assign":436}],85:[function(require,module,exports){
|
12137
12140
|
"use strict";
|
12138
12141
|
|
12139
12142
|
exports.__esModule = true;
|
@@ -12262,7 +12265,7 @@ var Transformer = (function () {
|
|
12262
12265
|
|
12263
12266
|
exports["default"] = Transformer;
|
12264
12267
|
module.exports = exports["default"];
|
12265
|
-
},{"../../acorn":1,"../messages":47,"../traversal":157,"./file":52,"./transformer-pass":83,"lodash/collection/each":339,"lodash/lang/isFunction":
|
12268
|
+
},{"../../acorn":1,"../messages":47,"../traversal":157,"./file":52,"./transformer-pass":83,"lodash/collection/each":339,"lodash/lang/isFunction":427,"lodash/lang/isObject":430,"lodash/object/assign":436}],86:[function(require,module,exports){
|
12266
12269
|
module.exports={
|
12267
12270
|
"useStrict": "strict",
|
12268
12271
|
"es5.runtime": "runtime",
|
@@ -12511,8 +12514,6 @@ function BlockStatement(block, parent, scope, file) {
|
|
12511
12514
|
exports.Program = BlockStatement;
|
12512
12515
|
|
12513
12516
|
function replace(node, parent, scope, remaps) {
|
12514
|
-
if (!t.isReferencedIdentifier(node, parent)) return;
|
12515
|
-
|
12516
12517
|
var remap = remaps[node.name];
|
12517
12518
|
if (!remap) return;
|
12518
12519
|
|
@@ -12527,11 +12528,20 @@ function replace(node, parent, scope, remaps) {
|
|
12527
12528
|
}
|
12528
12529
|
|
12529
12530
|
var replaceVisitor = {
|
12530
|
-
|
12531
|
-
|
12531
|
+
ReferencedIdentifier: replace,
|
12532
|
+
|
12533
|
+
AssignmentExpression: function AssignmentExpression(node, parent, scope, remaps) {
|
12534
|
+
var ids = this.getBindingIdentifiers();
|
12535
|
+
for (var name in ids) {
|
12536
|
+
replace(ids[name], node, scope, remaps);
|
12537
|
+
}
|
12538
|
+
} };
|
12532
12539
|
|
12533
12540
|
function traverseReplace(node, parent, scope, remaps) {
|
12534
|
-
|
12541
|
+
if (t.isIdentifier(node)) {
|
12542
|
+
replace(node, parent, scope, remaps);
|
12543
|
+
}
|
12544
|
+
|
12535
12545
|
scope.traverse(node, replaceVisitor, remaps);
|
12536
12546
|
}
|
12537
12547
|
|
@@ -13056,7 +13066,7 @@ var BlockScoping = (function () {
|
|
13056
13066
|
|
13057
13067
|
return BlockScoping;
|
13058
13068
|
})();
|
13059
|
-
},{"../../../helpers/object":45,"../../../traversal":157,"../../../types":169,"../../../util":173,"lodash/object/extend":
|
13069
|
+
},{"../../../helpers/object":45,"../../../traversal":157,"../../../types":169,"../../../util":173,"lodash/object/extend":438,"lodash/object/values":444}],93:[function(require,module,exports){
|
13060
13070
|
"use strict";
|
13061
13071
|
|
13062
13072
|
exports.__esModule = true;
|
@@ -13655,7 +13665,7 @@ var ClassTransformer = (function () {
|
|
13655
13665
|
|
13656
13666
|
return ClassTransformer;
|
13657
13667
|
})();
|
13658
|
-
},{"../../../messages":47,"../../../traversal":157,"../../../types":169,"../../../util":173,"../../helpers/define-map":61,"../../helpers/memoise-decorators":64,"../../helpers/name-method":65,"../../helpers/replace-supers":69,"lodash/collection/each":339,"lodash/object/has":
|
13668
|
+
},{"../../../messages":47,"../../../traversal":157,"../../../types":169,"../../../util":173,"../../helpers/define-map":61,"../../helpers/memoise-decorators":64,"../../helpers/name-method":65,"../../helpers/replace-supers":69,"lodash/collection/each":339,"lodash/object/has":439}],94:[function(require,module,exports){
|
13659
13669
|
"use strict";
|
13660
13670
|
|
13661
13671
|
exports.__esModule = true;
|
@@ -14814,7 +14824,7 @@ function Func(node, parent, scope, file) {
|
|
14814
14824
|
loop._blockHoist = node.params.length + 1;
|
14815
14825
|
node.body.body.unshift(loop);
|
14816
14826
|
}
|
14817
|
-
},{"../../../types":169,"../../../util":173,"lodash/lang/isNumber":
|
14827
|
+
},{"../../../types":169,"../../../util":173,"lodash/lang/isNumber":429}],101:[function(require,module,exports){
|
14818
14828
|
"use strict";
|
14819
14829
|
|
14820
14830
|
exports.__esModule = true;
|
@@ -14978,7 +14988,7 @@ function Literal(node) {
|
|
14978
14988
|
node.regex.pattern = (0, _regexpuRewritePattern2["default"])(node.regex.pattern, node.regex.flags);
|
14979
14989
|
regex.pullFlag(node, "u");
|
14980
14990
|
}
|
14981
|
-
},{"../../helpers/regex":67,"regexpu/rewrite-pattern":
|
14991
|
+
},{"../../helpers/regex":67,"regexpu/rewrite-pattern":498}],105:[function(require,module,exports){
|
14982
14992
|
"use strict";
|
14983
14993
|
|
14984
14994
|
exports.__esModule = true;
|
@@ -15321,12 +15331,14 @@ var visitor = {
|
|
15321
15331
|
},
|
15322
15332
|
|
15323
15333
|
ThisExpression: function ThisExpression(node, parent, scope, state) {
|
15324
|
-
state.
|
15325
|
-
|
15334
|
+
if (!state.isShadowed) {
|
15335
|
+
state.needsThis = true;
|
15336
|
+
state.thisPaths.push(this);
|
15337
|
+
}
|
15326
15338
|
},
|
15327
15339
|
|
15328
15340
|
ReferencedIdentifier: function ReferencedIdentifier(node, parent, scope, state) {
|
15329
|
-
if (node.name === "arguments") {
|
15341
|
+
if (node.name === "arguments" && !state.isShadowed) {
|
15330
15342
|
state.needsArguments = true;
|
15331
15343
|
state.argumentsPaths.push(this);
|
15332
15344
|
}
|
@@ -15346,6 +15358,7 @@ var TailCallTransformer = (function () {
|
|
15346
15358
|
this.needsThis = false;
|
15347
15359
|
this.thisPaths = [];
|
15348
15360
|
|
15361
|
+
this.isShadowed = path.isArrowFunctionExpression() || path.is("shadow");
|
15349
15362
|
this.ownerId = path.node.id;
|
15350
15363
|
this.vars = [];
|
15351
15364
|
|
@@ -16305,9 +16318,9 @@ var metadata = {
|
|
16305
16318
|
};
|
16306
16319
|
|
16307
16320
|
exports.metadata = metadata;
|
16308
|
-
function buildClone(bindingKey, refKey) {
|
16321
|
+
function buildClone(bindingKey, refKey, check) {
|
16309
16322
|
return function (node) {
|
16310
|
-
if (node[bindingKey] === node[refKey]) {
|
16323
|
+
if (node[bindingKey] === node[refKey] || check && check(node)) {
|
16311
16324
|
node[refKey] = t.removeComments((0, _lodashLangClone2["default"])(node[refKey]));
|
16312
16325
|
}
|
16313
16326
|
};
|
@@ -16327,13 +16340,16 @@ function buildListClone(listKey, bindingKey, refKey) {
|
|
16327
16340
|
};
|
16328
16341
|
}
|
16329
16342
|
|
16330
|
-
var Property = buildClone("value", "key")
|
16343
|
+
var Property = buildClone("value", "key", function (node) {
|
16344
|
+
return t.isAssignmentPattern(node.value) && node.value.left === node.key;
|
16345
|
+
});
|
16346
|
+
|
16331
16347
|
exports.Property = Property;
|
16332
16348
|
var ExportDeclaration = buildListClone("specifiers", "local", "exported");
|
16333
16349
|
exports.ExportDeclaration = ExportDeclaration;
|
16334
16350
|
var ImportDeclaration = buildListClone("specifiers", "local", "imported");
|
16335
16351
|
exports.ImportDeclaration = ImportDeclaration;
|
16336
|
-
},{"../../../types":169,"lodash/lang/clone":
|
16352
|
+
},{"../../../types":169,"lodash/lang/clone":421}],125:[function(require,module,exports){
|
16337
16353
|
"use strict";
|
16338
16354
|
|
16339
16355
|
exports.__esModule = true;
|
@@ -16531,7 +16547,7 @@ var Program = {
|
|
16531
16547
|
}
|
16532
16548
|
};
|
16533
16549
|
exports.Program = Program;
|
16534
|
-
},{"../../../types":169,"lodash/lang/clone":
|
16550
|
+
},{"../../../types":169,"lodash/lang/clone":421}],128:[function(require,module,exports){
|
16535
16551
|
"use strict";
|
16536
16552
|
|
16537
16553
|
exports.__esModule = true;
|
@@ -17410,7 +17426,7 @@ function convertTraversalPathToNodePath(path) {
|
|
17410
17426
|
|
17411
17427
|
return nodePath;
|
17412
17428
|
}
|
17413
|
-
},{"../../../types":169,"ast-types":188,"regenerator":
|
17429
|
+
},{"../../../types":169,"ast-types":188,"regenerator":462}],146:[function(require,module,exports){
|
17414
17430
|
module.exports={
|
17415
17431
|
"builtins": {
|
17416
17432
|
"Symbol": "symbol",
|
@@ -17712,7 +17728,7 @@ var MemberExpression = {
|
|
17712
17728
|
}
|
17713
17729
|
};
|
17714
17730
|
exports.MemberExpression = MemberExpression;
|
17715
|
-
},{"../../../../traversal":157,"../../../../types":169,"../../../../util":173,"./definitions":146,"lodash/collection/includes":341,"lodash/object/has":
|
17731
|
+
},{"../../../../traversal":157,"../../../../types":169,"../../../../util":173,"./definitions":146,"lodash/collection/includes":341,"lodash/object/has":439}],148:[function(require,module,exports){
|
17716
17732
|
"use strict";
|
17717
17733
|
|
17718
17734
|
exports.__esModule = true;
|
@@ -18974,10 +18990,15 @@ var TraversalPath = (function () {
|
|
18974
18990
|
|
18975
18991
|
do {
|
18976
18992
|
var container = path.container;
|
18993
|
+
|
18994
|
+
if (path.isFunction()) {
|
18995
|
+
return false;
|
18996
|
+
}
|
18997
|
+
|
18977
18998
|
if (Array.isArray(container) && path.key !== container.length - 1) {
|
18978
18999
|
return false;
|
18979
19000
|
}
|
18980
|
-
} while (path = path.parentPath && !path.isProgram());
|
19001
|
+
} while ((path = path.parentPath) && !path.isProgram());
|
18981
19002
|
|
18982
19003
|
return true;
|
18983
19004
|
};
|
@@ -19425,7 +19446,7 @@ var TraversalPath = (function () {
|
|
19425
19446
|
}
|
19426
19447
|
|
19427
19448
|
// replacing a statement with an expression so wrap it in an expression statement
|
19428
|
-
if (this.isPreviousType("Statement") && t.isExpression(replacement)) {
|
19449
|
+
if (this.isPreviousType("Statement") && t.isExpression(replacement) && !this.canHaveVariableDeclarationOrExpression()) {
|
19429
19450
|
replacement = t.expressionStatement(replacement);
|
19430
19451
|
}
|
19431
19452
|
|
@@ -19445,6 +19466,20 @@ var TraversalPath = (function () {
|
|
19445
19466
|
this.setScope();
|
19446
19467
|
};
|
19447
19468
|
|
19469
|
+
/**
|
19470
|
+
* This checks whether or now we're in one of the following positions:
|
19471
|
+
*
|
19472
|
+
* for (KEY in right);
|
19473
|
+
* for (KEY;;);
|
19474
|
+
*
|
19475
|
+
* This is because these spots allow VariableDeclarations AND normal expressions so we need to tell the
|
19476
|
+
* path replacement that it's ok to replace this with an expression.
|
19477
|
+
*/
|
19478
|
+
|
19479
|
+
TraversalPath.prototype.canHaveVariableDeclarationOrExpression = function canHaveVariableDeclarationOrExpression() {
|
19480
|
+
return (this.key === "init" || this.key === "left") && this.parentPath.isFor();
|
19481
|
+
};
|
19482
|
+
|
19448
19483
|
/**
|
19449
19484
|
* Description
|
19450
19485
|
*/
|
@@ -19471,20 +19506,22 @@ var TraversalPath = (function () {
|
|
19471
19506
|
* Description
|
19472
19507
|
*/
|
19473
19508
|
|
19474
|
-
TraversalPath.prototype.
|
19509
|
+
TraversalPath.prototype.getCompletionRecords = function getCompletionRecords() {
|
19475
19510
|
var paths = [];
|
19476
19511
|
|
19477
19512
|
var add = function add(path) {
|
19478
|
-
if (path) paths = paths.concat(path.
|
19513
|
+
if (path) paths = paths.concat(path.getCompletionRecords());
|
19479
19514
|
};
|
19480
19515
|
|
19481
19516
|
if (this.isIfStatement()) {
|
19482
19517
|
add(this.get("consequent"));
|
19483
19518
|
add(this.get("alternate"));
|
19484
|
-
} else if (this.isDoExpression()) {
|
19519
|
+
} else if (this.isDoExpression() || this.isFor() || this.isWhile()) {
|
19485
19520
|
add(this.get("body"));
|
19486
19521
|
} else if (this.isProgram() || this.isBlockStatement()) {
|
19487
19522
|
add(this.get("body").pop());
|
19523
|
+
} else if (this.isFunction()) {
|
19524
|
+
return this.get("body").getCompletionRecords();
|
19488
19525
|
} else {
|
19489
19526
|
paths.push(this);
|
19490
19527
|
}
|
@@ -19505,19 +19542,27 @@ var TraversalPath = (function () {
|
|
19505
19542
|
var container = t.functionExpression(null, [], t.blockStatement(nodes));
|
19506
19543
|
container.shadow = true;
|
19507
19544
|
|
19545
|
+
this.replaceWith(t.callExpression(container, []));
|
19546
|
+
this.traverse(hoistVariablesVisitor);
|
19547
|
+
|
19508
19548
|
// add implicit returns to all ending expression statements
|
19509
|
-
var last = this.
|
19549
|
+
var last = this.get("callee").getCompletionRecords();
|
19510
19550
|
for (var i = 0; i < last.length; i++) {
|
19511
19551
|
var lastNode = last[i];
|
19512
19552
|
if (lastNode.isExpressionStatement()) {
|
19513
|
-
lastNode.
|
19553
|
+
var loop = lastNode.findParent(function (node, path) {
|
19554
|
+
return path.isLoop();
|
19555
|
+
});
|
19556
|
+
if (loop) {
|
19557
|
+
var uid = this.get("callee").scope.generateDeclaredUidIdentifier("ret");
|
19558
|
+
this.get("callee.body").pushContainer("body", t.returnStatement(uid));
|
19559
|
+
lastNode.get("expression").replaceWith(t.assignmentExpression("=", uid, lastNode.node.expression));
|
19560
|
+
} else {
|
19561
|
+
lastNode.replaceWith(t.returnStatement(lastNode.node.expression));
|
19562
|
+
}
|
19514
19563
|
}
|
19515
19564
|
}
|
19516
19565
|
|
19517
|
-
this.replaceWith(t.callExpression(container, []));
|
19518
|
-
|
19519
|
-
this.traverse(hoistVariablesVisitor);
|
19520
|
-
|
19521
19566
|
return this.node;
|
19522
19567
|
}
|
19523
19568
|
};
|
@@ -19986,7 +20031,7 @@ module.exports = exports["default"];
|
|
19986
20031
|
|
19987
20032
|
// otherwise it's a request for a destructuring declarator and i'm not
|
19988
20033
|
// ready to resolve those just yet
|
19989
|
-
},{"../../helpers/code-frame":42,"../../helpers/parse":46,"../../messages":47,"../../types":169,"../index":157,"../scope":164,"../visitors":165,"./conversion":158,"./evaluation":159,"./hoister":160,"./virtual-types":162,"lodash/collection/includes":341,"lodash/lang/isBoolean":
|
20034
|
+
},{"../../helpers/code-frame":42,"../../helpers/parse":46,"../../messages":47,"../../types":169,"../index":157,"../scope":164,"../visitors":165,"./conversion":158,"./evaluation":159,"./hoister":160,"./virtual-types":162,"lodash/collection/includes":341,"lodash/lang/isBoolean":425,"lodash/lang/isNumber":429,"lodash/lang/isRegExp":432,"lodash/lang/isString":433,"lodash/object/assign":436,"lodash/object/extend":438}],162:[function(require,module,exports){
|
19990
20035
|
"use strict";
|
19991
20036
|
|
19992
20037
|
exports.__esModule = true;
|
@@ -21108,7 +21153,7 @@ exports["default"] = Scope;
|
|
21108
21153
|
module.exports = exports["default"];
|
21109
21154
|
|
21110
21155
|
//path.setData("scope", this);
|
21111
|
-
},{"../../helpers/object":45,"../../messages":47,"../../types":169,"../index":157,"../visitors":165,"./binding":163,"globals":325,"lodash/array/flatten":334,"lodash/collection/each":339,"lodash/collection/includes":341,"lodash/object/defaults":
|
21156
|
+
},{"../../helpers/object":45,"../../messages":47,"../../types":169,"../index":157,"../visitors":165,"./binding":163,"globals":325,"lodash/array/flatten":334,"lodash/collection/each":339,"lodash/collection/includes":341,"lodash/object/defaults":437,"lodash/object/extend":438}],165:[function(require,module,exports){
|
21112
21157
|
"use strict";
|
21113
21158
|
|
21114
21159
|
exports.__esModule = true;
|
@@ -21947,7 +21992,7 @@ function valueToNode(value) {
|
|
21947
21992
|
|
21948
21993
|
throw new Error("don't know how to turn this value into a node");
|
21949
21994
|
}
|
21950
|
-
},{"../traversal":157,"./index":169,"lodash/collection/each":339,"lodash/lang/isNumber":
|
21995
|
+
},{"../traversal":157,"./index":169,"lodash/collection/each":339,"lodash/lang/isNumber":429,"lodash/lang/isPlainObject":431,"lodash/lang/isRegExp":432,"lodash/lang/isString":433}],169:[function(require,module,exports){
|
21951
21996
|
"use strict";
|
21952
21997
|
|
21953
21998
|
exports.__esModule = true;
|
@@ -22318,7 +22363,7 @@ exports.__esModule = true;
|
|
22318
22363
|
(0, _lodashObjectAssign2["default"])(t, require("./retrievers"));
|
22319
22364
|
(0, _lodashObjectAssign2["default"])(t, require("./validators"));
|
22320
22365
|
(0, _lodashObjectAssign2["default"])(t, require("./converters"));
|
22321
|
-
},{"./alias-keys":166,"./builder-keys":167,"./converters":168,"./retrievers":170,"./validators":171,"./visitor-keys":172,"lodash/array/compact":333,"lodash/array/uniq":337,"lodash/collection/each":339,"lodash/object/assign":
|
22366
|
+
},{"./alias-keys":166,"./builder-keys":167,"./converters":168,"./retrievers":170,"./validators":171,"./visitor-keys":172,"lodash/array/compact":333,"lodash/array/uniq":337,"lodash/collection/each":339,"lodash/object/assign":436,"to-fast-properties":515}],170:[function(require,module,exports){
|
22322
22367
|
"use strict";
|
22323
22368
|
|
22324
22369
|
exports.__esModule = true;
|
@@ -23077,7 +23122,7 @@ try {
|
|
23077
23122
|
exports.templates = loadTemplates();
|
23078
23123
|
}
|
23079
23124
|
}).call(this,require('_process'),"/lib/babel")
|
23080
|
-
},{"../../templates.json":
|
23125
|
+
},{"../../templates.json":518,"./helpers/parse":46,"./messages":47,"./patch":48,"./traversal":157,"./types":169,"_process":200,"fs":189,"lodash/collection/contains":338,"lodash/lang/cloneDeep":422,"lodash/lang/isBoolean":425,"lodash/lang/isEmpty":426,"lodash/lang/isRegExp":432,"lodash/lang/isString":433,"lodash/object/has":439,"lodash/string/escapeRegExp":445,"lodash/string/startsWith":446,"minimatch":450,"module":189,"path":199,"slash":502,"util":216}],174:[function(require,module,exports){
|
23081
23126
|
'use strict';
|
23082
23127
|
|
23083
23128
|
module.exports = function(acorn) {
|
@@ -33104,7 +33149,7 @@ var path = require('path');
|
|
33104
33149
|
var commentRx = /^\s*\/(?:\/|\*)[@#]\s+sourceMappingURL=data:(?:application|text)\/json;(?:charset[:=]\S+;)?base64,(.*)$/mg;
|
33105
33150
|
var mapFileCommentRx =
|
33106
33151
|
// //# sourceMappingURL=foo.js.map /*# sourceMappingURL=foo.js.map */
|
33107
|
-
/(?:\/\/[@#][ \t]+sourceMappingURL=(
|
33152
|
+
/(?:\/\/[@#][ \t]+sourceMappingURL=([^\s'"]+?)[ \t]*$)|(?:\/\*[@#][ \t]+sourceMappingURL=([^\*]+?)[ \t]*(?:\*\/){1}[ \t]*$)/mg
|
33108
33153
|
|
33109
33154
|
function decodeBase64(base64) {
|
33110
33155
|
return new Buffer(base64, 'base64').toString();
|
@@ -33377,7 +33422,7 @@ var $ = require('./$')
|
|
33377
33422
|
, set = $.set
|
33378
33423
|
, isObject = $.isObject
|
33379
33424
|
, hide = $.hide
|
33380
|
-
,
|
33425
|
+
, isExtensible = Object.isExtensible || isObject
|
33381
33426
|
, ID = safe('id')
|
33382
33427
|
, O1 = safe('O1')
|
33383
33428
|
, LAST = safe('last')
|
@@ -33389,9 +33434,9 @@ var $ = require('./$')
|
|
33389
33434
|
function fastKey(it, create){
|
33390
33435
|
// return primitive with prefix
|
33391
33436
|
if(!isObject(it))return (typeof it == 'string' ? 'S' : 'P') + it;
|
33392
|
-
// can't set id to frozen object
|
33393
|
-
if(isFrozen(it))return 'F';
|
33394
33437
|
if(!has(it, ID)){
|
33438
|
+
// can't set id to frozen object
|
33439
|
+
if(!isExtensible(it))return 'F';
|
33395
33440
|
// not necessary to add id
|
33396
33441
|
if(!create)return 'E';
|
33397
33442
|
// add missing object id
|
@@ -33544,7 +33589,7 @@ var $ = require('./$')
|
|
33544
33589
|
, _has = $.has
|
33545
33590
|
, isObject = $.isObject
|
33546
33591
|
, hide = $.hide
|
33547
|
-
,
|
33592
|
+
, isExtensible = Object.isExtensible || isObject
|
33548
33593
|
, id = 0
|
33549
33594
|
, ID = safe('id')
|
33550
33595
|
, WEAK = safe('weak')
|
@@ -33595,21 +33640,21 @@ module.exports = {
|
|
33595
33640
|
// 23.4.3.3 WeakSet.prototype.delete(value)
|
33596
33641
|
'delete': function(key){
|
33597
33642
|
if(!isObject(key))return false;
|
33598
|
-
if(
|
33643
|
+
if(!isExtensible(key))return leakStore(this)['delete'](key);
|
33599
33644
|
return _has(key, WEAK) && _has(key[WEAK], this[ID]) && delete key[WEAK][this[ID]];
|
33600
33645
|
},
|
33601
33646
|
// 23.3.3.4 WeakMap.prototype.has(key)
|
33602
33647
|
// 23.4.3.4 WeakSet.prototype.has(value)
|
33603
33648
|
has: function has(key){
|
33604
33649
|
if(!isObject(key))return false;
|
33605
|
-
if(
|
33650
|
+
if(!isExtensible(key))return leakStore(this).has(key);
|
33606
33651
|
return _has(key, WEAK) && _has(key[WEAK], this[ID]);
|
33607
33652
|
}
|
33608
33653
|
});
|
33609
33654
|
return C;
|
33610
33655
|
},
|
33611
33656
|
def: function(that, key, value){
|
33612
|
-
if(
|
33657
|
+
if(!isExtensible(assert.obj(key))){
|
33613
33658
|
leakStore(that).set(key, value);
|
33614
33659
|
} else {
|
33615
33660
|
_has(key, WEAK) || hide(key, WEAK, {});
|
@@ -34926,18 +34971,18 @@ $def($def.S, 'Math', {
|
|
34926
34971
|
// 20.2.2.17 Math.hypot([value1[, value2[, … ]]])
|
34927
34972
|
hypot: function hypot(value1, value2){ // eslint-disable-line no-unused-vars
|
34928
34973
|
var sum = 0
|
34929
|
-
,
|
34930
|
-
,
|
34931
|
-
, args = Array(
|
34974
|
+
, i = 0
|
34975
|
+
, len = arguments.length
|
34976
|
+
, args = Array(len)
|
34932
34977
|
, larg = 0
|
34933
34978
|
, arg;
|
34934
|
-
while(
|
34935
|
-
arg = args[
|
34979
|
+
while(i < len){
|
34980
|
+
arg = args[i] = abs(arguments[i++]);
|
34936
34981
|
if(arg == Infinity)return Infinity;
|
34937
34982
|
if(arg > larg)larg = arg;
|
34938
34983
|
}
|
34939
34984
|
larg = larg || 1;
|
34940
|
-
while(
|
34985
|
+
while(len--)sum += pow(args[len] / larg, 2);
|
34941
34986
|
return larg * sqrt(sum);
|
34942
34987
|
},
|
34943
34988
|
// 20.2.2.18 Math.imul(x, y)
|
@@ -35865,7 +35910,7 @@ var $ = require('./$')
|
|
35865
35910
|
, WEAK = weak.WEAK
|
35866
35911
|
, has = $.has
|
35867
35912
|
, isObject = $.isObject
|
35868
|
-
,
|
35913
|
+
, isExtensible = Object.isExtensible || isObject
|
35869
35914
|
, tmp = {};
|
35870
35915
|
|
35871
35916
|
// 23.3 WeakMap Objects
|
@@ -35873,7 +35918,7 @@ var WeakMap = require('./$.collection')('WeakMap', {
|
|
35873
35918
|
// 23.3.3.3 WeakMap.prototype.get(key)
|
35874
35919
|
get: function get(key){
|
35875
35920
|
if(isObject(key)){
|
35876
|
-
if(
|
35921
|
+
if(!isExtensible(key))return leakStore(this).get(key);
|
35877
35922
|
if(has(key, WEAK))return key[WEAK][this[ID]];
|
35878
35923
|
}
|
35879
35924
|
},
|
@@ -35886,10 +35931,11 @@ var WeakMap = require('./$.collection')('WeakMap', {
|
|
35886
35931
|
// IE11 WeakMap frozen keys fix
|
35887
35932
|
if($.FW && new WeakMap().set((Object.freeze || Object)(tmp), 7).get(tmp) != 7){
|
35888
35933
|
$.each.call(['delete', 'has', 'get', 'set'], function(key){
|
35889
|
-
var
|
35890
|
-
|
35934
|
+
var proto = WeakMap.prototype
|
35935
|
+
, method = proto[key];
|
35936
|
+
require('./$.redef')(proto, key, function(a, b){
|
35891
35937
|
// store frozen objects on leaky map
|
35892
|
-
if(isObject(a) &&
|
35938
|
+
if(isObject(a) && !isExtensible(a)){
|
35893
35939
|
var result = leakStore(this)[key](a, b);
|
35894
35940
|
return key == 'set' ? this : result;
|
35895
35941
|
// store all the rest on native weakmap
|
@@ -36762,7 +36808,7 @@ module.exports = function (str) {
|
|
36762
36808
|
};
|
36763
36809
|
};
|
36764
36810
|
|
36765
|
-
},{"repeating":
|
36811
|
+
},{"repeating":499}],316:[function(require,module,exports){
|
36766
36812
|
/* vim: set sw=4 sts=4 : */
|
36767
36813
|
(function () {
|
36768
36814
|
|
@@ -42040,7 +42086,7 @@ function flatten(array, isDeep, guard) {
|
|
42040
42086
|
|
42041
42087
|
module.exports = flatten;
|
42042
42088
|
|
42043
|
-
},{"../internal/baseFlatten":362,"../internal/isIterateeCall":
|
42089
|
+
},{"../internal/baseFlatten":362,"../internal/isIterateeCall":411}],335:[function(require,module,exports){
|
42044
42090
|
/**
|
42045
42091
|
* Gets the last element of `array`.
|
42046
42092
|
*
|
@@ -42188,7 +42234,7 @@ function uniq(array, isSorted, iteratee, thisArg) {
|
|
42188
42234
|
|
42189
42235
|
module.exports = uniq;
|
42190
42236
|
|
42191
|
-
},{"../internal/baseCallback":356,"../internal/baseUniq":386,"../internal/isIterateeCall":
|
42237
|
+
},{"../internal/baseCallback":356,"../internal/baseUniq":386,"../internal/isIterateeCall":411,"../internal/sortedUniq":418}],338:[function(require,module,exports){
|
42192
42238
|
module.exports = require('./includes');
|
42193
42239
|
|
42194
42240
|
},{"./includes":341}],339:[function(require,module,exports){
|
@@ -42295,7 +42341,7 @@ function includes(collection, target, fromIndex, guard) {
|
|
42295
42341
|
|
42296
42342
|
module.exports = includes;
|
42297
42343
|
|
42298
|
-
},{"../internal/baseIndexOf":369,"../internal/getLength":402,"../internal/isIterateeCall":
|
42344
|
+
},{"../internal/baseIndexOf":369,"../internal/getLength":402,"../internal/isIterateeCall":411,"../internal/isLength":413,"../lang/isArray":424,"../lang/isString":433,"../object/values":444}],342:[function(require,module,exports){
|
42299
42345
|
var arrayMap = require('../internal/arrayMap'),
|
42300
42346
|
baseCallback = require('../internal/baseCallback'),
|
42301
42347
|
baseMap = require('../internal/baseMap'),
|
@@ -42317,7 +42363,7 @@ var arrayMap = require('../internal/arrayMap'),
|
|
42317
42363
|
* callback returns `true` for elements that have the properties of the given
|
42318
42364
|
* object, else `false`.
|
42319
42365
|
*
|
42320
|
-
* Many lodash methods are guarded to work as
|
42366
|
+
* Many lodash methods are guarded to work as iteratees for methods like
|
42321
42367
|
* `_.every`, `_.filter`, `_.map`, `_.mapValues`, `_.reject`, and `_.some`.
|
42322
42368
|
*
|
42323
42369
|
* The guarded methods are:
|
@@ -42365,7 +42411,7 @@ function map(collection, iteratee, thisArg) {
|
|
42365
42411
|
|
42366
42412
|
module.exports = map;
|
42367
42413
|
|
42368
|
-
},{"../internal/arrayMap":350,"../internal/baseCallback":356,"../internal/baseMap":374,"../lang/isArray":
|
42414
|
+
},{"../internal/arrayMap":350,"../internal/baseCallback":356,"../internal/baseMap":374,"../lang/isArray":424}],343:[function(require,module,exports){
|
42369
42415
|
var arrayReduceRight = require('../internal/arrayReduceRight'),
|
42370
42416
|
baseEachRight = require('../internal/baseEachRight'),
|
42371
42417
|
createReduce = require('../internal/createReduce');
|
@@ -42465,7 +42511,7 @@ function some(collection, predicate, thisArg) {
|
|
42465
42511
|
|
42466
42512
|
module.exports = some;
|
42467
42513
|
|
42468
|
-
},{"../internal/arraySome":352,"../internal/baseCallback":356,"../internal/baseSome":383,"../internal/isIterateeCall":
|
42514
|
+
},{"../internal/arraySome":352,"../internal/baseCallback":356,"../internal/baseSome":383,"../internal/isIterateeCall":411,"../lang/isArray":424}],345:[function(require,module,exports){
|
42469
42515
|
var baseCallback = require('../internal/baseCallback'),
|
42470
42516
|
baseMap = require('../internal/baseMap'),
|
42471
42517
|
baseSortBy = require('../internal/baseSortBy'),
|
@@ -42538,7 +42584,7 @@ function sortBy(collection, iteratee, thisArg) {
|
|
42538
42584
|
|
42539
42585
|
module.exports = sortBy;
|
42540
42586
|
|
42541
|
-
},{"../internal/baseCallback":356,"../internal/baseMap":374,"../internal/baseSortBy":384,"../internal/compareAscending":392,"../internal/isIterateeCall":
|
42587
|
+
},{"../internal/baseCallback":356,"../internal/baseMap":374,"../internal/baseSortBy":384,"../internal/compareAscending":392,"../internal/isIterateeCall":411}],346:[function(require,module,exports){
|
42542
42588
|
/** Used as the `TypeError` message for "Functions" methods. */
|
42543
42589
|
var FUNC_ERROR_TEXT = 'Expected a function';
|
42544
42590
|
|
@@ -42601,13 +42647,13 @@ module.exports = restParam;
|
|
42601
42647
|
},{}],347:[function(require,module,exports){
|
42602
42648
|
(function (global){
|
42603
42649
|
var cachePush = require('./cachePush'),
|
42604
|
-
|
42650
|
+
getNative = require('./getNative');
|
42605
42651
|
|
42606
42652
|
/** Native method references. */
|
42607
|
-
var Set =
|
42653
|
+
var Set = getNative(global, 'Set');
|
42608
42654
|
|
42609
42655
|
/* Native method references for those with the same name as other `lodash` methods. */
|
42610
|
-
var nativeCreate =
|
42656
|
+
var nativeCreate = getNative(Object, 'create');
|
42611
42657
|
|
42612
42658
|
/**
|
42613
42659
|
*
|
@@ -42631,7 +42677,7 @@ SetCache.prototype.push = cachePush;
|
|
42631
42677
|
module.exports = SetCache;
|
42632
42678
|
|
42633
42679
|
}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
42634
|
-
},{"
|
42680
|
+
},{"./cachePush":391,"./getNative":404}],348:[function(require,module,exports){
|
42635
42681
|
/**
|
42636
42682
|
* Copies the values of `source` to `array`.
|
42637
42683
|
*
|
@@ -42767,14 +42813,7 @@ function assignDefaults(objectValue, sourceValue) {
|
|
42767
42813
|
module.exports = assignDefaults;
|
42768
42814
|
|
42769
42815
|
},{}],354:[function(require,module,exports){
|
42770
|
-
var
|
42771
|
-
keys = require('../object/keys');
|
42772
|
-
|
42773
|
-
/** Used for native method references. */
|
42774
|
-
var arrayProto = Array.prototype;
|
42775
|
-
|
42776
|
-
/** Native method references. */
|
42777
|
-
var push = arrayProto.push;
|
42816
|
+
var keys = require('../object/keys');
|
42778
42817
|
|
42779
42818
|
/**
|
42780
42819
|
* A specialized version of `_.assign` for customizing assigned values without
|
@@ -42788,10 +42827,8 @@ var push = arrayProto.push;
|
|
42788
42827
|
* @returns {Object} Returns `object`.
|
42789
42828
|
*/
|
42790
42829
|
function assignWith(object, source, customizer) {
|
42791
|
-
var props = keys(source);
|
42792
|
-
push.apply(props, getSymbols(source));
|
42793
|
-
|
42794
42830
|
var index = -1,
|
42831
|
+
props = keys(source),
|
42795
42832
|
length = props.length;
|
42796
42833
|
|
42797
42834
|
while (++index < length) {
|
@@ -42809,38 +42846,10 @@ function assignWith(object, source, customizer) {
|
|
42809
42846
|
|
42810
42847
|
module.exports = assignWith;
|
42811
42848
|
|
42812
|
-
},{"../object/keys":
|
42849
|
+
},{"../object/keys":440}],355:[function(require,module,exports){
|
42813
42850
|
var baseCopy = require('./baseCopy'),
|
42814
|
-
getSymbols = require('./getSymbols'),
|
42815
|
-
isNative = require('../lang/isNative'),
|
42816
42851
|
keys = require('../object/keys');
|
42817
42852
|
|
42818
|
-
/** Native method references. */
|
42819
|
-
var preventExtensions = isNative(preventExtensions = Object.preventExtensions) && preventExtensions;
|
42820
|
-
|
42821
|
-
/** Used as `baseAssign`. */
|
42822
|
-
var nativeAssign = (function() {
|
42823
|
-
// Avoid `Object.assign` in Firefox 34-37 which have an early implementation
|
42824
|
-
// with a now defunct try/catch behavior. See https://bugzilla.mozilla.org/show_bug.cgi?id=1103344
|
42825
|
-
// for more details.
|
42826
|
-
//
|
42827
|
-
// Use `Object.preventExtensions` on a plain object instead of simply using
|
42828
|
-
// `Object('x')` because Chrome and IE fail to throw an error when attempting
|
42829
|
-
// to assign values to readonly indexes of strings.
|
42830
|
-
var func = preventExtensions && isNative(func = Object.assign) && func;
|
42831
|
-
try {
|
42832
|
-
if (func) {
|
42833
|
-
var object = preventExtensions({ '1': 0 });
|
42834
|
-
object[0] = 1;
|
42835
|
-
}
|
42836
|
-
} catch(e) {
|
42837
|
-
// Only attempt in strict mode.
|
42838
|
-
try { func(object, 'xo'); } catch(e) {}
|
42839
|
-
return !object[1] && func;
|
42840
|
-
}
|
42841
|
-
return false;
|
42842
|
-
}());
|
42843
|
-
|
42844
42853
|
/**
|
42845
42854
|
* The base implementation of `_.assign` without support for argument juggling,
|
42846
42855
|
* multiple sources, and `customizer` functions.
|
@@ -42850,15 +42859,15 @@ var nativeAssign = (function() {
|
|
42850
42859
|
* @param {Object} source The source object.
|
42851
42860
|
* @returns {Object} Returns `object`.
|
42852
42861
|
*/
|
42853
|
-
|
42862
|
+
function baseAssign(object, source) {
|
42854
42863
|
return source == null
|
42855
42864
|
? object
|
42856
|
-
: baseCopy(source,
|
42857
|
-
}
|
42865
|
+
: baseCopy(source, keys(source), object);
|
42866
|
+
}
|
42858
42867
|
|
42859
42868
|
module.exports = baseAssign;
|
42860
42869
|
|
42861
|
-
},{"../
|
42870
|
+
},{"../object/keys":440,"./baseCopy":359}],356:[function(require,module,exports){
|
42862
42871
|
var baseMatches = require('./baseMatches'),
|
42863
42872
|
baseMatchesProperty = require('./baseMatchesProperty'),
|
42864
42873
|
bindCallback = require('./bindCallback'),
|
@@ -42895,7 +42904,7 @@ function baseCallback(func, thisArg, argCount) {
|
|
42895
42904
|
|
42896
42905
|
module.exports = baseCallback;
|
42897
42906
|
|
42898
|
-
},{"../utility/identity":
|
42907
|
+
},{"../utility/identity":448,"../utility/property":449,"./baseMatches":375,"./baseMatchesProperty":376,"./bindCallback":388}],357:[function(require,module,exports){
|
42899
42908
|
var arrayCopy = require('./arrayCopy'),
|
42900
42909
|
arrayEach = require('./arrayEach'),
|
42901
42910
|
baseAssign = require('./baseAssign'),
|
@@ -43025,25 +43034,34 @@ function baseClone(value, isDeep, customizer, key, object, stackA, stackB) {
|
|
43025
43034
|
|
43026
43035
|
module.exports = baseClone;
|
43027
43036
|
|
43028
|
-
},{"../lang/isArray":
|
43037
|
+
},{"../lang/isArray":424,"../lang/isObject":430,"./arrayCopy":348,"./arrayEach":349,"./baseAssign":355,"./baseForOwn":365,"./initCloneArray":406,"./initCloneByTag":407,"./initCloneObject":408}],358:[function(require,module,exports){
|
43029
43038
|
/**
|
43030
43039
|
* The base implementation of `compareAscending` which compares values and
|
43031
43040
|
* sorts them in ascending order without guaranteeing a stable sort.
|
43032
43041
|
*
|
43033
43042
|
* @private
|
43034
|
-
* @param {*} value The value to compare
|
43035
|
-
* @param {*} other The value to compare
|
43043
|
+
* @param {*} value The value to compare.
|
43044
|
+
* @param {*} other The other value to compare.
|
43036
43045
|
* @returns {number} Returns the sort order indicator for `value`.
|
43037
43046
|
*/
|
43038
43047
|
function baseCompareAscending(value, other) {
|
43039
43048
|
if (value !== other) {
|
43040
|
-
var
|
43049
|
+
var valIsNull = value === null,
|
43050
|
+
valIsUndef = value === undefined,
|
43051
|
+
valIsReflexive = value === value;
|
43052
|
+
|
43053
|
+
var othIsNull = other === null,
|
43054
|
+
othIsUndef = other === undefined,
|
43041
43055
|
othIsReflexive = other === other;
|
43042
43056
|
|
43043
|
-
if (value > other || !valIsReflexive ||
|
43057
|
+
if ((value > other && !othIsNull) || !valIsReflexive ||
|
43058
|
+
(valIsNull && !othIsUndef && othIsReflexive) ||
|
43059
|
+
(valIsUndef && othIsReflexive)) {
|
43044
43060
|
return 1;
|
43045
43061
|
}
|
43046
|
-
if (value < other || !othIsReflexive ||
|
43062
|
+
if ((value < other && !valIsNull) || !othIsReflexive ||
|
43063
|
+
(othIsNull && !valIsUndef && valIsReflexive) ||
|
43064
|
+
(othIsUndef && valIsReflexive)) {
|
43047
43065
|
return -1;
|
43048
43066
|
}
|
43049
43067
|
}
|
@@ -43156,7 +43174,7 @@ function baseFlatten(array, isDeep, isStrict) {
|
|
43156
43174
|
|
43157
43175
|
module.exports = baseFlatten;
|
43158
43176
|
|
43159
|
-
},{"../lang/isArguments":
|
43177
|
+
},{"../lang/isArguments":423,"../lang/isArray":424,"./isArrayLike":409,"./isObjectLike":414}],363:[function(require,module,exports){
|
43160
43178
|
var createBaseFor = require('./createBaseFor');
|
43161
43179
|
|
43162
43180
|
/**
|
@@ -43194,7 +43212,7 @@ function baseForIn(object, iteratee) {
|
|
43194
43212
|
|
43195
43213
|
module.exports = baseForIn;
|
43196
43214
|
|
43197
|
-
},{"../object/keysIn":
|
43215
|
+
},{"../object/keysIn":441,"./baseFor":363}],365:[function(require,module,exports){
|
43198
43216
|
var baseFor = require('./baseFor'),
|
43199
43217
|
keys = require('../object/keys');
|
43200
43218
|
|
@@ -43213,7 +43231,7 @@ function baseForOwn(object, iteratee) {
|
|
43213
43231
|
|
43214
43232
|
module.exports = baseForOwn;
|
43215
43233
|
|
43216
|
-
},{"../object/keys":
|
43234
|
+
},{"../object/keys":440,"./baseFor":363}],366:[function(require,module,exports){
|
43217
43235
|
var baseForRight = require('./baseForRight'),
|
43218
43236
|
keys = require('../object/keys');
|
43219
43237
|
|
@@ -43232,7 +43250,7 @@ function baseForOwnRight(object, iteratee) {
|
|
43232
43250
|
|
43233
43251
|
module.exports = baseForOwnRight;
|
43234
43252
|
|
43235
|
-
},{"../object/keys":
|
43253
|
+
},{"../object/keys":440,"./baseForRight":367}],367:[function(require,module,exports){
|
43236
43254
|
var createBaseFor = require('./createBaseFor');
|
43237
43255
|
|
43238
43256
|
/**
|
@@ -43269,18 +43287,18 @@ function baseGet(object, path, pathKey) {
|
|
43269
43287
|
if (pathKey !== undefined && pathKey in toObject(object)) {
|
43270
43288
|
path = [pathKey];
|
43271
43289
|
}
|
43272
|
-
var index =
|
43290
|
+
var index = 0,
|
43273
43291
|
length = path.length;
|
43274
43292
|
|
43275
|
-
while (object != null &&
|
43276
|
-
object = object[path[index]];
|
43293
|
+
while (object != null && index < length) {
|
43294
|
+
object = object[path[index++]];
|
43277
43295
|
}
|
43278
43296
|
return (index && index == length) ? object : undefined;
|
43279
43297
|
}
|
43280
43298
|
|
43281
43299
|
module.exports = baseGet;
|
43282
43300
|
|
43283
|
-
},{"./toObject":
|
43301
|
+
},{"./toObject":419}],369:[function(require,module,exports){
|
43284
43302
|
var indexOfNaN = require('./indexOfNaN');
|
43285
43303
|
|
43286
43304
|
/**
|
@@ -43309,8 +43327,9 @@ function baseIndexOf(array, value, fromIndex) {
|
|
43309
43327
|
|
43310
43328
|
module.exports = baseIndexOf;
|
43311
43329
|
|
43312
|
-
},{"./indexOfNaN":
|
43313
|
-
var baseIsEqualDeep = require('./baseIsEqualDeep')
|
43330
|
+
},{"./indexOfNaN":405}],370:[function(require,module,exports){
|
43331
|
+
var baseIsEqualDeep = require('./baseIsEqualDeep'),
|
43332
|
+
isObject = require('../lang/isObject');
|
43314
43333
|
|
43315
43334
|
/**
|
43316
43335
|
* The base implementation of `_.isEqual` without support for `this` binding
|
@@ -43326,17 +43345,10 @@ var baseIsEqualDeep = require('./baseIsEqualDeep');
|
|
43326
43345
|
* @returns {boolean} Returns `true` if the values are equivalent, else `false`.
|
43327
43346
|
*/
|
43328
43347
|
function baseIsEqual(value, other, customizer, isLoose, stackA, stackB) {
|
43329
|
-
// Exit early for identical values.
|
43330
43348
|
if (value === other) {
|
43331
43349
|
return true;
|
43332
43350
|
}
|
43333
|
-
|
43334
|
-
othType = typeof other;
|
43335
|
-
|
43336
|
-
// Exit early for unlike primitive values.
|
43337
|
-
if ((valType != 'function' && valType != 'object' && othType != 'function' && othType != 'object') ||
|
43338
|
-
value == null || other == null) {
|
43339
|
-
// Return `false` unless both values are `NaN`.
|
43351
|
+
if (value == null || other == null || (!isObject(value) && !isObject(other))) {
|
43340
43352
|
return value !== value && other !== other;
|
43341
43353
|
}
|
43342
43354
|
return baseIsEqualDeep(value, other, baseIsEqual, customizer, isLoose, stackA, stackB);
|
@@ -43344,7 +43356,7 @@ function baseIsEqual(value, other, customizer, isLoose, stackA, stackB) {
|
|
43344
43356
|
|
43345
43357
|
module.exports = baseIsEqual;
|
43346
43358
|
|
43347
|
-
},{"./baseIsEqualDeep":371}],371:[function(require,module,exports){
|
43359
|
+
},{"../lang/isObject":430,"./baseIsEqualDeep":371}],371:[function(require,module,exports){
|
43348
43360
|
var equalArrays = require('./equalArrays'),
|
43349
43361
|
equalByTag = require('./equalByTag'),
|
43350
43362
|
equalObjects = require('./equalObjects'),
|
@@ -43413,11 +43425,11 @@ function baseIsEqualDeep(object, other, equalFunc, customizer, isLoose, stackA,
|
|
43413
43425
|
return equalByTag(object, other, objTag);
|
43414
43426
|
}
|
43415
43427
|
if (!isLoose) {
|
43416
|
-
var
|
43417
|
-
|
43428
|
+
var objIsWrapped = objIsObj && hasOwnProperty.call(object, '__wrapped__'),
|
43429
|
+
othIsWrapped = othIsObj && hasOwnProperty.call(other, '__wrapped__');
|
43418
43430
|
|
43419
|
-
if (
|
43420
|
-
return equalFunc(
|
43431
|
+
if (objIsWrapped || othIsWrapped) {
|
43432
|
+
return equalFunc(objIsWrapped ? object.value() : object, othIsWrapped ? other.value() : other, customizer, isLoose, stackA, stackB);
|
43421
43433
|
}
|
43422
43434
|
}
|
43423
43435
|
if (!isSameTag) {
|
@@ -43448,7 +43460,7 @@ function baseIsEqualDeep(object, other, equalFunc, customizer, isLoose, stackA,
|
|
43448
43460
|
|
43449
43461
|
module.exports = baseIsEqualDeep;
|
43450
43462
|
|
43451
|
-
},{"../lang/isArray":
|
43463
|
+
},{"../lang/isArray":424,"../lang/isTypedArray":434,"./equalArrays":399,"./equalByTag":400,"./equalObjects":401}],372:[function(require,module,exports){
|
43452
43464
|
/**
|
43453
43465
|
* The base implementation of `_.isFunction` without support for environments
|
43454
43466
|
* with incorrect `typeof` results.
|
@@ -43466,7 +43478,8 @@ function baseIsFunction(value) {
|
|
43466
43478
|
module.exports = baseIsFunction;
|
43467
43479
|
|
43468
43480
|
},{}],373:[function(require,module,exports){
|
43469
|
-
var baseIsEqual = require('./baseIsEqual')
|
43481
|
+
var baseIsEqual = require('./baseIsEqual'),
|
43482
|
+
toObject = require('./toObject');
|
43470
43483
|
|
43471
43484
|
/**
|
43472
43485
|
* The base implementation of `_.isMatch` without support for callback
|
@@ -43474,49 +43487,51 @@ var baseIsEqual = require('./baseIsEqual');
|
|
43474
43487
|
*
|
43475
43488
|
* @private
|
43476
43489
|
* @param {Object} object The object to inspect.
|
43477
|
-
* @param {Array}
|
43478
|
-
* @param {Array} values The source values to match.
|
43479
|
-
* @param {Array} strictCompareFlags Strict comparison flags for source values.
|
43490
|
+
* @param {Array} matchData The propery names, values, and compare flags to match.
|
43480
43491
|
* @param {Function} [customizer] The function to customize comparing objects.
|
43481
43492
|
* @returns {boolean} Returns `true` if `object` is a match, else `false`.
|
43482
43493
|
*/
|
43483
|
-
function baseIsMatch(object,
|
43484
|
-
var index =
|
43485
|
-
length =
|
43494
|
+
function baseIsMatch(object, matchData, customizer) {
|
43495
|
+
var index = matchData.length,
|
43496
|
+
length = index,
|
43486
43497
|
noCustomizer = !customizer;
|
43487
43498
|
|
43488
|
-
|
43489
|
-
|
43490
|
-
|
43491
|
-
|
43499
|
+
if (object == null) {
|
43500
|
+
return !length;
|
43501
|
+
}
|
43502
|
+
object = toObject(object);
|
43503
|
+
while (index--) {
|
43504
|
+
var data = matchData[index];
|
43505
|
+
if ((noCustomizer && data[2])
|
43506
|
+
? data[1] !== object[data[0]]
|
43507
|
+
: !(data[0] in object)
|
43492
43508
|
) {
|
43493
43509
|
return false;
|
43494
43510
|
}
|
43495
43511
|
}
|
43496
|
-
index = -1;
|
43497
43512
|
while (++index < length) {
|
43498
|
-
|
43513
|
+
data = matchData[index];
|
43514
|
+
var key = data[0],
|
43499
43515
|
objValue = object[key],
|
43500
|
-
srcValue =
|
43516
|
+
srcValue = data[1];
|
43501
43517
|
|
43502
|
-
if (noCustomizer &&
|
43503
|
-
|
43518
|
+
if (noCustomizer && data[2]) {
|
43519
|
+
if (objValue === undefined && !(key in object)) {
|
43520
|
+
return false;
|
43521
|
+
}
|
43504
43522
|
} else {
|
43505
|
-
result = customizer ? customizer(objValue, srcValue, key) : undefined;
|
43506
|
-
if (result === undefined) {
|
43507
|
-
|
43523
|
+
var result = customizer ? customizer(objValue, srcValue, key) : undefined;
|
43524
|
+
if (!(result === undefined ? baseIsEqual(srcValue, objValue, customizer, true) : result)) {
|
43525
|
+
return false;
|
43508
43526
|
}
|
43509
43527
|
}
|
43510
|
-
if (!result) {
|
43511
|
-
return false;
|
43512
|
-
}
|
43513
43528
|
}
|
43514
43529
|
return true;
|
43515
43530
|
}
|
43516
43531
|
|
43517
43532
|
module.exports = baseIsMatch;
|
43518
43533
|
|
43519
|
-
},{"./baseIsEqual":370}],374:[function(require,module,exports){
|
43534
|
+
},{"./baseIsEqual":370,"./toObject":419}],374:[function(require,module,exports){
|
43520
43535
|
var baseEach = require('./baseEach'),
|
43521
43536
|
isArrayLike = require('./isArrayLike');
|
43522
43537
|
|
@@ -43541,11 +43556,9 @@ function baseMap(collection, iteratee) {
|
|
43541
43556
|
|
43542
43557
|
module.exports = baseMap;
|
43543
43558
|
|
43544
|
-
},{"./baseEach":360,"./isArrayLike":
|
43559
|
+
},{"./baseEach":360,"./isArrayLike":409}],375:[function(require,module,exports){
|
43545
43560
|
var baseIsMatch = require('./baseIsMatch'),
|
43546
|
-
|
43547
|
-
isStrictComparable = require('./isStrictComparable'),
|
43548
|
-
keys = require('../object/keys'),
|
43561
|
+
getMatchData = require('./getMatchData'),
|
43549
43562
|
toObject = require('./toObject');
|
43550
43563
|
|
43551
43564
|
/**
|
@@ -43556,41 +43569,26 @@ var baseIsMatch = require('./baseIsMatch'),
|
|
43556
43569
|
* @returns {Function} Returns the new function.
|
43557
43570
|
*/
|
43558
43571
|
function baseMatches(source) {
|
43559
|
-
var
|
43560
|
-
|
43561
|
-
|
43562
|
-
|
43563
|
-
return constant(true);
|
43564
|
-
}
|
43565
|
-
if (length == 1) {
|
43566
|
-
var key = props[0],
|
43567
|
-
value = source[key];
|
43572
|
+
var matchData = getMatchData(source);
|
43573
|
+
if (matchData.length == 1 && matchData[0][2]) {
|
43574
|
+
var key = matchData[0][0],
|
43575
|
+
value = matchData[0][1];
|
43568
43576
|
|
43569
|
-
|
43570
|
-
|
43571
|
-
|
43572
|
-
|
43573
|
-
|
43574
|
-
|
43575
|
-
};
|
43576
|
-
}
|
43577
|
-
}
|
43578
|
-
var values = Array(length),
|
43579
|
-
strictCompareFlags = Array(length);
|
43580
|
-
|
43581
|
-
while (length--) {
|
43582
|
-
value = source[props[length]];
|
43583
|
-
values[length] = value;
|
43584
|
-
strictCompareFlags[length] = isStrictComparable(value);
|
43577
|
+
return function(object) {
|
43578
|
+
if (object == null) {
|
43579
|
+
return false;
|
43580
|
+
}
|
43581
|
+
return object[key] === value && (value !== undefined || (key in toObject(object)));
|
43582
|
+
};
|
43585
43583
|
}
|
43586
43584
|
return function(object) {
|
43587
|
-
return
|
43585
|
+
return baseIsMatch(object, matchData);
|
43588
43586
|
};
|
43589
43587
|
}
|
43590
43588
|
|
43591
43589
|
module.exports = baseMatches;
|
43592
43590
|
|
43593
|
-
},{"
|
43591
|
+
},{"./baseIsMatch":373,"./getMatchData":403,"./toObject":419}],376:[function(require,module,exports){
|
43594
43592
|
var baseGet = require('./baseGet'),
|
43595
43593
|
baseIsEqual = require('./baseIsEqual'),
|
43596
43594
|
baseSlice = require('./baseSlice'),
|
@@ -43607,12 +43605,12 @@ var baseGet = require('./baseGet'),
|
|
43607
43605
|
*
|
43608
43606
|
* @private
|
43609
43607
|
* @param {string} path The path of the property to get.
|
43610
|
-
* @param {*}
|
43608
|
+
* @param {*} srcValue The value to compare.
|
43611
43609
|
* @returns {Function} Returns the new function.
|
43612
43610
|
*/
|
43613
|
-
function baseMatchesProperty(path,
|
43611
|
+
function baseMatchesProperty(path, srcValue) {
|
43614
43612
|
var isArr = isArray(path),
|
43615
|
-
isCommon = isKey(path) && isStrictComparable(
|
43613
|
+
isCommon = isKey(path) && isStrictComparable(srcValue),
|
43616
43614
|
pathKey = (path + '');
|
43617
43615
|
|
43618
43616
|
path = toPath(path);
|
@@ -43630,18 +43628,17 @@ function baseMatchesProperty(path, value) {
|
|
43630
43628
|
key = last(path);
|
43631
43629
|
object = toObject(object);
|
43632
43630
|
}
|
43633
|
-
return object[key] ===
|
43634
|
-
? (
|
43635
|
-
: baseIsEqual(
|
43631
|
+
return object[key] === srcValue
|
43632
|
+
? (srcValue !== undefined || (key in object))
|
43633
|
+
: baseIsEqual(srcValue, object[key], undefined, true);
|
43636
43634
|
};
|
43637
43635
|
}
|
43638
43636
|
|
43639
43637
|
module.exports = baseMatchesProperty;
|
43640
43638
|
|
43641
|
-
},{"../array/last":335,"../lang/isArray":
|
43639
|
+
},{"../array/last":335,"../lang/isArray":424,"./baseGet":368,"./baseIsEqual":370,"./baseSlice":382,"./isKey":412,"./isStrictComparable":415,"./toObject":419,"./toPath":420}],377:[function(require,module,exports){
|
43642
43640
|
var arrayEach = require('./arrayEach'),
|
43643
43641
|
baseMergeDeep = require('./baseMergeDeep'),
|
43644
|
-
getSymbols = require('./getSymbols'),
|
43645
43642
|
isArray = require('../lang/isArray'),
|
43646
43643
|
isArrayLike = require('./isArrayLike'),
|
43647
43644
|
isObject = require('../lang/isObject'),
|
@@ -43649,12 +43646,6 @@ var arrayEach = require('./arrayEach'),
|
|
43649
43646
|
isTypedArray = require('../lang/isTypedArray'),
|
43650
43647
|
keys = require('../object/keys');
|
43651
43648
|
|
43652
|
-
/** Used for native method references. */
|
43653
|
-
var arrayProto = Array.prototype;
|
43654
|
-
|
43655
|
-
/** Native method references. */
|
43656
|
-
var push = arrayProto.push;
|
43657
|
-
|
43658
43649
|
/**
|
43659
43650
|
* The base implementation of `_.merge` without support for argument juggling,
|
43660
43651
|
* multiple sources, and `this` binding `customizer` functions.
|
@@ -43671,11 +43662,9 @@ function baseMerge(object, source, customizer, stackA, stackB) {
|
|
43671
43662
|
if (!isObject(object)) {
|
43672
43663
|
return object;
|
43673
43664
|
}
|
43674
|
-
var isSrcArr = isArrayLike(source) && (isArray(source) || isTypedArray(source))
|
43675
|
-
|
43676
|
-
|
43677
|
-
push.apply(props, getSymbols(source));
|
43678
|
-
}
|
43665
|
+
var isSrcArr = isArrayLike(source) && (isArray(source) || isTypedArray(source)),
|
43666
|
+
props = isSrcArr ? null : keys(source);
|
43667
|
+
|
43679
43668
|
arrayEach(props || source, function(srcValue, key) {
|
43680
43669
|
if (props) {
|
43681
43670
|
key = srcValue;
|
@@ -43694,7 +43683,7 @@ function baseMerge(object, source, customizer, stackA, stackB) {
|
|
43694
43683
|
if (isCommon) {
|
43695
43684
|
result = srcValue;
|
43696
43685
|
}
|
43697
|
-
if ((
|
43686
|
+
if ((result !== undefined || (isSrcArr && !(key in object))) &&
|
43698
43687
|
(isCommon || (result === result ? (result !== value) : (value === value)))) {
|
43699
43688
|
object[key] = result;
|
43700
43689
|
}
|
@@ -43705,7 +43694,7 @@ function baseMerge(object, source, customizer, stackA, stackB) {
|
|
43705
43694
|
|
43706
43695
|
module.exports = baseMerge;
|
43707
43696
|
|
43708
|
-
},{"../lang/isArray":
|
43697
|
+
},{"../lang/isArray":424,"../lang/isObject":430,"../lang/isTypedArray":434,"../object/keys":440,"./arrayEach":349,"./baseMergeDeep":378,"./isArrayLike":409,"./isObjectLike":414}],378:[function(require,module,exports){
|
43709
43698
|
var arrayCopy = require('./arrayCopy'),
|
43710
43699
|
isArguments = require('../lang/isArguments'),
|
43711
43700
|
isArray = require('../lang/isArray'),
|
@@ -43774,7 +43763,7 @@ function baseMergeDeep(object, source, key, mergeFunc, customizer, stackA, stack
|
|
43774
43763
|
|
43775
43764
|
module.exports = baseMergeDeep;
|
43776
43765
|
|
43777
|
-
},{"../lang/isArguments":
|
43766
|
+
},{"../lang/isArguments":423,"../lang/isArray":424,"../lang/isPlainObject":431,"../lang/isTypedArray":434,"../lang/toPlainObject":435,"./arrayCopy":348,"./isArrayLike":409}],379:[function(require,module,exports){
|
43778
43767
|
/**
|
43779
43768
|
* The base implementation of `_.property` without support for deep paths.
|
43780
43769
|
*
|
@@ -43811,7 +43800,7 @@ function basePropertyDeep(path) {
|
|
43811
43800
|
|
43812
43801
|
module.exports = basePropertyDeep;
|
43813
43802
|
|
43814
|
-
},{"./baseGet":368,"./toPath":
|
43803
|
+
},{"./baseGet":368,"./toPath":420}],381:[function(require,module,exports){
|
43815
43804
|
/**
|
43816
43805
|
* The base implementation of `_.reduce` and `_.reduceRight` without support
|
43817
43806
|
* for callback shorthands and `this` binding, which iterates over `collection`
|
@@ -43921,7 +43910,7 @@ module.exports = baseSortBy;
|
|
43921
43910
|
|
43922
43911
|
},{}],385:[function(require,module,exports){
|
43923
43912
|
/**
|
43924
|
-
* Converts `value` to a string if it
|
43913
|
+
* Converts `value` to a string if it's not one. An empty string is returned
|
43925
43914
|
* for `null` or `undefined` values.
|
43926
43915
|
*
|
43927
43916
|
* @private
|
@@ -44061,16 +44050,16 @@ function bindCallback(func, thisArg, argCount) {
|
|
44061
44050
|
|
44062
44051
|
module.exports = bindCallback;
|
44063
44052
|
|
44064
|
-
},{"../utility/identity":
|
44053
|
+
},{"../utility/identity":448}],389:[function(require,module,exports){
|
44065
44054
|
(function (global){
|
44066
44055
|
var constant = require('../utility/constant'),
|
44067
|
-
|
44056
|
+
getNative = require('./getNative');
|
44068
44057
|
|
44069
44058
|
/** Native method references. */
|
44070
|
-
var ArrayBuffer =
|
44071
|
-
bufferSlice =
|
44059
|
+
var ArrayBuffer = getNative(global, 'ArrayBuffer'),
|
44060
|
+
bufferSlice = getNative(ArrayBuffer && new ArrayBuffer(0), 'slice'),
|
44072
44061
|
floor = Math.floor,
|
44073
|
-
Uint8Array =
|
44062
|
+
Uint8Array = getNative(global, 'Uint8Array');
|
44074
44063
|
|
44075
44064
|
/** Used to clone array buffers. */
|
44076
44065
|
var Float64Array = (function() {
|
@@ -44078,10 +44067,10 @@ var Float64Array = (function() {
|
|
44078
44067
|
// where the array buffer's `byteLength` is not a multiple of the typed
|
44079
44068
|
// array's `BYTES_PER_ELEMENT`.
|
44080
44069
|
try {
|
44081
|
-
var func =
|
44070
|
+
var func = getNative(global, 'Float64Array'),
|
44082
44071
|
result = new func(new ArrayBuffer(10), 0, 1) && func;
|
44083
44072
|
} catch(e) {}
|
44084
|
-
return result;
|
44073
|
+
return result || null;
|
44085
44074
|
}());
|
44086
44075
|
|
44087
44076
|
/** Used as the size, in bytes, of each `Float64Array` element. */
|
@@ -44120,7 +44109,7 @@ if (!bufferSlice) {
|
|
44120
44109
|
module.exports = bufferClone;
|
44121
44110
|
|
44122
44111
|
}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
44123
|
-
},{"../
|
44112
|
+
},{"../utility/constant":447,"./getNative":404}],390:[function(require,module,exports){
|
44124
44113
|
var isObject = require('../lang/isObject');
|
44125
44114
|
|
44126
44115
|
/**
|
@@ -44141,7 +44130,7 @@ function cacheIndexOf(cache, value) {
|
|
44141
44130
|
|
44142
44131
|
module.exports = cacheIndexOf;
|
44143
44132
|
|
44144
|
-
},{"../lang/isObject":
|
44133
|
+
},{"../lang/isObject":430}],391:[function(require,module,exports){
|
44145
44134
|
var isObject = require('../lang/isObject');
|
44146
44135
|
|
44147
44136
|
/**
|
@@ -44163,7 +44152,7 @@ function cachePush(value) {
|
|
44163
44152
|
|
44164
44153
|
module.exports = cachePush;
|
44165
44154
|
|
44166
|
-
},{"../lang/isObject":
|
44155
|
+
},{"../lang/isObject":430}],392:[function(require,module,exports){
|
44167
44156
|
var baseCompareAscending = require('./baseCompareAscending');
|
44168
44157
|
|
44169
44158
|
/**
|
@@ -44200,19 +44189,19 @@ function createAssigner(assigner) {
|
|
44200
44189
|
return restParam(function(object, sources) {
|
44201
44190
|
var index = -1,
|
44202
44191
|
length = object == null ? 0 : sources.length,
|
44203
|
-
customizer = length > 2
|
44204
|
-
guard = length > 2
|
44205
|
-
thisArg = length > 1
|
44192
|
+
customizer = length > 2 ? sources[length - 2] : undefined,
|
44193
|
+
guard = length > 2 ? sources[2] : undefined,
|
44194
|
+
thisArg = length > 1 ? sources[length - 1] : undefined;
|
44206
44195
|
|
44207
44196
|
if (typeof customizer == 'function') {
|
44208
44197
|
customizer = bindCallback(customizer, thisArg, 5);
|
44209
44198
|
length -= 2;
|
44210
44199
|
} else {
|
44211
|
-
customizer = typeof thisArg == 'function' ? thisArg :
|
44200
|
+
customizer = typeof thisArg == 'function' ? thisArg : undefined;
|
44212
44201
|
length -= (customizer ? 1 : 0);
|
44213
44202
|
}
|
44214
44203
|
if (guard && isIterateeCall(sources[0], sources[1], guard)) {
|
44215
|
-
customizer = length < 3 ?
|
44204
|
+
customizer = length < 3 ? undefined : customizer;
|
44216
44205
|
length = 1;
|
44217
44206
|
}
|
44218
44207
|
while (++index < length) {
|
@@ -44227,7 +44216,7 @@ function createAssigner(assigner) {
|
|
44227
44216
|
|
44228
44217
|
module.exports = createAssigner;
|
44229
44218
|
|
44230
|
-
},{"../function/restParam":346,"./bindCallback":388,"./isIterateeCall":
|
44219
|
+
},{"../function/restParam":346,"./bindCallback":388,"./isIterateeCall":411}],394:[function(require,module,exports){
|
44231
44220
|
var getLength = require('./getLength'),
|
44232
44221
|
isLength = require('./isLength'),
|
44233
44222
|
toObject = require('./toObject');
|
@@ -44260,7 +44249,7 @@ function createBaseEach(eachFunc, fromRight) {
|
|
44260
44249
|
|
44261
44250
|
module.exports = createBaseEach;
|
44262
44251
|
|
44263
|
-
},{"./getLength":402,"./isLength":
|
44252
|
+
},{"./getLength":402,"./isLength":413,"./toObject":419}],395:[function(require,module,exports){
|
44264
44253
|
var toObject = require('./toObject');
|
44265
44254
|
|
44266
44255
|
/**
|
@@ -44289,17 +44278,17 @@ function createBaseFor(fromRight) {
|
|
44289
44278
|
|
44290
44279
|
module.exports = createBaseFor;
|
44291
44280
|
|
44292
|
-
},{"./toObject":
|
44281
|
+
},{"./toObject":419}],396:[function(require,module,exports){
|
44293
44282
|
(function (global){
|
44294
44283
|
var SetCache = require('./SetCache'),
|
44295
44284
|
constant = require('../utility/constant'),
|
44296
|
-
|
44285
|
+
getNative = require('./getNative');
|
44297
44286
|
|
44298
44287
|
/** Native method references. */
|
44299
|
-
var Set =
|
44288
|
+
var Set = getNative(global, 'Set');
|
44300
44289
|
|
44301
44290
|
/* Native method references for those with the same name as other `lodash` methods. */
|
44302
|
-
var nativeCreate =
|
44291
|
+
var nativeCreate = getNative(Object, 'create');
|
44303
44292
|
|
44304
44293
|
/**
|
44305
44294
|
* Creates a `Set` cache object to optimize linear searches of large arrays.
|
@@ -44315,7 +44304,7 @@ var createCache = !(nativeCreate && Set) ? constant(null) : function(values) {
|
|
44315
44304
|
module.exports = createCache;
|
44316
44305
|
|
44317
44306
|
}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
44318
|
-
},{"../
|
44307
|
+
},{"../utility/constant":447,"./SetCache":347,"./getNative":404}],397:[function(require,module,exports){
|
44319
44308
|
var bindCallback = require('./bindCallback'),
|
44320
44309
|
isArray = require('../lang/isArray');
|
44321
44310
|
|
@@ -44337,7 +44326,7 @@ function createForEach(arrayFunc, eachFunc) {
|
|
44337
44326
|
|
44338
44327
|
module.exports = createForEach;
|
44339
44328
|
|
44340
|
-
},{"../lang/isArray":
|
44329
|
+
},{"../lang/isArray":424,"./bindCallback":388}],398:[function(require,module,exports){
|
44341
44330
|
var baseCallback = require('./baseCallback'),
|
44342
44331
|
baseReduce = require('./baseReduce'),
|
44343
44332
|
isArray = require('../lang/isArray');
|
@@ -44361,7 +44350,9 @@ function createReduce(arrayFunc, eachFunc) {
|
|
44361
44350
|
|
44362
44351
|
module.exports = createReduce;
|
44363
44352
|
|
44364
|
-
},{"../lang/isArray":
|
44353
|
+
},{"../lang/isArray":424,"./baseCallback":356,"./baseReduce":381}],399:[function(require,module,exports){
|
44354
|
+
var arraySome = require('./arraySome');
|
44355
|
+
|
44365
44356
|
/**
|
44366
44357
|
* A specialized version of `baseIsEqualDeep` for arrays with support for
|
44367
44358
|
* partial deep comparisons.
|
@@ -44379,45 +44370,40 @@ module.exports = createReduce;
|
|
44379
44370
|
function equalArrays(array, other, equalFunc, customizer, isLoose, stackA, stackB) {
|
44380
44371
|
var index = -1,
|
44381
44372
|
arrLength = array.length,
|
44382
|
-
othLength = other.length
|
44383
|
-
result = true;
|
44373
|
+
othLength = other.length;
|
44384
44374
|
|
44385
44375
|
if (arrLength != othLength && !(isLoose && othLength > arrLength)) {
|
44386
44376
|
return false;
|
44387
44377
|
}
|
44388
|
-
//
|
44389
|
-
while (
|
44378
|
+
// Ignore non-index properties.
|
44379
|
+
while (++index < arrLength) {
|
44390
44380
|
var arrValue = array[index],
|
44391
|
-
othValue = other[index]
|
44392
|
-
|
44393
|
-
|
44394
|
-
if (
|
44395
|
-
result
|
44396
|
-
|
44397
|
-
|
44398
|
-
|
44399
|
-
|
44400
|
-
|
44401
|
-
|
44402
|
-
|
44403
|
-
|
44404
|
-
|
44405
|
-
|
44406
|
-
if (result) {
|
44407
|
-
break;
|
44408
|
-
}
|
44409
|
-
}
|
44410
|
-
} else {
|
44411
|
-
result = (arrValue && arrValue === othValue) || equalFunc(arrValue, othValue, customizer, isLoose, stackA, stackB);
|
44381
|
+
othValue = other[index],
|
44382
|
+
result = customizer ? customizer(isLoose ? othValue : arrValue, isLoose ? arrValue : othValue, index) : undefined;
|
44383
|
+
|
44384
|
+
if (result !== undefined) {
|
44385
|
+
if (result) {
|
44386
|
+
continue;
|
44387
|
+
}
|
44388
|
+
return false;
|
44389
|
+
}
|
44390
|
+
// Recursively compare arrays (susceptible to call stack limits).
|
44391
|
+
if (isLoose) {
|
44392
|
+
if (!arraySome(other, function(othValue) {
|
44393
|
+
return arrValue === othValue || equalFunc(arrValue, othValue, customizer, isLoose, stackA, stackB);
|
44394
|
+
})) {
|
44395
|
+
return false;
|
44412
44396
|
}
|
44397
|
+
} else if (!(arrValue === othValue || equalFunc(arrValue, othValue, customizer, isLoose, stackA, stackB))) {
|
44398
|
+
return false;
|
44413
44399
|
}
|
44414
44400
|
}
|
44415
|
-
return
|
44401
|
+
return true;
|
44416
44402
|
}
|
44417
44403
|
|
44418
44404
|
module.exports = equalArrays;
|
44419
44405
|
|
44420
|
-
},{}],400:[function(require,module,exports){
|
44406
|
+
},{"./arraySome":352}],400:[function(require,module,exports){
|
44421
44407
|
/** `Object#toString` result references. */
|
44422
44408
|
var boolTag = '[object Boolean]',
|
44423
44409
|
dateTag = '[object Date]',
|
@@ -44499,29 +44485,22 @@ function equalObjects(object, other, equalFunc, customizer, isLoose, stackA, sta
|
|
44499
44485
|
if (objLength != othLength && !isLoose) {
|
44500
44486
|
return false;
|
44501
44487
|
}
|
44502
|
-
var
|
44503
|
-
|
44504
|
-
|
44488
|
+
var index = objLength;
|
44489
|
+
while (index--) {
|
44490
|
+
var key = objProps[index];
|
44491
|
+
if (!(isLoose ? key in other : hasOwnProperty.call(other, key))) {
|
44492
|
+
return false;
|
44493
|
+
}
|
44494
|
+
}
|
44495
|
+
var skipCtor = isLoose;
|
44505
44496
|
while (++index < objLength) {
|
44506
|
-
|
44507
|
-
|
44508
|
-
|
44509
|
-
|
44510
|
-
var objValue = object[key],
|
44511
|
-
othValue = other[key];
|
44497
|
+
key = objProps[index];
|
44498
|
+
var objValue = object[key],
|
44499
|
+
othValue = other[key],
|
44500
|
+
result = customizer ? customizer(isLoose ? othValue : objValue, isLoose? objValue : othValue, key) : undefined;
|
44512
44501
|
|
44513
|
-
|
44514
|
-
|
44515
|
-
result = isLoose
|
44516
|
-
? customizer(othValue, objValue, key)
|
44517
|
-
: customizer(objValue, othValue, key);
|
44518
|
-
}
|
44519
|
-
if (result === undefined) {
|
44520
|
-
// Recursively compare objects (susceptible to call stack limits).
|
44521
|
-
result = (objValue && objValue === othValue) || equalFunc(objValue, othValue, customizer, isLoose, stackA, stackB);
|
44522
|
-
}
|
44523
|
-
}
|
44524
|
-
if (!result) {
|
44502
|
+
// Recursively compare objects (susceptible to call stack limits).
|
44503
|
+
if (!(result === undefined ? equalFunc(objValue, othValue, customizer, isLoose, stackA, stackB) : result)) {
|
44525
44504
|
return false;
|
44526
44505
|
}
|
44527
44506
|
skipCtor || (skipCtor = key == 'constructor');
|
@@ -44543,7 +44522,7 @@ function equalObjects(object, other, equalFunc, customizer, isLoose, stackA, sta
|
|
44543
44522
|
|
44544
44523
|
module.exports = equalObjects;
|
44545
44524
|
|
44546
|
-
},{"../object/keys":
|
44525
|
+
},{"../object/keys":440}],402:[function(require,module,exports){
|
44547
44526
|
var baseProperty = require('./baseProperty');
|
44548
44527
|
|
44549
44528
|
/**
|
@@ -44561,27 +44540,47 @@ var getLength = baseProperty('length');
|
|
44561
44540
|
module.exports = getLength;
|
44562
44541
|
|
44563
44542
|
},{"./baseProperty":379}],403:[function(require,module,exports){
|
44564
|
-
var
|
44565
|
-
|
44566
|
-
toObject = require('./toObject');
|
44543
|
+
var isStrictComparable = require('./isStrictComparable'),
|
44544
|
+
pairs = require('../object/pairs');
|
44567
44545
|
|
44568
|
-
/**
|
44569
|
-
|
44546
|
+
/**
|
44547
|
+
* Gets the propery names, values, and compare flags of `object`.
|
44548
|
+
*
|
44549
|
+
* @private
|
44550
|
+
* @param {Object} object The object to query.
|
44551
|
+
* @returns {Array} Returns the match data of `object`.
|
44552
|
+
*/
|
44553
|
+
function getMatchData(object) {
|
44554
|
+
var result = pairs(object),
|
44555
|
+
length = result.length;
|
44556
|
+
|
44557
|
+
while (length--) {
|
44558
|
+
result[length][2] = isStrictComparable(result[length][1]);
|
44559
|
+
}
|
44560
|
+
return result;
|
44561
|
+
}
|
44562
|
+
|
44563
|
+
module.exports = getMatchData;
|
44564
|
+
|
44565
|
+
},{"../object/pairs":443,"./isStrictComparable":415}],404:[function(require,module,exports){
|
44566
|
+
var isNative = require('../lang/isNative');
|
44570
44567
|
|
44571
44568
|
/**
|
44572
|
-
*
|
44569
|
+
* Gets the native function at `key` of `object`.
|
44573
44570
|
*
|
44574
44571
|
* @private
|
44575
44572
|
* @param {Object} object The object to query.
|
44576
|
-
* @
|
44573
|
+
* @param {string} key The key of the method to get.
|
44574
|
+
* @returns {*} Returns the function if it's native, else `undefined`.
|
44577
44575
|
*/
|
44578
|
-
|
44579
|
-
|
44580
|
-
|
44576
|
+
function getNative(object, key) {
|
44577
|
+
var value = object == null ? undefined : object[key];
|
44578
|
+
return isNative(value) ? value : undefined;
|
44579
|
+
}
|
44581
44580
|
|
44582
|
-
module.exports =
|
44581
|
+
module.exports = getNative;
|
44583
44582
|
|
44584
|
-
},{"../lang/isNative":
|
44583
|
+
},{"../lang/isNative":428}],405:[function(require,module,exports){
|
44585
44584
|
/**
|
44586
44585
|
* Gets the index at which the first occurrence of `NaN` is found in `array`.
|
44587
44586
|
*
|
@@ -44606,7 +44605,7 @@ function indexOfNaN(array, fromIndex, fromRight) {
|
|
44606
44605
|
|
44607
44606
|
module.exports = indexOfNaN;
|
44608
44607
|
|
44609
|
-
},{}],
|
44608
|
+
},{}],406:[function(require,module,exports){
|
44610
44609
|
/** Used for native method references. */
|
44611
44610
|
var objectProto = Object.prototype;
|
44612
44611
|
|
@@ -44634,7 +44633,7 @@ function initCloneArray(array) {
|
|
44634
44633
|
|
44635
44634
|
module.exports = initCloneArray;
|
44636
44635
|
|
44637
|
-
},{}],
|
44636
|
+
},{}],407:[function(require,module,exports){
|
44638
44637
|
var bufferClone = require('./bufferClone');
|
44639
44638
|
|
44640
44639
|
/** `Object#toString` result references. */
|
@@ -44699,7 +44698,7 @@ function initCloneByTag(object, tag, isDeep) {
|
|
44699
44698
|
|
44700
44699
|
module.exports = initCloneByTag;
|
44701
44700
|
|
44702
|
-
},{"./bufferClone":389}],
|
44701
|
+
},{"./bufferClone":389}],408:[function(require,module,exports){
|
44703
44702
|
/**
|
44704
44703
|
* Initializes an object clone.
|
44705
44704
|
*
|
@@ -44717,7 +44716,7 @@ function initCloneObject(object) {
|
|
44717
44716
|
|
44718
44717
|
module.exports = initCloneObject;
|
44719
44718
|
|
44720
|
-
},{}],
|
44719
|
+
},{}],409:[function(require,module,exports){
|
44721
44720
|
var getLength = require('./getLength'),
|
44722
44721
|
isLength = require('./isLength');
|
44723
44722
|
|
@@ -44734,12 +44733,12 @@ function isArrayLike(value) {
|
|
44734
44733
|
|
44735
44734
|
module.exports = isArrayLike;
|
44736
44735
|
|
44737
|
-
},{"./getLength":402,"./isLength":
|
44736
|
+
},{"./getLength":402,"./isLength":413}],410:[function(require,module,exports){
|
44738
44737
|
/**
|
44739
44738
|
* Used as the [maximum length](https://people.mozilla.org/~jorendorff/es6-draft.html#sec-number.max_safe_integer)
|
44740
44739
|
* of an array-like value.
|
44741
44740
|
*/
|
44742
|
-
var MAX_SAFE_INTEGER =
|
44741
|
+
var MAX_SAFE_INTEGER = 9007199254740991;
|
44743
44742
|
|
44744
44743
|
/**
|
44745
44744
|
* Checks if `value` is a valid array-like index.
|
@@ -44750,14 +44749,14 @@ var MAX_SAFE_INTEGER = Math.pow(2, 53) - 1;
|
|
44750
44749
|
* @returns {boolean} Returns `true` if `value` is a valid index, else `false`.
|
44751
44750
|
*/
|
44752
44751
|
function isIndex(value, length) {
|
44753
|
-
value =
|
44752
|
+
value = typeof value == 'number' ? value : parseFloat(value);
|
44754
44753
|
length = length == null ? MAX_SAFE_INTEGER : length;
|
44755
44754
|
return value > -1 && value % 1 == 0 && value < length;
|
44756
44755
|
}
|
44757
44756
|
|
44758
44757
|
module.exports = isIndex;
|
44759
44758
|
|
44760
|
-
},{}],
|
44759
|
+
},{}],411:[function(require,module,exports){
|
44761
44760
|
var isArrayLike = require('./isArrayLike'),
|
44762
44761
|
isIndex = require('./isIndex'),
|
44763
44762
|
isObject = require('../lang/isObject');
|
@@ -44787,7 +44786,7 @@ function isIterateeCall(value, index, object) {
|
|
44787
44786
|
|
44788
44787
|
module.exports = isIterateeCall;
|
44789
44788
|
|
44790
|
-
},{"../lang/isObject":
|
44789
|
+
},{"../lang/isObject":430,"./isArrayLike":409,"./isIndex":410}],412:[function(require,module,exports){
|
44791
44790
|
var isArray = require('../lang/isArray'),
|
44792
44791
|
toObject = require('./toObject');
|
44793
44792
|
|
@@ -44817,12 +44816,12 @@ function isKey(value, object) {
|
|
44817
44816
|
|
44818
44817
|
module.exports = isKey;
|
44819
44818
|
|
44820
|
-
},{"../lang/isArray":
|
44819
|
+
},{"../lang/isArray":424,"./toObject":419}],413:[function(require,module,exports){
|
44821
44820
|
/**
|
44822
44821
|
* Used as the [maximum length](https://people.mozilla.org/~jorendorff/es6-draft.html#sec-number.max_safe_integer)
|
44823
44822
|
* of an array-like value.
|
44824
44823
|
*/
|
44825
|
-
var MAX_SAFE_INTEGER =
|
44824
|
+
var MAX_SAFE_INTEGER = 9007199254740991;
|
44826
44825
|
|
44827
44826
|
/**
|
44828
44827
|
* Checks if `value` is a valid array-like length.
|
@@ -44839,7 +44838,7 @@ function isLength(value) {
|
|
44839
44838
|
|
44840
44839
|
module.exports = isLength;
|
44841
44840
|
|
44842
|
-
},{}],
|
44841
|
+
},{}],414:[function(require,module,exports){
|
44843
44842
|
/**
|
44844
44843
|
* Checks if `value` is object-like.
|
44845
44844
|
*
|
@@ -44853,7 +44852,7 @@ function isObjectLike(value) {
|
|
44853
44852
|
|
44854
44853
|
module.exports = isObjectLike;
|
44855
44854
|
|
44856
|
-
},{}],
|
44855
|
+
},{}],415:[function(require,module,exports){
|
44857
44856
|
var isObject = require('../lang/isObject');
|
44858
44857
|
|
44859
44858
|
/**
|
@@ -44870,7 +44869,7 @@ function isStrictComparable(value) {
|
|
44870
44869
|
|
44871
44870
|
module.exports = isStrictComparable;
|
44872
44871
|
|
44873
|
-
},{"../lang/isObject":
|
44872
|
+
},{"../lang/isObject":430}],416:[function(require,module,exports){
|
44874
44873
|
var baseForIn = require('./baseForIn'),
|
44875
44874
|
isObjectLike = require('./isObjectLike');
|
44876
44875
|
|
@@ -44922,13 +44921,12 @@ function shimIsPlainObject(value) {
|
|
44922
44921
|
|
44923
44922
|
module.exports = shimIsPlainObject;
|
44924
44923
|
|
44925
|
-
},{"./baseForIn":364,"./isObjectLike":
|
44924
|
+
},{"./baseForIn":364,"./isObjectLike":414}],417:[function(require,module,exports){
|
44926
44925
|
var isArguments = require('../lang/isArguments'),
|
44927
44926
|
isArray = require('../lang/isArray'),
|
44928
44927
|
isIndex = require('./isIndex'),
|
44929
44928
|
isLength = require('./isLength'),
|
44930
|
-
keysIn = require('../object/keysIn')
|
44931
|
-
support = require('../support');
|
44929
|
+
keysIn = require('../object/keysIn');
|
44932
44930
|
|
44933
44931
|
/** Used for native method references. */
|
44934
44932
|
var objectProto = Object.prototype;
|
@@ -44949,8 +44947,8 @@ function shimKeys(object) {
|
|
44949
44947
|
propsLength = props.length,
|
44950
44948
|
length = propsLength && object.length;
|
44951
44949
|
|
44952
|
-
var allowIndexes = length && isLength(length) &&
|
44953
|
-
(isArray(object) ||
|
44950
|
+
var allowIndexes = !!length && isLength(length) &&
|
44951
|
+
(isArray(object) || isArguments(object));
|
44954
44952
|
|
44955
44953
|
var index = -1,
|
44956
44954
|
result = [];
|
@@ -44966,7 +44964,7 @@ function shimKeys(object) {
|
|
44966
44964
|
|
44967
44965
|
module.exports = shimKeys;
|
44968
44966
|
|
44969
|
-
},{"../lang/isArguments":
|
44967
|
+
},{"../lang/isArguments":423,"../lang/isArray":424,"../object/keysIn":441,"./isIndex":410,"./isLength":413}],418:[function(require,module,exports){
|
44970
44968
|
/**
|
44971
44969
|
* An implementation of `_.uniq` optimized for sorted arrays without support
|
44972
44970
|
* for callback shorthands and `this` binding.
|
@@ -44997,11 +44995,11 @@ function sortedUniq(array, iteratee) {
|
|
44997
44995
|
|
44998
44996
|
module.exports = sortedUniq;
|
44999
44997
|
|
45000
|
-
},{}],
|
44998
|
+
},{}],419:[function(require,module,exports){
|
45001
44999
|
var isObject = require('../lang/isObject');
|
45002
45000
|
|
45003
45001
|
/**
|
45004
|
-
* Converts `value` to an object if it
|
45002
|
+
* Converts `value` to an object if it's not one.
|
45005
45003
|
*
|
45006
45004
|
* @private
|
45007
45005
|
* @param {*} value The value to process.
|
@@ -45013,7 +45011,7 @@ function toObject(value) {
|
|
45013
45011
|
|
45014
45012
|
module.exports = toObject;
|
45015
45013
|
|
45016
|
-
},{"../lang/isObject":
|
45014
|
+
},{"../lang/isObject":430}],420:[function(require,module,exports){
|
45017
45015
|
var baseToString = require('./baseToString'),
|
45018
45016
|
isArray = require('../lang/isArray');
|
45019
45017
|
|
@@ -45024,7 +45022,7 @@ var rePropName = /[^.[\]]+|\[(?:(-?\d+(?:\.\d+)?)|(["'])((?:(?!\2)[^\n\\]|\\.)*?
|
|
45024
45022
|
var reEscapeChar = /\\(\\)?/g;
|
45025
45023
|
|
45026
45024
|
/**
|
45027
|
-
* Converts `value` to property path array if it
|
45025
|
+
* Converts `value` to property path array if it's not one.
|
45028
45026
|
*
|
45029
45027
|
* @private
|
45030
45028
|
* @param {*} value The value to process.
|
@@ -45043,7 +45041,7 @@ function toPath(value) {
|
|
45043
45041
|
|
45044
45042
|
module.exports = toPath;
|
45045
45043
|
|
45046
|
-
},{"../lang/isArray":
|
45044
|
+
},{"../lang/isArray":424,"./baseToString":385}],421:[function(require,module,exports){
|
45047
45045
|
var baseClone = require('../internal/baseClone'),
|
45048
45046
|
bindCallback = require('../internal/bindCallback'),
|
45049
45047
|
isIterateeCall = require('../internal/isIterateeCall');
|
@@ -45108,13 +45106,14 @@ function clone(value, isDeep, customizer, thisArg) {
|
|
45108
45106
|
customizer = isDeep;
|
45109
45107
|
isDeep = false;
|
45110
45108
|
}
|
45111
|
-
|
45112
|
-
|
45109
|
+
return typeof customizer == 'function'
|
45110
|
+
? baseClone(value, isDeep, bindCallback(customizer, thisArg, 1))
|
45111
|
+
: baseClone(value, isDeep);
|
45113
45112
|
}
|
45114
45113
|
|
45115
45114
|
module.exports = clone;
|
45116
45115
|
|
45117
|
-
},{"../internal/baseClone":357,"../internal/bindCallback":388,"../internal/isIterateeCall":
|
45116
|
+
},{"../internal/baseClone":357,"../internal/bindCallback":388,"../internal/isIterateeCall":411}],422:[function(require,module,exports){
|
45118
45117
|
var baseClone = require('../internal/baseClone'),
|
45119
45118
|
bindCallback = require('../internal/bindCallback');
|
45120
45119
|
|
@@ -45164,13 +45163,14 @@ var baseClone = require('../internal/baseClone'),
|
|
45164
45163
|
* // => 20
|
45165
45164
|
*/
|
45166
45165
|
function cloneDeep(value, customizer, thisArg) {
|
45167
|
-
|
45168
|
-
|
45166
|
+
return typeof customizer == 'function'
|
45167
|
+
? baseClone(value, true, bindCallback(customizer, thisArg, 1))
|
45168
|
+
: baseClone(value, true);
|
45169
45169
|
}
|
45170
45170
|
|
45171
45171
|
module.exports = cloneDeep;
|
45172
45172
|
|
45173
|
-
},{"../internal/baseClone":357,"../internal/bindCallback":388}],
|
45173
|
+
},{"../internal/baseClone":357,"../internal/bindCallback":388}],423:[function(require,module,exports){
|
45174
45174
|
var isArrayLike = require('../internal/isArrayLike'),
|
45175
45175
|
isObjectLike = require('../internal/isObjectLike');
|
45176
45176
|
|
@@ -45208,9 +45208,9 @@ function isArguments(value) {
|
|
45208
45208
|
|
45209
45209
|
module.exports = isArguments;
|
45210
45210
|
|
45211
|
-
},{"../internal/isArrayLike":
|
45212
|
-
var
|
45213
|
-
|
45211
|
+
},{"../internal/isArrayLike":409,"../internal/isObjectLike":414}],424:[function(require,module,exports){
|
45212
|
+
var getNative = require('../internal/getNative'),
|
45213
|
+
isLength = require('../internal/isLength'),
|
45214
45214
|
isObjectLike = require('../internal/isObjectLike');
|
45215
45215
|
|
45216
45216
|
/** `Object#toString` result references. */
|
@@ -45226,7 +45226,7 @@ var objectProto = Object.prototype;
|
|
45226
45226
|
var objToString = objectProto.toString;
|
45227
45227
|
|
45228
45228
|
/* Native method references for those with the same name as other `lodash` methods. */
|
45229
|
-
var nativeIsArray =
|
45229
|
+
var nativeIsArray = getNative(Array, 'isArray');
|
45230
45230
|
|
45231
45231
|
/**
|
45232
45232
|
* Checks if `value` is classified as an `Array` object.
|
@@ -45250,7 +45250,7 @@ var isArray = nativeIsArray || function(value) {
|
|
45250
45250
|
|
45251
45251
|
module.exports = isArray;
|
45252
45252
|
|
45253
|
-
},{"../internal/
|
45253
|
+
},{"../internal/getNative":404,"../internal/isLength":413,"../internal/isObjectLike":414}],425:[function(require,module,exports){
|
45254
45254
|
var isObjectLike = require('../internal/isObjectLike');
|
45255
45255
|
|
45256
45256
|
/** `Object#toString` result references. */
|
@@ -45287,7 +45287,7 @@ function isBoolean(value) {
|
|
45287
45287
|
|
45288
45288
|
module.exports = isBoolean;
|
45289
45289
|
|
45290
|
-
},{"../internal/isObjectLike":
|
45290
|
+
},{"../internal/isObjectLike":414}],426:[function(require,module,exports){
|
45291
45291
|
var isArguments = require('./isArguments'),
|
45292
45292
|
isArray = require('./isArray'),
|
45293
45293
|
isArrayLike = require('../internal/isArrayLike'),
|
@@ -45336,10 +45336,10 @@ function isEmpty(value) {
|
|
45336
45336
|
|
45337
45337
|
module.exports = isEmpty;
|
45338
45338
|
|
45339
|
-
},{"../internal/isArrayLike":
|
45339
|
+
},{"../internal/isArrayLike":409,"../internal/isObjectLike":414,"../object/keys":440,"./isArguments":423,"./isArray":424,"./isFunction":427,"./isString":433}],427:[function(require,module,exports){
|
45340
45340
|
(function (global){
|
45341
45341
|
var baseIsFunction = require('../internal/baseIsFunction'),
|
45342
|
-
|
45342
|
+
getNative = require('../internal/getNative');
|
45343
45343
|
|
45344
45344
|
/** `Object#toString` result references. */
|
45345
45345
|
var funcTag = '[object Function]';
|
@@ -45354,7 +45354,7 @@ var objectProto = Object.prototype;
|
|
45354
45354
|
var objToString = objectProto.toString;
|
45355
45355
|
|
45356
45356
|
/** Native method references. */
|
45357
|
-
var Uint8Array =
|
45357
|
+
var Uint8Array = getNative(global, 'Uint8Array');
|
45358
45358
|
|
45359
45359
|
/**
|
45360
45360
|
* Checks if `value` is classified as a `Function` object.
|
@@ -45382,7 +45382,7 @@ var isFunction = !(baseIsFunction(/x/) || (Uint8Array && !baseIsFunction(Uint8Ar
|
|
45382
45382
|
module.exports = isFunction;
|
45383
45383
|
|
45384
45384
|
}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
45385
|
-
},{"../internal/baseIsFunction":372,"
|
45385
|
+
},{"../internal/baseIsFunction":372,"../internal/getNative":404}],428:[function(require,module,exports){
|
45386
45386
|
var escapeRegExp = require('../string/escapeRegExp'),
|
45387
45387
|
isObjectLike = require('../internal/isObjectLike');
|
45388
45388
|
|
@@ -45398,6 +45398,9 @@ var objectProto = Object.prototype;
|
|
45398
45398
|
/** Used to resolve the decompiled source of functions. */
|
45399
45399
|
var fnToString = Function.prototype.toString;
|
45400
45400
|
|
45401
|
+
/** Used to check objects for own properties. */
|
45402
|
+
var hasOwnProperty = objectProto.hasOwnProperty;
|
45403
|
+
|
45401
45404
|
/**
|
45402
45405
|
* Used to resolve the [`toStringTag`](https://people.mozilla.org/~jorendorff/es6-draft.html#sec-object.prototype.tostring)
|
45403
45406
|
* of values.
|
@@ -45406,8 +45409,8 @@ var objToString = objectProto.toString;
|
|
45406
45409
|
|
45407
45410
|
/** Used to detect if a method is native. */
|
45408
45411
|
var reIsNative = RegExp('^' +
|
45409
|
-
escapeRegExp(
|
45410
|
-
.replace(/
|
45412
|
+
escapeRegExp(fnToString.call(hasOwnProperty))
|
45413
|
+
.replace(/hasOwnProperty|(function).*?(?=\\\()| for .+?(?=\\\])/g, '$1.*?') + '$'
|
45411
45414
|
);
|
45412
45415
|
|
45413
45416
|
/**
|
@@ -45438,7 +45441,7 @@ function isNative(value) {
|
|
45438
45441
|
|
45439
45442
|
module.exports = isNative;
|
45440
45443
|
|
45441
|
-
},{"../internal/isObjectLike":
|
45444
|
+
},{"../internal/isObjectLike":414,"../string/escapeRegExp":445}],429:[function(require,module,exports){
|
45442
45445
|
var isObjectLike = require('../internal/isObjectLike');
|
45443
45446
|
|
45444
45447
|
/** `Object#toString` result references. */
|
@@ -45481,7 +45484,7 @@ function isNumber(value) {
|
|
45481
45484
|
|
45482
45485
|
module.exports = isNumber;
|
45483
45486
|
|
45484
|
-
},{"../internal/isObjectLike":
|
45487
|
+
},{"../internal/isObjectLike":414}],430:[function(require,module,exports){
|
45485
45488
|
/**
|
45486
45489
|
* Checks if `value` is the [language type](https://es5.github.io/#x8) of `Object`.
|
45487
45490
|
* (e.g. arrays, functions, objects, regexes, `new Number(0)`, and `new String('')`)
|
@@ -45506,13 +45509,13 @@ function isObject(value) {
|
|
45506
45509
|
// Avoid a V8 JIT bug in Chrome 19-20.
|
45507
45510
|
// See https://code.google.com/p/v8/issues/detail?id=2291 for more details.
|
45508
45511
|
var type = typeof value;
|
45509
|
-
return type == '
|
45512
|
+
return !!value && (type == 'object' || type == 'function');
|
45510
45513
|
}
|
45511
45514
|
|
45512
45515
|
module.exports = isObject;
|
45513
45516
|
|
45514
|
-
},{}],
|
45515
|
-
var
|
45517
|
+
},{}],431:[function(require,module,exports){
|
45518
|
+
var getNative = require('../internal/getNative'),
|
45516
45519
|
shimIsPlainObject = require('../internal/shimIsPlainObject');
|
45517
45520
|
|
45518
45521
|
/** `Object#toString` result references. */
|
@@ -45528,7 +45531,7 @@ var objectProto = Object.prototype;
|
|
45528
45531
|
var objToString = objectProto.toString;
|
45529
45532
|
|
45530
45533
|
/** Native method references. */
|
45531
|
-
var getPrototypeOf =
|
45534
|
+
var getPrototypeOf = getNative(Object, 'getPrototypeOf');
|
45532
45535
|
|
45533
45536
|
/**
|
45534
45537
|
* Checks if `value` is a plain object, that is, an object created by the
|
@@ -45564,8 +45567,8 @@ var isPlainObject = !getPrototypeOf ? shimIsPlainObject : function(value) {
|
|
45564
45567
|
if (!(value && objToString.call(value) == objectTag)) {
|
45565
45568
|
return false;
|
45566
45569
|
}
|
45567
|
-
var valueOf = value
|
45568
|
-
objProto =
|
45570
|
+
var valueOf = getNative(value, 'valueOf'),
|
45571
|
+
objProto = valueOf && (objProto = getPrototypeOf(valueOf)) && getPrototypeOf(objProto);
|
45569
45572
|
|
45570
45573
|
return objProto
|
45571
45574
|
? (value == objProto || getPrototypeOf(value) == objProto)
|
@@ -45574,7 +45577,7 @@ var isPlainObject = !getPrototypeOf ? shimIsPlainObject : function(value) {
|
|
45574
45577
|
|
45575
45578
|
module.exports = isPlainObject;
|
45576
45579
|
|
45577
|
-
},{"../internal/
|
45580
|
+
},{"../internal/getNative":404,"../internal/shimIsPlainObject":416}],432:[function(require,module,exports){
|
45578
45581
|
var isObjectLike = require('../internal/isObjectLike');
|
45579
45582
|
|
45580
45583
|
/** `Object#toString` result references. */
|
@@ -45611,7 +45614,7 @@ function isRegExp(value) {
|
|
45611
45614
|
|
45612
45615
|
module.exports = isRegExp;
|
45613
45616
|
|
45614
|
-
},{"../internal/isObjectLike":
|
45617
|
+
},{"../internal/isObjectLike":414}],433:[function(require,module,exports){
|
45615
45618
|
var isObjectLike = require('../internal/isObjectLike');
|
45616
45619
|
|
45617
45620
|
/** `Object#toString` result references. */
|
@@ -45648,7 +45651,7 @@ function isString(value) {
|
|
45648
45651
|
|
45649
45652
|
module.exports = isString;
|
45650
45653
|
|
45651
|
-
},{"../internal/isObjectLike":
|
45654
|
+
},{"../internal/isObjectLike":414}],434:[function(require,module,exports){
|
45652
45655
|
var isLength = require('../internal/isLength'),
|
45653
45656
|
isObjectLike = require('../internal/isObjectLike');
|
45654
45657
|
|
@@ -45724,7 +45727,7 @@ function isTypedArray(value) {
|
|
45724
45727
|
|
45725
45728
|
module.exports = isTypedArray;
|
45726
45729
|
|
45727
|
-
},{"../internal/isLength":
|
45730
|
+
},{"../internal/isLength":413,"../internal/isObjectLike":414}],435:[function(require,module,exports){
|
45728
45731
|
var baseCopy = require('../internal/baseCopy'),
|
45729
45732
|
keysIn = require('../object/keysIn');
|
45730
45733
|
|
@@ -45757,7 +45760,7 @@ function toPlainObject(value) {
|
|
45757
45760
|
|
45758
45761
|
module.exports = toPlainObject;
|
45759
45762
|
|
45760
|
-
},{"../internal/baseCopy":359,"../object/keysIn":
|
45763
|
+
},{"../internal/baseCopy":359,"../object/keysIn":441}],436:[function(require,module,exports){
|
45761
45764
|
var assignWith = require('../internal/assignWith'),
|
45762
45765
|
baseAssign = require('../internal/baseAssign'),
|
45763
45766
|
createAssigner = require('../internal/createAssigner');
|
@@ -45802,7 +45805,7 @@ var assign = createAssigner(function(object, source, customizer) {
|
|
45802
45805
|
|
45803
45806
|
module.exports = assign;
|
45804
45807
|
|
45805
|
-
},{"../internal/assignWith":354,"../internal/baseAssign":355,"../internal/createAssigner":393}],
|
45808
|
+
},{"../internal/assignWith":354,"../internal/baseAssign":355,"../internal/createAssigner":393}],437:[function(require,module,exports){
|
45806
45809
|
var assign = require('./assign'),
|
45807
45810
|
assignDefaults = require('../internal/assignDefaults'),
|
45808
45811
|
restParam = require('../function/restParam');
|
@@ -45836,13 +45839,17 @@ var defaults = restParam(function(args) {
|
|
45836
45839
|
|
45837
45840
|
module.exports = defaults;
|
45838
45841
|
|
45839
|
-
},{"../function/restParam":346,"../internal/assignDefaults":353,"./assign":
|
45842
|
+
},{"../function/restParam":346,"../internal/assignDefaults":353,"./assign":436}],438:[function(require,module,exports){
|
45840
45843
|
module.exports = require('./assign');
|
45841
45844
|
|
45842
|
-
},{"./assign":
|
45845
|
+
},{"./assign":436}],439:[function(require,module,exports){
|
45843
45846
|
var baseGet = require('../internal/baseGet'),
|
45844
45847
|
baseSlice = require('../internal/baseSlice'),
|
45848
|
+
isArguments = require('../lang/isArguments'),
|
45849
|
+
isArray = require('../lang/isArray'),
|
45850
|
+
isIndex = require('../internal/isIndex'),
|
45845
45851
|
isKey = require('../internal/isKey'),
|
45852
|
+
isLength = require('../internal/isLength'),
|
45846
45853
|
last = require('../array/last'),
|
45847
45854
|
toPath = require('../internal/toPath');
|
45848
45855
|
|
@@ -45882,22 +45889,26 @@ function has(object, path) {
|
|
45882
45889
|
if (!result && !isKey(path)) {
|
45883
45890
|
path = toPath(path);
|
45884
45891
|
object = path.length == 1 ? object : baseGet(object, baseSlice(path, 0, -1));
|
45892
|
+
if (object == null) {
|
45893
|
+
return false;
|
45894
|
+
}
|
45885
45895
|
path = last(path);
|
45886
|
-
result =
|
45896
|
+
result = hasOwnProperty.call(object, path);
|
45887
45897
|
}
|
45888
|
-
return result
|
45898
|
+
return result || (isLength(object.length) && isIndex(path, object.length) &&
|
45899
|
+
(isArray(object) || isArguments(object)));
|
45889
45900
|
}
|
45890
45901
|
|
45891
45902
|
module.exports = has;
|
45892
45903
|
|
45893
|
-
},{"../array/last":335,"../internal/baseGet":368,"../internal/baseSlice":382,"../internal/isKey":
|
45894
|
-
var
|
45895
|
-
|
45904
|
+
},{"../array/last":335,"../internal/baseGet":368,"../internal/baseSlice":382,"../internal/isIndex":410,"../internal/isKey":412,"../internal/isLength":413,"../internal/toPath":420,"../lang/isArguments":423,"../lang/isArray":424}],440:[function(require,module,exports){
|
45905
|
+
var getNative = require('../internal/getNative'),
|
45906
|
+
isArrayLike = require('../internal/isArrayLike'),
|
45896
45907
|
isObject = require('../lang/isObject'),
|
45897
45908
|
shimKeys = require('../internal/shimKeys');
|
45898
45909
|
|
45899
45910
|
/* Native method references for those with the same name as other `lodash` methods. */
|
45900
|
-
var nativeKeys =
|
45911
|
+
var nativeKeys = getNative(Object, 'keys');
|
45901
45912
|
|
45902
45913
|
/**
|
45903
45914
|
* Creates an array of the own enumerable property names of `object`.
|
@@ -45927,7 +45938,7 @@ var nativeKeys = isNative(nativeKeys = Object.keys) && nativeKeys;
|
|
45927
45938
|
* // => ['0', '1']
|
45928
45939
|
*/
|
45929
45940
|
var keys = !nativeKeys ? shimKeys : function(object) {
|
45930
|
-
var Ctor = object
|
45941
|
+
var Ctor = object == null ? null : object.constructor;
|
45931
45942
|
if ((typeof Ctor == 'function' && Ctor.prototype === object) ||
|
45932
45943
|
(typeof object != 'function' && isArrayLike(object))) {
|
45933
45944
|
return shimKeys(object);
|
@@ -45937,13 +45948,12 @@ var keys = !nativeKeys ? shimKeys : function(object) {
|
|
45937
45948
|
|
45938
45949
|
module.exports = keys;
|
45939
45950
|
|
45940
|
-
},{"../internal/
|
45951
|
+
},{"../internal/getNative":404,"../internal/isArrayLike":409,"../internal/shimKeys":417,"../lang/isObject":430}],441:[function(require,module,exports){
|
45941
45952
|
var isArguments = require('../lang/isArguments'),
|
45942
45953
|
isArray = require('../lang/isArray'),
|
45943
45954
|
isIndex = require('../internal/isIndex'),
|
45944
45955
|
isLength = require('../internal/isLength'),
|
45945
|
-
isObject = require('../lang/isObject')
|
45946
|
-
support = require('../support');
|
45956
|
+
isObject = require('../lang/isObject');
|
45947
45957
|
|
45948
45958
|
/** Used for native method references. */
|
45949
45959
|
var objectProto = Object.prototype;
|
@@ -45982,7 +45992,7 @@ function keysIn(object) {
|
|
45982
45992
|
}
|
45983
45993
|
var length = object.length;
|
45984
45994
|
length = (length && isLength(length) &&
|
45985
|
-
(isArray(object) ||
|
45995
|
+
(isArray(object) || isArguments(object)) && length) || 0;
|
45986
45996
|
|
45987
45997
|
var Ctor = object.constructor,
|
45988
45998
|
index = -1,
|
@@ -46004,7 +46014,7 @@ function keysIn(object) {
|
|
46004
46014
|
|
46005
46015
|
module.exports = keysIn;
|
46006
46016
|
|
46007
|
-
},{"../internal/isIndex":
|
46017
|
+
},{"../internal/isIndex":410,"../internal/isLength":413,"../lang/isArguments":423,"../lang/isArray":424,"../lang/isObject":430}],442:[function(require,module,exports){
|
46008
46018
|
var baseMerge = require('../internal/baseMerge'),
|
46009
46019
|
createAssigner = require('../internal/createAssigner');
|
46010
46020
|
|
@@ -46060,7 +46070,42 @@ var merge = createAssigner(baseMerge);
|
|
46060
46070
|
|
46061
46071
|
module.exports = merge;
|
46062
46072
|
|
46063
|
-
},{"../internal/baseMerge":377,"../internal/createAssigner":393}],
|
46073
|
+
},{"../internal/baseMerge":377,"../internal/createAssigner":393}],443:[function(require,module,exports){
|
46074
|
+
var keys = require('./keys'),
|
46075
|
+
toObject = require('../internal/toObject');
|
46076
|
+
|
46077
|
+
/**
|
46078
|
+
* Creates a two dimensional array of the key-value pairs for `object`,
|
46079
|
+
* e.g. `[[key1, value1], [key2, value2]]`.
|
46080
|
+
*
|
46081
|
+
* @static
|
46082
|
+
* @memberOf _
|
46083
|
+
* @category Object
|
46084
|
+
* @param {Object} object The object to query.
|
46085
|
+
* @returns {Array} Returns the new array of key-value pairs.
|
46086
|
+
* @example
|
46087
|
+
*
|
46088
|
+
* _.pairs({ 'barney': 36, 'fred': 40 });
|
46089
|
+
* // => [['barney', 36], ['fred', 40]] (iteration order is not guaranteed)
|
46090
|
+
*/
|
46091
|
+
function pairs(object) {
|
46092
|
+
object = toObject(object);
|
46093
|
+
|
46094
|
+
var index = -1,
|
46095
|
+
props = keys(object),
|
46096
|
+
length = props.length,
|
46097
|
+
result = Array(length);
|
46098
|
+
|
46099
|
+
while (++index < length) {
|
46100
|
+
var key = props[index];
|
46101
|
+
result[index] = [key, object[key]];
|
46102
|
+
}
|
46103
|
+
return result;
|
46104
|
+
}
|
46105
|
+
|
46106
|
+
module.exports = pairs;
|
46107
|
+
|
46108
|
+
},{"../internal/toObject":419,"./keys":440}],444:[function(require,module,exports){
|
46064
46109
|
var baseValues = require('../internal/baseValues'),
|
46065
46110
|
keys = require('./keys');
|
46066
46111
|
|
@@ -46095,7 +46140,7 @@ function values(object) {
|
|
46095
46140
|
|
46096
46141
|
module.exports = values;
|
46097
46142
|
|
46098
|
-
},{"../internal/baseValues":387,"./keys":
|
46143
|
+
},{"../internal/baseValues":387,"./keys":440}],445:[function(require,module,exports){
|
46099
46144
|
var baseToString = require('../internal/baseToString');
|
46100
46145
|
|
46101
46146
|
/**
|
@@ -46129,7 +46174,7 @@ function escapeRegExp(string) {
|
|
46129
46174
|
|
46130
46175
|
module.exports = escapeRegExp;
|
46131
46176
|
|
46132
|
-
},{"../internal/baseToString":385}],
|
46177
|
+
},{"../internal/baseToString":385}],446:[function(require,module,exports){
|
46133
46178
|
var baseToString = require('../internal/baseToString');
|
46134
46179
|
|
46135
46180
|
/* Native method references for those with the same name as other `lodash` methods. */
|
@@ -46167,88 +46212,7 @@ function startsWith(string, target, position) {
|
|
46167
46212
|
|
46168
46213
|
module.exports = startsWith;
|
46169
46214
|
|
46170
|
-
},{"../internal/baseToString":385}],
|
46171
|
-
(function (global){
|
46172
|
-
/** Used for native method references. */
|
46173
|
-
var objectProto = Object.prototype;
|
46174
|
-
|
46175
|
-
/** Used to detect DOM support. */
|
46176
|
-
var document = (document = global.window) && document.document;
|
46177
|
-
|
46178
|
-
/** Native method references. */
|
46179
|
-
var propertyIsEnumerable = objectProto.propertyIsEnumerable;
|
46180
|
-
|
46181
|
-
/**
|
46182
|
-
* An object environment feature flags.
|
46183
|
-
*
|
46184
|
-
* @static
|
46185
|
-
* @memberOf _
|
46186
|
-
* @type Object
|
46187
|
-
*/
|
46188
|
-
var support = {};
|
46189
|
-
|
46190
|
-
(function(x) {
|
46191
|
-
var Ctor = function() { this.x = x; },
|
46192
|
-
args = arguments,
|
46193
|
-
object = { '0': x, 'length': x },
|
46194
|
-
props = [];
|
46195
|
-
|
46196
|
-
Ctor.prototype = { 'valueOf': x, 'y': x };
|
46197
|
-
for (var key in new Ctor) { props.push(key); }
|
46198
|
-
|
46199
|
-
/**
|
46200
|
-
* Detect if functions can be decompiled by `Function#toString`
|
46201
|
-
* (all but Firefox OS certified apps, older Opera mobile browsers, and
|
46202
|
-
* the PlayStation 3; forced `false` for Windows 8 apps).
|
46203
|
-
*
|
46204
|
-
* @memberOf _.support
|
46205
|
-
* @type boolean
|
46206
|
-
*/
|
46207
|
-
support.funcDecomp = /\bthis\b/.test(function() { return this; });
|
46208
|
-
|
46209
|
-
/**
|
46210
|
-
* Detect if `Function#name` is supported (all but IE).
|
46211
|
-
*
|
46212
|
-
* @memberOf _.support
|
46213
|
-
* @type boolean
|
46214
|
-
*/
|
46215
|
-
support.funcNames = typeof Function.name == 'string';
|
46216
|
-
|
46217
|
-
/**
|
46218
|
-
* Detect if the DOM is supported.
|
46219
|
-
*
|
46220
|
-
* @memberOf _.support
|
46221
|
-
* @type boolean
|
46222
|
-
*/
|
46223
|
-
try {
|
46224
|
-
support.dom = document.createDocumentFragment().nodeType === 11;
|
46225
|
-
} catch(e) {
|
46226
|
-
support.dom = false;
|
46227
|
-
}
|
46228
|
-
|
46229
|
-
/**
|
46230
|
-
* Detect if `arguments` object indexes are non-enumerable.
|
46231
|
-
*
|
46232
|
-
* In Firefox < 4, IE < 9, PhantomJS, and Safari < 5.1 `arguments` object
|
46233
|
-
* indexes are non-enumerable. Chrome < 25 and Node.js < 0.11.0 treat
|
46234
|
-
* `arguments` object indexes as non-enumerable and fail `hasOwnProperty`
|
46235
|
-
* checks for indexes that exceed the number of function parameters and
|
46236
|
-
* whose associated argument values are `0`.
|
46237
|
-
*
|
46238
|
-
* @memberOf _.support
|
46239
|
-
* @type boolean
|
46240
|
-
*/
|
46241
|
-
try {
|
46242
|
-
support.nonEnumArgs = !propertyIsEnumerable.call(args, 1);
|
46243
|
-
} catch(e) {
|
46244
|
-
support.nonEnumArgs = true;
|
46245
|
-
}
|
46246
|
-
}(1, 0));
|
46247
|
-
|
46248
|
-
module.exports = support;
|
46249
|
-
|
46250
|
-
}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
46251
|
-
},{}],446:[function(require,module,exports){
|
46215
|
+
},{"../internal/baseToString":385}],447:[function(require,module,exports){
|
46252
46216
|
/**
|
46253
46217
|
* Creates a function that returns `value`.
|
46254
46218
|
*
|
@@ -46273,7 +46237,7 @@ function constant(value) {
|
|
46273
46237
|
|
46274
46238
|
module.exports = constant;
|
46275
46239
|
|
46276
|
-
},{}],
|
46240
|
+
},{}],448:[function(require,module,exports){
|
46277
46241
|
/**
|
46278
46242
|
* This method returns the first argument provided to it.
|
46279
46243
|
*
|
@@ -46295,7 +46259,7 @@ function identity(value) {
|
|
46295
46259
|
|
46296
46260
|
module.exports = identity;
|
46297
46261
|
|
46298
|
-
},{}],
|
46262
|
+
},{}],449:[function(require,module,exports){
|
46299
46263
|
var baseProperty = require('../internal/baseProperty'),
|
46300
46264
|
basePropertyDeep = require('../internal/basePropertyDeep'),
|
46301
46265
|
isKey = require('../internal/isKey');
|
@@ -46328,7 +46292,7 @@ function property(path) {
|
|
46328
46292
|
|
46329
46293
|
module.exports = property;
|
46330
46294
|
|
46331
|
-
},{"../internal/baseProperty":379,"../internal/basePropertyDeep":380,"../internal/isKey":
|
46295
|
+
},{"../internal/baseProperty":379,"../internal/basePropertyDeep":380,"../internal/isKey":412}],450:[function(require,module,exports){
|
46332
46296
|
module.exports = minimatch
|
46333
46297
|
minimatch.Minimatch = Minimatch
|
46334
46298
|
|
@@ -47197,7 +47161,7 @@ function regExpEscape (s) {
|
|
47197
47161
|
return s.replace(/[-[\]{}()*+?.,\\^$|#\s]/g, '\\$&')
|
47198
47162
|
}
|
47199
47163
|
|
47200
|
-
},{"brace-expansion":
|
47164
|
+
},{"brace-expansion":451,"path":199}],451:[function(require,module,exports){
|
47201
47165
|
var concatMap = require('concat-map');
|
47202
47166
|
var balanced = require('balanced-match');
|
47203
47167
|
|
@@ -47390,7 +47354,7 @@ function expand(str, isTop) {
|
|
47390
47354
|
}
|
47391
47355
|
|
47392
47356
|
|
47393
|
-
},{"balanced-match":
|
47357
|
+
},{"balanced-match":452,"concat-map":453}],452:[function(require,module,exports){
|
47394
47358
|
module.exports = balanced;
|
47395
47359
|
function balanced(a, b, str) {
|
47396
47360
|
var bal = 0;
|
@@ -47430,7 +47394,7 @@ function balanced(a, b, str) {
|
|
47430
47394
|
}
|
47431
47395
|
}
|
47432
47396
|
|
47433
|
-
},{}],
|
47397
|
+
},{}],453:[function(require,module,exports){
|
47434
47398
|
module.exports = function (xs, fn) {
|
47435
47399
|
var res = [];
|
47436
47400
|
for (var i = 0; i < xs.length; i++) {
|
@@ -47445,7 +47409,7 @@ var isArray = Array.isArray || function (xs) {
|
|
47445
47409
|
return Object.prototype.toString.call(xs) === '[object Array]';
|
47446
47410
|
};
|
47447
47411
|
|
47448
|
-
},{}],
|
47412
|
+
},{}],454:[function(require,module,exports){
|
47449
47413
|
(function (process){
|
47450
47414
|
'use strict';
|
47451
47415
|
|
@@ -47469,7 +47433,7 @@ module.exports.posix = posix;
|
|
47469
47433
|
module.exports.win32 = win32;
|
47470
47434
|
|
47471
47435
|
}).call(this,require('_process'))
|
47472
|
-
},{"_process":200}],
|
47436
|
+
},{"_process":200}],455:[function(require,module,exports){
|
47473
47437
|
"use strict";
|
47474
47438
|
|
47475
47439
|
var originalObject = Object;
|
@@ -47600,7 +47564,7 @@ function makeAccessor(secretCreatorFn) {
|
|
47600
47564
|
|
47601
47565
|
defProp(exports, "makeAccessor", makeAccessor);
|
47602
47566
|
|
47603
|
-
},{}],
|
47567
|
+
},{}],456:[function(require,module,exports){
|
47604
47568
|
/**
|
47605
47569
|
* Copyright (c) 2014, Facebook, Inc.
|
47606
47570
|
* All rights reserved.
|
@@ -47626,6 +47590,9 @@ function Emitter(contextId) {
|
|
47626
47590
|
assert.ok(this instanceof Emitter);
|
47627
47591
|
n.Identifier.assert(contextId);
|
47628
47592
|
|
47593
|
+
// Used to generate unique temporary names.
|
47594
|
+
this.nextTempId = 0;
|
47595
|
+
|
47629
47596
|
Object.defineProperties(this, {
|
47630
47597
|
// In order to make sure the context object does not collide with
|
47631
47598
|
// anything in the local scope, we might have to rename it, so we
|
@@ -47830,9 +47797,8 @@ Ep.jumpIfNot = function(test, toLoc) {
|
|
47830
47797
|
// the context object, which is presumed to coexist peacefully with all
|
47831
47798
|
// other local variables, and since we just increment `nextTempId`
|
47832
47799
|
// monotonically, uniqueness is assured.
|
47833
|
-
var nextTempId = 0;
|
47834
47800
|
Ep.makeTempVar = function() {
|
47835
|
-
return this.contextProperty("t" + nextTempId++);
|
47801
|
+
return this.contextProperty("t" + this.nextTempId++);
|
47836
47802
|
};
|
47837
47803
|
|
47838
47804
|
Ep.getContextFunction = function(id) {
|
@@ -48791,7 +48757,7 @@ Ep.explodeExpression = function(path, ignoreResult) {
|
|
48791
48757
|
}
|
48792
48758
|
};
|
48793
48759
|
|
48794
|
-
},{"./leap":
|
48760
|
+
},{"./leap":458,"./meta":459,"./util":460,"assert":190,"recast":489}],457:[function(require,module,exports){
|
48795
48761
|
/**
|
48796
48762
|
* Copyright (c) 2014, Facebook, Inc.
|
48797
48763
|
* All rights reserved.
|
@@ -48946,7 +48912,7 @@ exports.hoist = function(funPath) {
|
|
48946
48912
|
return b.variableDeclaration("var", declarations);
|
48947
48913
|
};
|
48948
48914
|
|
48949
|
-
},{"assert":190,"recast":
|
48915
|
+
},{"assert":190,"recast":489}],458:[function(require,module,exports){
|
48950
48916
|
/**
|
48951
48917
|
* Copyright (c) 2014, Facebook, Inc.
|
48952
48918
|
* All rights reserved.
|
@@ -49125,7 +49091,7 @@ LMp.getContinueLoc = function(label) {
|
|
49125
49091
|
return this._findLeapLocation("continueLoc", label);
|
49126
49092
|
};
|
49127
49093
|
|
49128
|
-
},{"./emit":
|
49094
|
+
},{"./emit":456,"assert":190,"recast":489,"util":216}],459:[function(require,module,exports){
|
49129
49095
|
/**
|
49130
49096
|
* Copyright (c) 2014, Facebook, Inc.
|
49131
49097
|
* All rights reserved.
|
@@ -49227,7 +49193,7 @@ for (var type in leapTypes) {
|
|
49227
49193
|
exports.hasSideEffects = makePredicate("hasSideEffects", sideEffectTypes);
|
49228
49194
|
exports.containsLeap = makePredicate("containsLeap", leapTypes);
|
49229
49195
|
|
49230
|
-
},{"assert":190,"private":
|
49196
|
+
},{"assert":190,"private":455,"recast":489}],460:[function(require,module,exports){
|
49231
49197
|
/**
|
49232
49198
|
* Copyright (c) 2014, Facebook, Inc.
|
49233
49199
|
* All rights reserved.
|
@@ -49329,7 +49295,7 @@ exports.isReference = function(path, name) {
|
|
49329
49295
|
}
|
49330
49296
|
};
|
49331
49297
|
|
49332
|
-
},{"assert":190,"recast":
|
49298
|
+
},{"assert":190,"recast":489}],461:[function(require,module,exports){
|
49333
49299
|
/**
|
49334
49300
|
* Copyright (c) 2014, Facebook, Inc.
|
49335
49301
|
* All rights reserved.
|
@@ -49724,7 +49690,7 @@ var awaitVisitor = types.PathVisitor.fromMethodsObject({
|
|
49724
49690
|
}
|
49725
49691
|
});
|
49726
49692
|
|
49727
|
-
},{"..":
|
49693
|
+
},{"..":462,"./emit":456,"./hoist":457,"./util":460,"assert":190,"fs":189,"private":455,"recast":489}],462:[function(require,module,exports){
|
49728
49694
|
(function (__dirname){
|
49729
49695
|
/**
|
49730
49696
|
* Copyright (c) 2014, Facebook, Inc.
|
@@ -49885,7 +49851,7 @@ exports.compile = compile;
|
|
49885
49851
|
exports.transform = transform;
|
49886
49852
|
|
49887
49853
|
}).call(this,"/node_modules/regenerator")
|
49888
|
-
},{"./lib/util":
|
49854
|
+
},{"./lib/util":460,"./lib/visit":461,"./runtime":492,"assert":190,"defs":463,"esprima-fb":478,"fs":189,"path":199,"recast":489,"through":491}],463:[function(require,module,exports){
|
49889
49855
|
"use strict";
|
49890
49856
|
|
49891
49857
|
var assert = require("assert");
|
@@ -50567,7 +50533,7 @@ function run(src, config) {
|
|
50567
50533
|
|
50568
50534
|
module.exports = run;
|
50569
50535
|
|
50570
|
-
},{"./error":
|
50536
|
+
},{"./error":464,"./jshint_globals/vars.js":465,"./options":466,"./scope":467,"./stats":468,"alter":469,"assert":190,"ast-traverse":471,"breakable":472,"simple-fmt":474,"simple-is":475,"stringmap":476,"stringset":477}],464:[function(require,module,exports){
|
50571
50537
|
"use strict";
|
50572
50538
|
|
50573
50539
|
var fmt = require("simple-fmt");
|
@@ -50597,7 +50563,7 @@ error.reset();
|
|
50597
50563
|
|
50598
50564
|
module.exports = error;
|
50599
50565
|
|
50600
|
-
},{"assert":190,"simple-fmt":
|
50566
|
+
},{"assert":190,"simple-fmt":474}],465:[function(require,module,exports){
|
50601
50567
|
// jshint -W001
|
50602
50568
|
|
50603
50569
|
"use strict";
|
@@ -50994,7 +50960,7 @@ exports.yui = {
|
|
50994
50960
|
};
|
50995
50961
|
|
50996
50962
|
|
50997
|
-
},{}],
|
50963
|
+
},{}],466:[function(require,module,exports){
|
50998
50964
|
// default configuration
|
50999
50965
|
|
51000
50966
|
module.exports = {
|
@@ -51004,7 +50970,7 @@ module.exports = {
|
|
51004
50970
|
parse: require("esprima-fb").parse,
|
51005
50971
|
};
|
51006
50972
|
|
51007
|
-
},{"esprima-fb":
|
50973
|
+
},{"esprima-fb":473}],467:[function(require,module,exports){
|
51008
50974
|
"use strict";
|
51009
50975
|
|
51010
50976
|
var assert = require("assert");
|
@@ -51230,7 +51196,7 @@ Scope.prototype.traverse = function(options) {
|
|
51230
51196
|
|
51231
51197
|
module.exports = Scope;
|
51232
51198
|
|
51233
|
-
},{"./error":
|
51199
|
+
},{"./error":464,"./options":466,"assert":190,"simple-fmt":474,"simple-is":475,"stringmap":476,"stringset":477}],468:[function(require,module,exports){
|
51234
51200
|
var fmt = require("simple-fmt");
|
51235
51201
|
var is = require("simple-is");
|
51236
51202
|
var assert = require("assert");
|
@@ -51282,7 +51248,7 @@ Stats.prototype.toString = function() {
|
|
51282
51248
|
|
51283
51249
|
module.exports = Stats;
|
51284
51250
|
|
51285
|
-
},{"assert":190,"simple-fmt":
|
51251
|
+
},{"assert":190,"simple-fmt":474,"simple-is":475}],469:[function(require,module,exports){
|
51286
51252
|
// alter.js
|
51287
51253
|
// MIT licensed, see LICENSE file
|
51288
51254
|
// Copyright (c) 2013 Olov Lassus <olov.lassus@gmail.com>
|
@@ -51329,7 +51295,7 @@ if (typeof module !== "undefined" && typeof module.exports !== "undefined") {
|
|
51329
51295
|
module.exports = alter;
|
51330
51296
|
}
|
51331
51297
|
|
51332
|
-
},{"assert":190,"stable":
|
51298
|
+
},{"assert":190,"stable":470}],470:[function(require,module,exports){
|
51333
51299
|
//! stable.js 0.1.5, https://github.com/Two-Screen/stable
|
51334
51300
|
//! © 2014 Angry Bytes and contributors. MIT licensed.
|
51335
51301
|
|
@@ -51442,7 +51408,7 @@ else {
|
|
51442
51408
|
|
51443
51409
|
})();
|
51444
51410
|
|
51445
|
-
},{}],
|
51411
|
+
},{}],471:[function(require,module,exports){
|
51446
51412
|
function traverse(root, options) {
|
51447
51413
|
"use strict";
|
51448
51414
|
|
@@ -51491,7 +51457,7 @@ if (typeof module !== "undefined" && typeof module.exports !== "undefined") {
|
|
51491
51457
|
module.exports = traverse;
|
51492
51458
|
}
|
51493
51459
|
|
51494
|
-
},{}],
|
51460
|
+
},{}],472:[function(require,module,exports){
|
51495
51461
|
// breakable.js
|
51496
51462
|
// MIT licensed, see LICENSE file
|
51497
51463
|
// Copyright (c) 2013-2014 Olov Lassus <olov.lassus@gmail.com>
|
@@ -51529,7 +51495,7 @@ if (typeof module !== "undefined" && typeof module.exports !== "undefined") {
|
|
51529
51495
|
module.exports = breakable;
|
51530
51496
|
}
|
51531
51497
|
|
51532
|
-
},{}],
|
51498
|
+
},{}],473:[function(require,module,exports){
|
51533
51499
|
/*
|
51534
51500
|
Copyright (C) 2013 Ariya Hidayat <ariya.hidayat@gmail.com>
|
51535
51501
|
Copyright (C) 2013 Thaddee Tyl <thaddee.tyl@gmail.com>
|
@@ -59147,7 +59113,7 @@ parseYieldExpression: true, parseAwaitExpression: true
|
|
59147
59113
|
}));
|
59148
59114
|
/* vim: set sw=4 ts=4 et tw=80 : */
|
59149
59115
|
|
59150
|
-
},{}],
|
59116
|
+
},{}],474:[function(require,module,exports){
|
59151
59117
|
// simple-fmt.js
|
59152
59118
|
// MIT licensed, see LICENSE file
|
59153
59119
|
// Copyright (c) 2013 Olov Lassus <olov.lassus@gmail.com>
|
@@ -59182,7 +59148,7 @@ if (typeof module !== "undefined" && typeof module.exports !== "undefined") {
|
|
59182
59148
|
module.exports = fmt;
|
59183
59149
|
}
|
59184
59150
|
|
59185
|
-
},{}],
|
59151
|
+
},{}],475:[function(require,module,exports){
|
59186
59152
|
// simple-is.js
|
59187
59153
|
// MIT licensed, see LICENSE file
|
59188
59154
|
// Copyright (c) 2013 Olov Lassus <olov.lassus@gmail.com>
|
@@ -59240,7 +59206,7 @@ if (typeof module !== "undefined" && typeof module.exports !== "undefined") {
|
|
59240
59206
|
module.exports = is;
|
59241
59207
|
}
|
59242
59208
|
|
59243
|
-
},{}],
|
59209
|
+
},{}],476:[function(require,module,exports){
|
59244
59210
|
// stringmap.js
|
59245
59211
|
// MIT licensed, see LICENSE file
|
59246
59212
|
// Copyright (c) 2013 Olov Lassus <olov.lassus@gmail.com>
|
@@ -59486,7 +59452,7 @@ if (typeof module !== "undefined" && typeof module.exports !== "undefined") {
|
|
59486
59452
|
module.exports = StringMap;
|
59487
59453
|
}
|
59488
59454
|
|
59489
|
-
},{}],
|
59455
|
+
},{}],477:[function(require,module,exports){
|
59490
59456
|
// stringset.js
|
59491
59457
|
// MIT licensed, see LICENSE file
|
59492
59458
|
// Copyright (c) 2013 Olov Lassus <olov.lassus@gmail.com>
|
@@ -59669,7 +59635,7 @@ if (typeof module !== "undefined" && typeof module.exports !== "undefined") {
|
|
59669
59635
|
module.exports = StringSet;
|
59670
59636
|
}
|
59671
59637
|
|
59672
|
-
},{}],
|
59638
|
+
},{}],478:[function(require,module,exports){
|
59673
59639
|
/*
|
59674
59640
|
Copyright (C) 2013 Ariya Hidayat <ariya.hidayat@gmail.com>
|
59675
59641
|
Copyright (C) 2013 Thaddee Tyl <thaddee.tyl@gmail.com>
|
@@ -67375,7 +67341,7 @@ if (typeof module !== "undefined" && typeof module.exports !== "undefined") {
|
|
67375
67341
|
}));
|
67376
67342
|
/* vim: set sw=4 ts=4 et tw=80 : */
|
67377
67343
|
|
67378
|
-
},{}],
|
67344
|
+
},{}],479:[function(require,module,exports){
|
67379
67345
|
var assert = require("assert");
|
67380
67346
|
var types = require("./types");
|
67381
67347
|
var n = types.namedTypes;
|
@@ -67727,7 +67693,7 @@ exports.printComments = function(path, print) {
|
|
67727
67693
|
return concat(leadingParts);
|
67728
67694
|
};
|
67729
67695
|
|
67730
|
-
},{"./lines":
|
67696
|
+
},{"./lines":481,"./types":487,"./util":488,"assert":190,"private":455}],480:[function(require,module,exports){
|
67731
67697
|
var assert = require("assert");
|
67732
67698
|
var types = require("./types");
|
67733
67699
|
var n = types.namedTypes;
|
@@ -68197,7 +68163,7 @@ FPp.firstInStatement = function() {
|
|
68197
68163
|
return true;
|
68198
68164
|
};
|
68199
68165
|
|
68200
|
-
},{"./types":
|
68166
|
+
},{"./types":487,"assert":190}],481:[function(require,module,exports){
|
68201
68167
|
var assert = require("assert");
|
68202
68168
|
var sourceMap = require("source-map");
|
68203
68169
|
var normalizeOptions = require("./options").normalize;
|
@@ -69045,7 +69011,7 @@ Lp.concat = function(other) {
|
|
69045
69011
|
// Lines.prototype will be fully populated.
|
69046
69012
|
var emptyLines = fromString("");
|
69047
69013
|
|
69048
|
-
},{"./mapping":
|
69014
|
+
},{"./mapping":482,"./options":483,"./types":487,"./util":488,"assert":190,"private":455,"source-map":503}],482:[function(require,module,exports){
|
69049
69015
|
var assert = require("assert");
|
69050
69016
|
var types = require("./types");
|
69051
69017
|
var isString = types.builtInTypes.string;
|
@@ -69324,7 +69290,7 @@ function skipChars(
|
|
69324
69290
|
return sourceCursor;
|
69325
69291
|
}
|
69326
69292
|
|
69327
|
-
},{"./lines":
|
69293
|
+
},{"./lines":481,"./types":487,"./util":488,"assert":190}],483:[function(require,module,exports){
|
69328
69294
|
var defaults = {
|
69329
69295
|
// If you want to use a different branch of esprima, or any other
|
69330
69296
|
// module that supports a .parse function, pass that module object to
|
@@ -69411,7 +69377,7 @@ exports.normalize = function(options) {
|
|
69411
69377
|
};
|
69412
69378
|
};
|
69413
69379
|
|
69414
|
-
},{"esprima-fb":
|
69380
|
+
},{"esprima-fb":490}],484:[function(require,module,exports){
|
69415
69381
|
var assert = require("assert");
|
69416
69382
|
var types = require("./types");
|
69417
69383
|
var n = types.namedTypes;
|
@@ -69539,7 +69505,7 @@ TCp.copy = function(node) {
|
|
69539
69505
|
return copy;
|
69540
69506
|
};
|
69541
69507
|
|
69542
|
-
},{"./comments":
|
69508
|
+
},{"./comments":479,"./lines":481,"./options":483,"./patcher":485,"./types":487,"./util":488,"assert":190}],485:[function(require,module,exports){
|
69543
69509
|
var assert = require("assert");
|
69544
69510
|
var linesModule = require("./lines");
|
69545
69511
|
var types = require("./types");
|
@@ -70021,7 +69987,7 @@ function findChildReprints(newPath, oldPath, reprints) {
|
|
70021
69987
|
return true;
|
70022
69988
|
}
|
70023
69989
|
|
70024
|
-
},{"./fast-path":
|
69990
|
+
},{"./fast-path":480,"./lines":481,"./types":487,"./util":488,"assert":190}],486:[function(require,module,exports){
|
70025
69991
|
var assert = require("assert");
|
70026
69992
|
var sourceMap = require("source-map");
|
70027
69993
|
var printComments = require("./comments").printComments;
|
@@ -71567,7 +71533,7 @@ function maybeAddSemicolon(lines) {
|
|
71567
71533
|
return lines;
|
71568
71534
|
}
|
71569
71535
|
|
71570
|
-
},{"./comments":
|
71536
|
+
},{"./comments":479,"./fast-path":480,"./lines":481,"./options":483,"./patcher":485,"./types":487,"./util":488,"assert":190,"source-map":503}],487:[function(require,module,exports){
|
71571
71537
|
var types = require("ast-types");
|
71572
71538
|
var def = types.Type.def;
|
71573
71539
|
|
@@ -71580,7 +71546,7 @@ types.finalize();
|
|
71580
71546
|
|
71581
71547
|
module.exports = types;
|
71582
71548
|
|
71583
|
-
},{"ast-types":188}],
|
71549
|
+
},{"ast-types":188}],488:[function(require,module,exports){
|
71584
71550
|
var assert = require("assert");
|
71585
71551
|
var types = require("./types");
|
71586
71552
|
var getFieldValue = types.getFieldValue;
|
@@ -71734,7 +71700,7 @@ exports.fixFaultyLocations = function(node) {
|
|
71734
71700
|
}
|
71735
71701
|
};
|
71736
71702
|
|
71737
|
-
},{"./types":
|
71703
|
+
},{"./types":487,"assert":190,"source-map":503}],489:[function(require,module,exports){
|
71738
71704
|
(function (process){
|
71739
71705
|
var types = require("./lib/types");
|
71740
71706
|
var parse = require("./lib/parser").parse;
|
@@ -71837,7 +71803,7 @@ Object.defineProperties(exports, {
|
|
71837
71803
|
});
|
71838
71804
|
|
71839
71805
|
}).call(this,require('_process'))
|
71840
|
-
},{"./lib/parser":
|
71806
|
+
},{"./lib/parser":484,"./lib/printer":486,"./lib/types":487,"_process":200,"fs":189}],490:[function(require,module,exports){
|
71841
71807
|
/*
|
71842
71808
|
Copyright (C) 2013 Ariya Hidayat <ariya.hidayat@gmail.com>
|
71843
71809
|
Copyright (C) 2013 Thaddee Tyl <thaddee.tyl@gmail.com>
|
@@ -79599,7 +79565,7 @@ Object.defineProperties(exports, {
|
|
79599
79565
|
}));
|
79600
79566
|
/* vim: set sw=4 ts=4 et tw=80 : */
|
79601
79567
|
|
79602
|
-
},{}],
|
79568
|
+
},{}],491:[function(require,module,exports){
|
79603
79569
|
(function (process){
|
79604
79570
|
var Stream = require('stream')
|
79605
79571
|
|
@@ -79711,7 +79677,7 @@ function through (write, end, opts) {
|
|
79711
79677
|
|
79712
79678
|
|
79713
79679
|
}).call(this,require('_process'))
|
79714
|
-
},{"_process":200,"stream":212}],
|
79680
|
+
},{"_process":200,"stream":212}],492:[function(require,module,exports){
|
79715
79681
|
(function (global){
|
79716
79682
|
/**
|
79717
79683
|
* Copyright (c) 2014, Facebook, Inc.
|
@@ -80279,7 +80245,7 @@ function through (write, end, opts) {
|
|
80279
80245
|
);
|
80280
80246
|
|
80281
80247
|
}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
80282
|
-
},{}],
|
80248
|
+
},{}],493:[function(require,module,exports){
|
80283
80249
|
// Generated by `/scripts/character-class-escape-sets.js`. Do not edit.
|
80284
80250
|
var regenerate = require('regenerate');
|
80285
80251
|
|
@@ -80385,7 +80351,7 @@ exports.UNICODE_IGNORE_CASE = {
|
|
80385
80351
|
.addRange(0x7B, 0x10FFFF)
|
80386
80352
|
};
|
80387
80353
|
|
80388
|
-
},{"regenerate":
|
80354
|
+
},{"regenerate":495}],494:[function(require,module,exports){
|
80389
80355
|
module.exports={
|
80390
80356
|
"75": 8490,
|
80391
80357
|
"83": 383,
|
@@ -80581,7 +80547,7 @@ module.exports={
|
|
80581
80547
|
"71903": 71871
|
80582
80548
|
}
|
80583
80549
|
|
80584
|
-
},{}],
|
80550
|
+
},{}],495:[function(require,module,exports){
|
80585
80551
|
(function (global){
|
80586
80552
|
/*! https://mths.be/regenerate v1.2.0 by @mathias | MIT license */
|
80587
80553
|
;(function(root) {
|
@@ -81743,7 +81709,7 @@ module.exports={
|
|
81743
81709
|
}(this));
|
81744
81710
|
|
81745
81711
|
}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
81746
|
-
},{}],
|
81712
|
+
},{}],496:[function(require,module,exports){
|
81747
81713
|
(function (global){
|
81748
81714
|
/*!
|
81749
81715
|
* RegJSGen
|
@@ -82155,7 +82121,7 @@ module.exports={
|
|
82155
82121
|
}.call(this));
|
82156
82122
|
|
82157
82123
|
}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
82158
|
-
},{}],
|
82124
|
+
},{}],497:[function(require,module,exports){
|
82159
82125
|
// regjsparser
|
82160
82126
|
//
|
82161
82127
|
// ==================================================================
|
@@ -83104,7 +83070,7 @@ module.exports={
|
|
83104
83070
|
|
83105
83071
|
}());
|
83106
83072
|
|
83107
|
-
},{}],
|
83073
|
+
},{}],498:[function(require,module,exports){
|
83108
83074
|
var generate = require('regjsgen').generate;
|
83109
83075
|
var parse = require('regjsparser').parse;
|
83110
83076
|
var regenerate = require('regenerate');
|
@@ -83299,7 +83265,7 @@ module.exports = function(pattern, flags) {
|
|
83299
83265
|
return generate(tree);
|
83300
83266
|
};
|
83301
83267
|
|
83302
|
-
},{"./data/character-class-escape-sets.js":
|
83268
|
+
},{"./data/character-class-escape-sets.js":493,"./data/iu-mappings.json":494,"regenerate":495,"regjsgen":496,"regjsparser":497}],499:[function(require,module,exports){
|
83303
83269
|
'use strict';
|
83304
83270
|
var isFinite = require('is-finite');
|
83305
83271
|
|
@@ -83325,13 +83291,13 @@ module.exports = function (str, n) {
|
|
83325
83291
|
return ret;
|
83326
83292
|
};
|
83327
83293
|
|
83328
|
-
},{"is-finite":
|
83294
|
+
},{"is-finite":500}],500:[function(require,module,exports){
|
83329
83295
|
arguments[4][327][0].apply(exports,arguments)
|
83330
|
-
},{"dup":327}],
|
83296
|
+
},{"dup":327}],501:[function(require,module,exports){
|
83331
83297
|
'use strict';
|
83332
83298
|
module.exports = /^#!.*/;
|
83333
83299
|
|
83334
|
-
},{}],
|
83300
|
+
},{}],502:[function(require,module,exports){
|
83335
83301
|
'use strict';
|
83336
83302
|
module.exports = function (str) {
|
83337
83303
|
var isExtendedLengthPath = /^\\\\\?\\/.test(str);
|
@@ -83344,7 +83310,7 @@ module.exports = function (str) {
|
|
83344
83310
|
return str.replace(/\\/g, '/');
|
83345
83311
|
};
|
83346
83312
|
|
83347
|
-
},{}],
|
83313
|
+
},{}],503:[function(require,module,exports){
|
83348
83314
|
/*
|
83349
83315
|
* Copyright 2009-2011 Mozilla Foundation and contributors
|
83350
83316
|
* Licensed under the New BSD license. See LICENSE.txt or:
|
@@ -83354,7 +83320,7 @@ exports.SourceMapGenerator = require('./source-map/source-map-generator').Source
|
|
83354
83320
|
exports.SourceMapConsumer = require('./source-map/source-map-consumer').SourceMapConsumer;
|
83355
83321
|
exports.SourceNode = require('./source-map/source-node').SourceNode;
|
83356
83322
|
|
83357
|
-
},{"./source-map/source-map-consumer":
|
83323
|
+
},{"./source-map/source-map-consumer":509,"./source-map/source-map-generator":510,"./source-map/source-node":511}],504:[function(require,module,exports){
|
83358
83324
|
/* -*- Mode: js; js-indent-level: 2; -*- */
|
83359
83325
|
/*
|
83360
83326
|
* Copyright 2011 Mozilla Foundation and contributors
|
@@ -83453,7 +83419,7 @@ define(function (require, exports, module) {
|
|
83453
83419
|
|
83454
83420
|
});
|
83455
83421
|
|
83456
|
-
},{"./util":
|
83422
|
+
},{"./util":512,"amdefine":513}],505:[function(require,module,exports){
|
83457
83423
|
/* -*- Mode: js; js-indent-level: 2; -*- */
|
83458
83424
|
/*
|
83459
83425
|
* Copyright 2011 Mozilla Foundation and contributors
|
@@ -83596,7 +83562,7 @@ define(function (require, exports, module) {
|
|
83596
83562
|
|
83597
83563
|
});
|
83598
83564
|
|
83599
|
-
},{"./base64":
|
83565
|
+
},{"./base64":506,"amdefine":513}],506:[function(require,module,exports){
|
83600
83566
|
/* -*- Mode: js; js-indent-level: 2; -*- */
|
83601
83567
|
/*
|
83602
83568
|
* Copyright 2011 Mozilla Foundation and contributors
|
@@ -83640,7 +83606,7 @@ define(function (require, exports, module) {
|
|
83640
83606
|
|
83641
83607
|
});
|
83642
83608
|
|
83643
|
-
},{"amdefine":
|
83609
|
+
},{"amdefine":513}],507:[function(require,module,exports){
|
83644
83610
|
/* -*- Mode: js; js-indent-level: 2; -*- */
|
83645
83611
|
/*
|
83646
83612
|
* Copyright 2011 Mozilla Foundation and contributors
|
@@ -83759,7 +83725,7 @@ define(function (require, exports, module) {
|
|
83759
83725
|
|
83760
83726
|
});
|
83761
83727
|
|
83762
|
-
},{"amdefine":
|
83728
|
+
},{"amdefine":513}],508:[function(require,module,exports){
|
83763
83729
|
/* -*- Mode: js; js-indent-level: 2; -*- */
|
83764
83730
|
/*
|
83765
83731
|
* Copyright 2014 Mozilla Foundation and contributors
|
@@ -83847,7 +83813,7 @@ define(function (require, exports, module) {
|
|
83847
83813
|
|
83848
83814
|
});
|
83849
83815
|
|
83850
|
-
},{"./util":
|
83816
|
+
},{"./util":512,"amdefine":513}],509:[function(require,module,exports){
|
83851
83817
|
/* -*- Mode: js; js-indent-level: 2; -*- */
|
83852
83818
|
/*
|
83853
83819
|
* Copyright 2011 Mozilla Foundation and contributors
|
@@ -84807,7 +84773,7 @@ define(function (require, exports, module) {
|
|
84807
84773
|
|
84808
84774
|
});
|
84809
84775
|
|
84810
|
-
},{"./array-set":
|
84776
|
+
},{"./array-set":504,"./base64-vlq":505,"./binary-search":507,"./util":512,"amdefine":513}],510:[function(require,module,exports){
|
84811
84777
|
/* -*- Mode: js; js-indent-level: 2; -*- */
|
84812
84778
|
/*
|
84813
84779
|
* Copyright 2011 Mozilla Foundation and contributors
|
@@ -85209,7 +85175,7 @@ define(function (require, exports, module) {
|
|
85209
85175
|
|
85210
85176
|
});
|
85211
85177
|
|
85212
|
-
},{"./array-set":
|
85178
|
+
},{"./array-set":504,"./base64-vlq":505,"./mapping-list":508,"./util":512,"amdefine":513}],511:[function(require,module,exports){
|
85213
85179
|
/* -*- Mode: js; js-indent-level: 2; -*- */
|
85214
85180
|
/*
|
85215
85181
|
* Copyright 2011 Mozilla Foundation and contributors
|
@@ -85625,7 +85591,7 @@ define(function (require, exports, module) {
|
|
85625
85591
|
|
85626
85592
|
});
|
85627
85593
|
|
85628
|
-
},{"./source-map-generator":
|
85594
|
+
},{"./source-map-generator":510,"./util":512,"amdefine":513}],512:[function(require,module,exports){
|
85629
85595
|
/* -*- Mode: js; js-indent-level: 2; -*- */
|
85630
85596
|
/*
|
85631
85597
|
* Copyright 2011 Mozilla Foundation and contributors
|
@@ -85946,7 +85912,7 @@ define(function (require, exports, module) {
|
|
85946
85912
|
|
85947
85913
|
});
|
85948
85914
|
|
85949
|
-
},{"amdefine":
|
85915
|
+
},{"amdefine":513}],513:[function(require,module,exports){
|
85950
85916
|
(function (process,__filename){
|
85951
85917
|
/** vim: et:ts=4:sw=4:sts=4
|
85952
85918
|
* @license amdefine 0.1.0 Copyright (c) 2011, The Dojo Foundation All Rights Reserved.
|
@@ -86249,7 +86215,7 @@ function amdefine(module, requireFn) {
|
|
86249
86215
|
module.exports = amdefine;
|
86250
86216
|
|
86251
86217
|
}).call(this,require('_process'),"/node_modules/source-map/node_modules/amdefine/amdefine.js")
|
86252
|
-
},{"_process":200,"path":199}],
|
86218
|
+
},{"_process":200,"path":199}],514:[function(require,module,exports){
|
86253
86219
|
/*!
|
86254
86220
|
strip-json-comments
|
86255
86221
|
Strip comments from JSON. Lets you use comments in your JSON files!
|
@@ -86318,7 +86284,7 @@ module.exports = amdefine;
|
|
86318
86284
|
}
|
86319
86285
|
})();
|
86320
86286
|
|
86321
|
-
},{}],
|
86287
|
+
},{}],515:[function(require,module,exports){
|
86322
86288
|
'use strict';
|
86323
86289
|
module.exports = function toFastProperties(obj) {
|
86324
86290
|
/*jshint -W027*/
|
@@ -86329,17 +86295,17 @@ module.exports = function toFastProperties(obj) {
|
|
86329
86295
|
eval(obj);
|
86330
86296
|
};
|
86331
86297
|
|
86332
|
-
},{}],
|
86298
|
+
},{}],516:[function(require,module,exports){
|
86333
86299
|
'use strict';
|
86334
86300
|
module.exports = function (str) {
|
86335
86301
|
return str.replace(/[\s\uFEFF\xA0]+$/g, '');
|
86336
86302
|
};
|
86337
86303
|
|
86338
|
-
},{}],
|
86304
|
+
},{}],517:[function(require,module,exports){
|
86339
86305
|
module.exports={
|
86340
86306
|
"name": "babel-core",
|
86341
|
-
"description": "
|
86342
|
-
"version": "5.4.
|
86307
|
+
"description": "A compiler for writing next generation JavaScript",
|
86308
|
+
"version": "5.4.4",
|
86343
86309
|
"author": "Sebastian McKenzie <sebmck@gmail.com>",
|
86344
86310
|
"homepage": "https://babeljs.io/",
|
86345
86311
|
"license": "MIT",
|
@@ -86379,6 +86345,7 @@ module.exports={
|
|
86379
86345
|
"esutils": "^2.0.0",
|
86380
86346
|
"fs-readdir-recursive": "^0.1.0",
|
86381
86347
|
"globals": "^6.4.0",
|
86348
|
+
"home-or-tmp": "^1.0.0",
|
86382
86349
|
"is-integer": "^1.0.4",
|
86383
86350
|
"js-tokens": "1.0.0",
|
86384
86351
|
"leven": "^1.0.1",
|
@@ -86398,8 +86365,7 @@ module.exports={
|
|
86398
86365
|
"source-map-support": "^0.2.10",
|
86399
86366
|
"strip-json-comments": "^1.0.2",
|
86400
86367
|
"to-fast-properties": "^1.0.0",
|
86401
|
-
"trim-right": "^1.0.0"
|
86402
|
-
"user-home": "^1.1.1"
|
86368
|
+
"trim-right": "^1.0.0"
|
86403
86369
|
},
|
86404
86370
|
"devDependencies": {
|
86405
86371
|
"babel": "5.3.1",
|
@@ -86416,7 +86382,7 @@ module.exports={
|
|
86416
86382
|
}
|
86417
86383
|
}
|
86418
86384
|
|
86419
|
-
},{}],
|
86385
|
+
},{}],518:[function(require,module,exports){
|
86420
86386
|
module.exports={"abstract-expression-call":{"loc":null,"start":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"expression":{"loc":null,"start":null,"range":null,"callee":{"loc":null,"start":null,"range":null,"object":{"loc":null,"start":null,"range":null,"callee":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"PROPERTY","type":"Identifier","end":null},"property":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"Symbol","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"referenceGet","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"computed":true,"type":"MemberExpression","end":null,"_paths":null},"arguments":[{"start":null,"loc":null,"range":null,"name":"OBJECT","type":"Identifier","end":null}],"type":"CallExpression","end":null,"_paths":null},"property":{"start":null,"loc":null,"range":null,"name":"call","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"arguments":[{"start":null,"loc":null,"range":null,"name":"OBJECT","type":"Identifier","end":null}],"type":"CallExpression","end":null,"_paths":null},"type":"ExpressionStatement","end":null,"_paths":null}],"type":"Program","end":null},"abstract-expression-delete":{"loc":null,"start":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"expression":{"loc":null,"start":null,"range":null,"callee":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"PROPERTY","type":"Identifier","end":null},"property":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"Symbol","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"referenceDelete","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"computed":true,"type":"MemberExpression","end":null,"_paths":null},"arguments":[{"start":null,"loc":null,"range":null,"name":"OBJECT","type":"Identifier","end":null}],"type":"CallExpression","end":null,"_paths":null},"type":"ExpressionStatement","end":null,"_paths":null}],"type":"Program","end":null},"abstract-expression-get":{"loc":null,"start":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"expression":{"loc":null,"start":null,"range":null,"callee":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"PROPERTY","type":"Identifier","end":null},"property":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"Symbol","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"referenceGet","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"computed":true,"type":"MemberExpression","end":null,"_paths":null},"arguments":[{"start":null,"loc":null,"range":null,"name":"OBJECT","type":"Identifier","end":null}],"type":"CallExpression","end":null,"_paths":null},"type":"ExpressionStatement","end":null,"_paths":null}],"type":"Program","end":null},"abstract-expression-set":{"loc":null,"start":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"expression":{"loc":null,"start":null,"range":null,"callee":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"PROPERTY","type":"Identifier","end":null},"property":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"Symbol","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"referenceSet","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"computed":true,"type":"MemberExpression","end":null,"_paths":null},"arguments":[{"start":null,"loc":null,"range":null,"name":"OBJECT","type":"Identifier","end":null},{"start":null,"loc":null,"range":null,"name":"VALUE","type":"Identifier","end":null}],"type":"CallExpression","end":null,"_paths":null},"type":"ExpressionStatement","end":null,"_paths":null}],"type":"Program","end":null},"array-comprehension-container":{"loc":null,"start":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"expression":{"loc":null,"start":null,"range":null,"callee":{"start":null,"loc":null,"range":null,"id":null,"generator":false,"expression":false,"params":[],"body":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"declarations":[{"start":null,"loc":null,"range":null,"id":{"start":null,"loc":null,"range":null,"name":"KEY","type":"Identifier","end":null},"init":{"start":null,"loc":null,"range":null,"elements":[],"type":"ArrayExpression","end":null},"type":"VariableDeclarator","end":null,"_paths":null}],"kind":"var","type":"VariableDeclaration","end":null},{"start":null,"loc":null,"range":null,"argument":{"start":null,"loc":null,"range":null,"name":"KEY","type":"Identifier","end":null},"type":"ReturnStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null},"type":"FunctionExpression","end":null,"parenthesizedExpression":true,"_paths":null},"arguments":[],"type":"CallExpression","end":null,"_paths":null},"type":"ExpressionStatement","end":null,"_paths":null}],"type":"Program","end":null},"array-from":{"loc":null,"start":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"expression":{"loc":null,"start":null,"range":null,"callee":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"Array","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"from","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"arguments":[{"start":null,"loc":null,"range":null,"name":"VALUE","type":"Identifier","end":null}],"type":"CallExpression","end":null,"_paths":null},"type":"ExpressionStatement","end":null,"_paths":null}],"type":"Program","end":null},"array-push":{"loc":null,"start":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"expression":{"loc":null,"start":null,"range":null,"callee":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"KEY","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"push","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"arguments":[{"start":null,"loc":null,"range":null,"name":"STATEMENT","type":"Identifier","end":null}],"type":"CallExpression","end":null,"_paths":null},"type":"ExpressionStatement","end":null,"_paths":null}],"type":"Program","end":null},"call":{"loc":null,"start":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"expression":{"loc":null,"start":null,"range":null,"callee":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"OBJECT","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"call","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"arguments":[{"start":null,"loc":null,"range":null,"name":"CONTEXT","type":"Identifier","end":null}],"type":"CallExpression","end":null,"_paths":null},"type":"ExpressionStatement","end":null,"_paths":null}],"type":"Program","end":null},"class-decorator":{"loc":null,"start":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"expression":{"loc":null,"start":null,"range":null,"operator":"=","left":{"start":null,"loc":null,"range":null,"name":"CLASS_REF","type":"Identifier","end":null},"right":{"loc":null,"start":null,"range":null,"left":{"loc":null,"start":null,"range":null,"callee":{"start":null,"loc":null,"range":null,"name":"DECORATOR","type":"Identifier","end":null},"arguments":[{"start":null,"loc":null,"range":null,"name":"CLASS_REF","type":"Identifier","end":null}],"type":"CallExpression","end":null,"_paths":null},"operator":"||","right":{"start":null,"loc":null,"range":null,"name":"CLASS_REF","type":"Identifier","end":null},"type":"LogicalExpression","end":null,"_paths":null},"type":"AssignmentExpression","end":null,"_paths":null},"type":"ExpressionStatement","end":null,"_paths":null}],"type":"Program","end":null},"class-super-constructor-call-loose":{"loc":null,"start":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"test":{"loc":null,"start":null,"range":null,"left":{"start":null,"loc":null,"range":null,"name":"SUPER_NAME","type":"Identifier","end":null},"operator":"!=","right":{"start":null,"loc":null,"range":null,"value":null,"raw":null,"type":"Literal","end":null},"type":"BinaryExpression","end":null,"_paths":null},"consequent":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"expression":{"loc":null,"start":null,"range":null,"callee":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"SUPER_NAME","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"apply","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"arguments":[{"start":null,"loc":null,"range":null,"type":"ThisExpression","end":null},{"start":null,"loc":null,"range":null,"name":"arguments","type":"Identifier","end":null}],"type":"CallExpression","end":null,"_paths":null},"type":"ExpressionStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null},"alternate":null,"type":"IfStatement","end":null,"_paths":null}],"type":"Program","end":null},"class-super-constructor-call":{"loc":null,"start":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"test":{"loc":null,"start":null,"range":null,"left":{"start":null,"loc":null,"range":null,"name":"SUPER_NAME","type":"Identifier","end":null},"operator":"!=","right":{"start":null,"loc":null,"range":null,"value":null,"raw":null,"type":"Literal","end":null},"type":"BinaryExpression","end":null,"_paths":null},"consequent":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"expression":{"loc":null,"start":null,"range":null,"callee":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"SUPER_NAME","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"apply","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"arguments":[{"start":null,"loc":null,"range":null,"type":"ThisExpression","end":null},{"start":null,"loc":null,"range":null,"name":"arguments","type":"Identifier","end":null}],"type":"CallExpression","end":null,"_paths":null},"type":"ExpressionStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null},"alternate":null,"type":"IfStatement","end":null,"_paths":null}],"type":"Program","end":null},"class-super-native-constructor-call":{"loc":null,"start":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"test":{"loc":null,"start":null,"range":null,"left":{"start":null,"loc":null,"range":null,"name":"SUPER_NAME","type":"Identifier","end":null},"operator":"!=","right":{"start":null,"loc":null,"range":null,"value":null,"raw":null,"type":"Literal","end":null},"type":"BinaryExpression","end":null,"_paths":null},"consequent":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"declarations":[{"start":null,"loc":null,"range":null,"id":{"start":null,"loc":null,"range":null,"name":"NATIVE_REF","type":"Identifier","end":null},"init":{"start":null,"loc":null,"range":null,"callee":{"start":null,"loc":null,"range":null,"name":"SUPER_NAME","type":"Identifier","end":null},"arguments":[{"start":null,"loc":null,"range":null,"argument":{"start":null,"loc":null,"range":null,"name":"arguments","type":"Identifier","end":null},"type":"SpreadElement","end":null,"_paths":null}],"type":"NewExpression","end":null,"_paths":null},"type":"VariableDeclarator","end":null,"_paths":null}],"kind":"var","type":"VariableDeclaration","end":null},{"start":null,"loc":null,"range":null,"expression":{"loc":null,"start":null,"range":null,"operator":"=","left":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"NATIVE_REF","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"__proto__","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"right":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"CLASS_NAME","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"prototype","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"type":"AssignmentExpression","end":null,"_paths":null},"type":"ExpressionStatement","end":null,"_paths":null},{"start":null,"loc":null,"range":null,"argument":{"start":null,"loc":null,"range":null,"name":"NATIVE_REF","type":"Identifier","end":null},"type":"ReturnStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null},"alternate":null,"type":"IfStatement","end":null,"_paths":null}],"type":"Program","end":null},"default-parameter":{"loc":null,"start":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"declarations":[{"start":null,"loc":null,"range":null,"id":{"start":null,"loc":null,"range":null,"name":"VARIABLE_NAME","type":"Identifier","end":null},"init":{"loc":null,"start":null,"range":null,"test":{"loc":null,"start":null,"range":null,"left":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"ARGUMENTS","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"ARGUMENT_KEY","type":"Identifier","end":null},"computed":true,"type":"MemberExpression","end":null,"_paths":null},"operator":"===","right":{"start":null,"loc":null,"range":null,"name":"undefined","type":"Identifier","end":null},"type":"BinaryExpression","end":null,"_paths":null},"consequent":{"start":null,"loc":null,"range":null,"name":"DEFAULT_VALUE","type":"Identifier","end":null},"alternate":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"ARGUMENTS","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"ARGUMENT_KEY","type":"Identifier","end":null},"computed":true,"type":"MemberExpression","end":null,"_paths":null},"type":"ConditionalExpression","end":null,"_paths":null},"type":"VariableDeclarator","end":null,"_paths":null}],"kind":"let","type":"VariableDeclaration","end":null}],"type":"Program","end":null},"exports-assign":{"loc":null,"start":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"expression":{"loc":null,"start":null,"range":null,"operator":"=","left":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"exports","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"KEY","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"right":{"start":null,"loc":null,"range":null,"name":"VALUE","type":"Identifier","end":null},"type":"AssignmentExpression","end":null,"_paths":null},"type":"ExpressionStatement","end":null,"_paths":null}],"type":"Program","end":null},"exports-default-assign":{"loc":null,"start":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"expression":{"loc":null,"start":null,"range":null,"operator":"=","left":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"module","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"exports","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"right":{"start":null,"loc":null,"range":null,"name":"VALUE","type":"Identifier","end":null},"type":"AssignmentExpression","end":null,"_paths":null},"type":"ExpressionStatement","end":null,"_paths":null}],"type":"Program","end":null},"exports-from-assign":{"loc":null,"start":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"expression":{"loc":null,"start":null,"range":null,"callee":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"Object","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"defineProperty","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"arguments":[{"start":null,"loc":null,"range":null,"name":"exports","type":"Identifier","end":null},{"start":null,"loc":null,"range":null,"name":"ID","type":"Identifier","end":null},{"start":null,"loc":null,"range":null,"properties":[{"start":null,"loc":null,"range":null,"method":false,"shorthand":false,"computed":false,"key":{"start":null,"loc":null,"range":null,"name":"enumerable","type":"Identifier","end":null},"value":{"start":null,"loc":null,"range":null,"value":true,"raw":null,"type":"Literal","end":null},"kind":"init","type":"Property","end":null,"_paths":null},{"start":null,"loc":null,"range":null,"method":false,"shorthand":false,"computed":false,"key":{"start":null,"loc":null,"range":null,"name":"get","type":"Identifier","end":null},"value":{"start":null,"loc":null,"range":null,"id":{"start":null,"loc":null,"range":null,"name":"get","type":"Identifier","end":null},"generator":false,"expression":false,"params":[],"body":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"argument":{"start":null,"loc":null,"range":null,"name":"INIT","type":"Identifier","end":null},"type":"ReturnStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null},"type":"FunctionExpression","end":null,"_paths":null},"kind":"init","type":"Property","end":null,"_paths":null}],"type":"ObjectExpression","end":null}],"type":"CallExpression","end":null,"_paths":null},"type":"ExpressionStatement","end":null,"_paths":null}],"type":"Program","end":null},"exports-module-declaration-loose":{"loc":null,"start":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"expression":{"loc":null,"start":null,"range":null,"operator":"=","left":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"exports","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"__esModule","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"right":{"start":null,"loc":null,"range":null,"value":true,"raw":null,"type":"Literal","end":null},"type":"AssignmentExpression","end":null,"_paths":null},"type":"ExpressionStatement","end":null,"_paths":null}],"type":"Program","end":null},"exports-module-declaration":{"loc":null,"start":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"expression":{"loc":null,"start":null,"range":null,"callee":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"Object","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"defineProperty","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"arguments":[{"start":null,"loc":null,"range":null,"name":"exports","type":"Identifier","end":null},{"start":null,"loc":null,"range":null,"value":"__esModule","raw":null,"type":"Literal","end":null},{"start":null,"loc":null,"range":null,"properties":[{"start":null,"loc":null,"range":null,"method":false,"shorthand":false,"computed":false,"key":{"start":null,"loc":null,"range":null,"name":"value","type":"Identifier","end":null},"value":{"start":null,"loc":null,"range":null,"value":true,"raw":null,"type":"Literal","end":null},"kind":"init","type":"Property","end":null,"_paths":null}],"type":"ObjectExpression","end":null}],"type":"CallExpression","end":null,"_paths":null},"type":"ExpressionStatement","end":null,"_paths":null}],"type":"Program","end":null},"for-of-array":{"loc":null,"start":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"init":{"start":null,"loc":null,"range":null,"declarations":[{"start":null,"loc":null,"range":null,"id":{"start":null,"loc":null,"range":null,"name":"KEY","type":"Identifier","end":null},"init":{"start":null,"loc":null,"range":null,"value":0,"raw":null,"type":"Literal","end":null},"type":"VariableDeclarator","end":null,"_paths":null}],"kind":"var","type":"VariableDeclaration","end":null},"test":{"loc":null,"start":null,"range":null,"left":{"start":null,"loc":null,"range":null,"name":"KEY","type":"Identifier","end":null},"operator":"<","right":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"ARR","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"length","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"type":"BinaryExpression","end":null,"_paths":null},"update":{"loc":null,"start":null,"range":null,"operator":"++","prefix":false,"argument":{"start":null,"loc":null,"range":null,"name":"KEY","type":"Identifier","end":null},"type":"UpdateExpression","end":null,"_paths":null},"body":{"start":null,"loc":null,"range":null,"expression":{"start":null,"loc":null,"range":null,"name":"BODY","type":"Identifier","end":null},"type":"ExpressionStatement","end":null,"_paths":null},"type":"ForStatement","end":null,"_paths":null}],"type":"Program","end":null},"for-of-loose":{"loc":null,"start":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"init":{"start":null,"loc":null,"range":null,"declarations":[{"start":null,"loc":null,"range":null,"id":{"start":null,"loc":null,"range":null,"name":"LOOP_OBJECT","type":"Identifier","end":null},"init":{"start":null,"loc":null,"range":null,"name":"OBJECT","type":"Identifier","end":null},"type":"VariableDeclarator","end":null,"_paths":null},{"start":null,"loc":null,"range":null,"id":{"start":null,"loc":null,"range":null,"name":"IS_ARRAY","type":"Identifier","end":null},"init":{"loc":null,"start":null,"range":null,"callee":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"Array","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"isArray","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"arguments":[{"start":null,"loc":null,"range":null,"name":"LOOP_OBJECT","type":"Identifier","end":null}],"type":"CallExpression","end":null,"_paths":null},"type":"VariableDeclarator","end":null,"_paths":null},{"start":null,"loc":null,"range":null,"id":{"start":null,"loc":null,"range":null,"name":"INDEX","type":"Identifier","end":null},"init":{"start":null,"loc":null,"range":null,"value":0,"raw":null,"type":"Literal","end":null},"type":"VariableDeclarator","end":null,"_paths":null},{"start":null,"loc":null,"range":null,"id":{"start":null,"loc":null,"range":null,"name":"LOOP_OBJECT","type":"Identifier","end":null},"init":{"loc":null,"start":null,"range":null,"test":{"start":null,"loc":null,"range":null,"name":"IS_ARRAY","type":"Identifier","end":null},"consequent":{"start":null,"loc":null,"range":null,"name":"LOOP_OBJECT","type":"Identifier","end":null},"alternate":{"loc":null,"start":null,"range":null,"callee":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"LOOP_OBJECT","type":"Identifier","end":null},"property":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"Symbol","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"iterator","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"computed":true,"type":"MemberExpression","end":null,"_paths":null},"arguments":[],"type":"CallExpression","end":null,"_paths":null},"type":"ConditionalExpression","end":null,"_paths":null},"type":"VariableDeclarator","end":null,"_paths":null}],"kind":"var","type":"VariableDeclaration","end":null},"test":null,"update":null,"body":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"declarations":[{"start":null,"loc":null,"range":null,"id":{"start":null,"loc":null,"range":null,"name":"ID","type":"Identifier","end":null},"init":null,"type":"VariableDeclarator","end":null,"_paths":null}],"kind":"var","type":"VariableDeclaration","end":null},{"start":null,"loc":null,"range":null,"test":{"start":null,"loc":null,"range":null,"name":"IS_ARRAY","type":"Identifier","end":null},"consequent":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"test":{"loc":null,"start":null,"range":null,"left":{"start":null,"loc":null,"range":null,"name":"INDEX","type":"Identifier","end":null},"operator":">=","right":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"LOOP_OBJECT","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"length","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"type":"BinaryExpression","end":null,"_paths":null},"consequent":{"start":null,"loc":null,"range":null,"label":null,"type":"BreakStatement","end":null},"alternate":null,"type":"IfStatement","end":null,"_paths":null},{"start":null,"loc":null,"range":null,"expression":{"loc":null,"start":null,"range":null,"operator":"=","left":{"start":null,"loc":null,"range":null,"name":"ID","type":"Identifier","end":null},"right":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"LOOP_OBJECT","type":"Identifier","end":null},"property":{"loc":null,"start":null,"range":null,"operator":"++","prefix":false,"argument":{"start":null,"loc":null,"range":null,"name":"INDEX","type":"Identifier","end":null},"type":"UpdateExpression","end":null,"_paths":null},"computed":true,"type":"MemberExpression","end":null,"_paths":null},"type":"AssignmentExpression","end":null,"_paths":null},"type":"ExpressionStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null},"alternate":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"expression":{"loc":null,"start":null,"range":null,"operator":"=","left":{"start":null,"loc":null,"range":null,"name":"INDEX","type":"Identifier","end":null},"right":{"loc":null,"start":null,"range":null,"callee":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"LOOP_OBJECT","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"next","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"arguments":[],"type":"CallExpression","end":null,"_paths":null},"type":"AssignmentExpression","end":null,"_paths":null},"type":"ExpressionStatement","end":null,"_paths":null},{"start":null,"loc":null,"range":null,"test":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"INDEX","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"done","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"consequent":{"start":null,"loc":null,"range":null,"label":null,"type":"BreakStatement","end":null},"alternate":null,"type":"IfStatement","end":null,"_paths":null},{"start":null,"loc":null,"range":null,"expression":{"loc":null,"start":null,"range":null,"operator":"=","left":{"start":null,"loc":null,"range":null,"name":"ID","type":"Identifier","end":null},"right":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"INDEX","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"value","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"type":"AssignmentExpression","end":null,"_paths":null},"type":"ExpressionStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null},"type":"IfStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null},"type":"ForStatement","end":null,"_paths":null}],"type":"Program","end":null},"for-of":{"loc":null,"start":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"declarations":[{"start":null,"loc":null,"range":null,"id":{"start":null,"loc":null,"range":null,"name":"ITERATOR_COMPLETION","type":"Identifier","end":null},"init":{"start":null,"loc":null,"range":null,"value":true,"raw":null,"type":"Literal","end":null},"type":"VariableDeclarator","end":null,"_paths":null}],"kind":"var","type":"VariableDeclaration","end":null},{"start":null,"loc":null,"range":null,"declarations":[{"start":null,"loc":null,"range":null,"id":{"start":null,"loc":null,"range":null,"name":"ITERATOR_HAD_ERROR_KEY","type":"Identifier","end":null},"init":{"start":null,"loc":null,"range":null,"value":false,"raw":null,"type":"Literal","end":null},"type":"VariableDeclarator","end":null,"_paths":null}],"kind":"var","type":"VariableDeclaration","end":null},{"start":null,"loc":null,"range":null,"declarations":[{"start":null,"loc":null,"range":null,"id":{"start":null,"loc":null,"range":null,"name":"ITERATOR_ERROR_KEY","type":"Identifier","end":null},"init":{"start":null,"loc":null,"range":null,"name":"undefined","type":"Identifier","end":null},"type":"VariableDeclarator","end":null,"_paths":null}],"kind":"var","type":"VariableDeclaration","end":null},{"start":null,"loc":null,"range":null,"block":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"init":{"start":null,"loc":null,"range":null,"declarations":[{"start":null,"loc":null,"range":null,"id":{"start":null,"loc":null,"range":null,"name":"ITERATOR_KEY","type":"Identifier","end":null},"init":{"loc":null,"start":null,"range":null,"callee":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"OBJECT","type":"Identifier","end":null},"property":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"Symbol","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"iterator","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"computed":true,"type":"MemberExpression","end":null,"_paths":null},"arguments":[],"type":"CallExpression","end":null,"_paths":null},"type":"VariableDeclarator","end":null,"_paths":null},{"start":null,"loc":null,"range":null,"id":{"start":null,"loc":null,"range":null,"name":"STEP_KEY","type":"Identifier","end":null},"init":null,"type":"VariableDeclarator","end":null,"_paths":null}],"kind":"var","type":"VariableDeclaration","end":null},"test":{"start":null,"loc":null,"range":null,"operator":"!","prefix":true,"argument":{"loc":null,"start":null,"range":null,"operator":"=","left":{"start":null,"loc":null,"range":null,"name":"ITERATOR_COMPLETION","type":"Identifier","end":null},"right":{"loc":null,"start":null,"range":null,"object":{"loc":null,"start":null,"range":null,"operator":"=","left":{"start":null,"loc":null,"range":null,"name":"STEP_KEY","type":"Identifier","end":null},"right":{"loc":null,"start":null,"range":null,"callee":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"ITERATOR_KEY","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"next","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"arguments":[],"type":"CallExpression","end":null,"_paths":null},"type":"AssignmentExpression","end":null,"parenthesizedExpression":true,"_paths":null},"property":{"start":null,"loc":null,"range":null,"name":"done","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"type":"AssignmentExpression","end":null,"parenthesizedExpression":true,"_paths":null},"type":"UnaryExpression","end":null,"_paths":null},"update":{"loc":null,"start":null,"range":null,"operator":"=","left":{"start":null,"loc":null,"range":null,"name":"ITERATOR_COMPLETION","type":"Identifier","end":null},"right":{"start":null,"loc":null,"range":null,"value":true,"raw":null,"type":"Literal","end":null},"type":"AssignmentExpression","end":null,"_paths":null},"body":{"start":null,"loc":null,"range":null,"body":[],"type":"BlockStatement","end":null},"type":"ForStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null},"handler":{"start":null,"loc":null,"range":null,"param":{"start":null,"loc":null,"range":null,"name":"err","type":"Identifier","end":null},"guard":null,"body":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"expression":{"loc":null,"start":null,"range":null,"operator":"=","left":{"start":null,"loc":null,"range":null,"name":"ITERATOR_HAD_ERROR_KEY","type":"Identifier","end":null},"right":{"start":null,"loc":null,"range":null,"value":true,"raw":null,"type":"Literal","end":null},"type":"AssignmentExpression","end":null,"_paths":null},"type":"ExpressionStatement","end":null,"_paths":null},{"start":null,"loc":null,"range":null,"expression":{"loc":null,"start":null,"range":null,"operator":"=","left":{"start":null,"loc":null,"range":null,"name":"ITERATOR_ERROR_KEY","type":"Identifier","end":null},"right":{"start":null,"loc":null,"range":null,"name":"err","type":"Identifier","end":null},"type":"AssignmentExpression","end":null,"_paths":null},"type":"ExpressionStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null},"type":"CatchClause","end":null,"_paths":null},"guardedHandlers":[],"finalizer":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"block":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"test":{"loc":null,"start":null,"range":null,"left":{"start":null,"loc":null,"range":null,"operator":"!","prefix":true,"argument":{"start":null,"loc":null,"range":null,"name":"ITERATOR_COMPLETION","type":"Identifier","end":null},"type":"UnaryExpression","end":null,"_paths":null},"operator":"&&","right":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"ITERATOR_KEY","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"value":"return","raw":null,"type":"Literal","end":null},"computed":true,"type":"MemberExpression","end":null,"_paths":null},"type":"LogicalExpression","end":null,"_paths":null},"consequent":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"expression":{"loc":null,"start":null,"range":null,"callee":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"ITERATOR_KEY","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"value":"return","raw":null,"type":"Literal","end":null},"computed":true,"type":"MemberExpression","end":null,"_paths":null},"arguments":[],"type":"CallExpression","end":null,"_paths":null},"type":"ExpressionStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null},"alternate":null,"type":"IfStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null},"handler":null,"guardedHandlers":[],"finalizer":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"test":{"start":null,"loc":null,"range":null,"name":"ITERATOR_HAD_ERROR_KEY","type":"Identifier","end":null},"consequent":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"argument":{"start":null,"loc":null,"range":null,"name":"ITERATOR_ERROR_KEY","type":"Identifier","end":null},"type":"ThrowStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null},"alternate":null,"type":"IfStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null},"type":"TryStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null},"type":"TryStatement","end":null,"_paths":null}],"type":"Program","end":null},"helper-async-to-generator":{"loc":null,"start":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"expression":{"start":null,"loc":null,"range":null,"id":null,"generator":false,"expression":false,"params":[{"start":null,"loc":null,"range":null,"name":"fn","type":"Identifier","end":null}],"body":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"argument":{"start":null,"loc":null,"range":null,"id":null,"generator":false,"expression":false,"params":[],"body":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"declarations":[{"start":null,"loc":null,"range":null,"id":{"start":null,"loc":null,"range":null,"name":"gen","type":"Identifier","end":null},"init":{"loc":null,"start":null,"range":null,"callee":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"fn","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"apply","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"arguments":[{"start":null,"loc":null,"range":null,"type":"ThisExpression","end":null},{"start":null,"loc":null,"range":null,"name":"arguments","type":"Identifier","end":null}],"type":"CallExpression","end":null,"_paths":null},"type":"VariableDeclarator","end":null,"_paths":null}],"kind":"var","type":"VariableDeclaration","end":null},{"start":null,"loc":null,"range":null,"argument":{"start":null,"loc":null,"range":null,"callee":{"start":null,"loc":null,"range":null,"name":"Promise","type":"Identifier","end":null},"arguments":[{"start":null,"loc":null,"range":null,"id":null,"generator":false,"expression":false,"params":[{"start":null,"loc":null,"range":null,"name":"resolve","type":"Identifier","end":null},{"start":null,"loc":null,"range":null,"name":"reject","type":"Identifier","end":null}],"body":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"declarations":[{"start":null,"loc":null,"range":null,"id":{"start":null,"loc":null,"range":null,"name":"callNext","type":"Identifier","end":null},"init":{"loc":null,"start":null,"range":null,"callee":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"step","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"bind","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"arguments":[{"start":null,"loc":null,"range":null,"value":null,"raw":null,"type":"Literal","end":null},{"start":null,"loc":null,"range":null,"value":"next","raw":null,"type":"Literal","end":null}],"type":"CallExpression","end":null,"_paths":null},"type":"VariableDeclarator","end":null,"_paths":null}],"kind":"var","type":"VariableDeclaration","end":null},{"start":null,"loc":null,"range":null,"declarations":[{"start":null,"loc":null,"range":null,"id":{"start":null,"loc":null,"range":null,"name":"callThrow","type":"Identifier","end":null},"init":{"loc":null,"start":null,"range":null,"callee":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"step","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"bind","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"arguments":[{"start":null,"loc":null,"range":null,"value":null,"raw":null,"type":"Literal","end":null},{"start":null,"loc":null,"range":null,"value":"throw","raw":null,"type":"Literal","end":null}],"type":"CallExpression","end":null,"_paths":null},"type":"VariableDeclarator","end":null,"_paths":null}],"kind":"var","type":"VariableDeclaration","end":null},{"start":null,"loc":null,"range":null,"id":{"start":null,"loc":null,"range":null,"name":"step","type":"Identifier","end":null},"generator":false,"expression":false,"params":[{"start":null,"loc":null,"range":null,"name":"key","type":"Identifier","end":null},{"start":null,"loc":null,"range":null,"name":"arg","type":"Identifier","end":null}],"body":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"block":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"declarations":[{"start":null,"loc":null,"range":null,"id":{"start":null,"loc":null,"range":null,"name":"info","type":"Identifier","end":null},"init":{"loc":null,"start":null,"range":null,"callee":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"gen","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"key","type":"Identifier","end":null},"computed":true,"type":"MemberExpression","end":null,"_paths":null},"arguments":[{"start":null,"loc":null,"range":null,"name":"arg","type":"Identifier","end":null}],"type":"CallExpression","end":null,"_paths":null},"type":"VariableDeclarator","end":null,"_paths":null}],"kind":"var","type":"VariableDeclaration","end":null},{"start":null,"loc":null,"range":null,"declarations":[{"start":null,"loc":null,"range":null,"id":{"start":null,"loc":null,"range":null,"name":"value","type":"Identifier","end":null},"init":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"info","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"value","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"type":"VariableDeclarator","end":null,"_paths":null}],"kind":"var","type":"VariableDeclaration","end":null}],"type":"BlockStatement","end":null},"handler":{"start":null,"loc":null,"range":null,"param":{"start":null,"loc":null,"range":null,"name":"error","type":"Identifier","end":null},"guard":null,"body":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"expression":{"loc":null,"start":null,"range":null,"callee":{"start":null,"loc":null,"range":null,"name":"reject","type":"Identifier","end":null},"arguments":[{"start":null,"loc":null,"range":null,"name":"error","type":"Identifier","end":null}],"type":"CallExpression","end":null,"_paths":null},"type":"ExpressionStatement","end":null,"_paths":null},{"start":null,"loc":null,"range":null,"argument":null,"type":"ReturnStatement","end":null}],"type":"BlockStatement","end":null},"type":"CatchClause","end":null,"_paths":null},"guardedHandlers":[],"finalizer":null,"type":"TryStatement","end":null,"_paths":null},{"start":null,"loc":null,"range":null,"test":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"info","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"done","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"consequent":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"expression":{"loc":null,"start":null,"range":null,"callee":{"start":null,"loc":null,"range":null,"name":"resolve","type":"Identifier","end":null},"arguments":[{"start":null,"loc":null,"range":null,"name":"value","type":"Identifier","end":null}],"type":"CallExpression","end":null,"_paths":null},"type":"ExpressionStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null},"alternate":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"expression":{"loc":null,"start":null,"range":null,"callee":{"loc":null,"start":null,"range":null,"object":{"loc":null,"start":null,"range":null,"callee":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"Promise","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"resolve","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"arguments":[{"start":null,"loc":null,"range":null,"name":"value","type":"Identifier","end":null}],"type":"CallExpression","end":null,"_paths":null},"property":{"start":null,"loc":null,"range":null,"name":"then","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"arguments":[{"start":null,"loc":null,"range":null,"name":"callNext","type":"Identifier","end":null},{"start":null,"loc":null,"range":null,"name":"callThrow","type":"Identifier","end":null}],"type":"CallExpression","end":null,"_paths":null},"type":"ExpressionStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null},"type":"IfStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null},"type":"FunctionDeclaration","end":null,"_paths":null},{"start":null,"loc":null,"range":null,"expression":{"loc":null,"start":null,"range":null,"callee":{"start":null,"loc":null,"range":null,"name":"callNext","type":"Identifier","end":null},"arguments":[],"type":"CallExpression","end":null,"_paths":null},"type":"ExpressionStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null},"type":"FunctionExpression","end":null,"_paths":null}],"type":"NewExpression","end":null,"_paths":null},"type":"ReturnStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null},"type":"FunctionExpression","end":null,"_paths":null},"type":"ReturnStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null},"type":"FunctionExpression","end":null,"parenthesizedExpression":true,"_paths":null},"type":"ExpressionStatement","end":null,"_paths":null}],"type":"Program","end":null},"helper-bind":{"loc":null,"start":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"expression":{"loc":null,"start":null,"range":null,"object":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"Function","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"prototype","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"property":{"start":null,"loc":null,"range":null,"name":"bind","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"type":"ExpressionStatement","end":null,"_paths":null}],"type":"Program","end":null},"helper-class-call-check":{"loc":null,"start":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"expression":{"start":null,"loc":null,"range":null,"id":null,"generator":false,"expression":false,"params":[{"start":null,"loc":null,"range":null,"name":"instance","type":"Identifier","end":null},{"start":null,"loc":null,"range":null,"name":"Constructor","type":"Identifier","end":null}],"body":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"test":{"start":null,"loc":null,"range":null,"operator":"!","prefix":true,"argument":{"loc":null,"start":null,"range":null,"left":{"start":null,"loc":null,"range":null,"name":"instance","type":"Identifier","end":null},"operator":"instanceof","right":{"start":null,"loc":null,"range":null,"name":"Constructor","type":"Identifier","end":null},"type":"BinaryExpression","end":null,"parenthesizedExpression":true,"_paths":null},"type":"UnaryExpression","end":null,"_paths":null},"consequent":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"argument":{"start":null,"loc":null,"range":null,"callee":{"start":null,"loc":null,"range":null,"name":"TypeError","type":"Identifier","end":null},"arguments":[{"start":null,"loc":null,"range":null,"value":"Cannot call a class as a function","raw":null,"type":"Literal","end":null}],"type":"NewExpression","end":null,"_paths":null},"type":"ThrowStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null},"alternate":null,"type":"IfStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null},"type":"FunctionExpression","end":null,"parenthesizedExpression":true,"_paths":null},"type":"ExpressionStatement","end":null,"_paths":null}],"type":"Program","end":null},"helper-create-class":{"loc":null,"start":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"expression":{"loc":null,"start":null,"range":null,"callee":{"start":null,"loc":null,"range":null,"id":null,"generator":false,"expression":false,"params":[],"body":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"id":{"start":null,"loc":null,"range":null,"name":"defineProperties","type":"Identifier","end":null},"generator":false,"expression":false,"params":[{"start":null,"loc":null,"range":null,"name":"target","type":"Identifier","end":null},{"start":null,"loc":null,"range":null,"name":"props","type":"Identifier","end":null}],"body":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"init":{"start":null,"loc":null,"range":null,"declarations":[{"start":null,"loc":null,"range":null,"id":{"start":null,"loc":null,"range":null,"name":"i","type":"Identifier","end":null},"init":{"start":null,"loc":null,"range":null,"value":0,"raw":null,"type":"Literal","end":null},"type":"VariableDeclarator","end":null,"_paths":null}],"kind":"var","type":"VariableDeclaration","end":null},"test":{"loc":null,"start":null,"range":null,"left":{"start":null,"loc":null,"range":null,"name":"i","type":"Identifier","end":null},"operator":"<","right":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"props","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"length","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"type":"BinaryExpression","end":null,"_paths":null},"update":{"loc":null,"start":null,"range":null,"operator":"++","prefix":false,"argument":{"start":null,"loc":null,"range":null,"name":"i","type":"Identifier","end":null},"type":"UpdateExpression","end":null,"_paths":null},"body":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"declarations":[{"start":null,"loc":null,"range":null,"id":{"start":null,"loc":null,"range":null,"name":"descriptor","type":"Identifier","end":null},"init":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"props","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"i","type":"Identifier","end":null},"computed":true,"type":"MemberExpression","end":null,"_paths":null},"type":"VariableDeclarator","end":null,"_paths":null}],"kind":"var","type":"VariableDeclaration","end":null},{"start":null,"loc":null,"range":null,"expression":{"loc":null,"start":null,"range":null,"operator":"=","left":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"descriptor","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"enumerable","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"right":{"loc":null,"start":null,"range":null,"left":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"descriptor","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"enumerable","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"operator":"||","right":{"start":null,"loc":null,"range":null,"value":false,"raw":null,"type":"Literal","end":null},"type":"LogicalExpression","end":null,"_paths":null},"type":"AssignmentExpression","end":null,"_paths":null},"type":"ExpressionStatement","end":null,"_paths":null},{"start":null,"loc":null,"range":null,"expression":{"loc":null,"start":null,"range":null,"operator":"=","left":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"descriptor","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"configurable","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"right":{"start":null,"loc":null,"range":null,"value":true,"raw":null,"type":"Literal","end":null},"type":"AssignmentExpression","end":null,"_paths":null},"type":"ExpressionStatement","end":null,"_paths":null},{"start":null,"loc":null,"range":null,"test":{"loc":null,"start":null,"range":null,"left":{"start":null,"loc":null,"range":null,"value":"value","raw":null,"type":"Literal","end":null},"operator":"in","right":{"start":null,"loc":null,"range":null,"name":"descriptor","type":"Identifier","end":null},"type":"BinaryExpression","end":null,"_paths":null},"consequent":{"start":null,"loc":null,"range":null,"expression":{"loc":null,"start":null,"range":null,"operator":"=","left":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"descriptor","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"writable","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"right":{"start":null,"loc":null,"range":null,"value":true,"raw":null,"type":"Literal","end":null},"type":"AssignmentExpression","end":null,"_paths":null},"type":"ExpressionStatement","end":null,"_paths":null},"alternate":null,"type":"IfStatement","end":null,"_paths":null},{"start":null,"loc":null,"range":null,"expression":{"loc":null,"start":null,"range":null,"callee":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"Object","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"defineProperty","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"arguments":[{"start":null,"loc":null,"range":null,"name":"target","type":"Identifier","end":null},{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"descriptor","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"key","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},{"start":null,"loc":null,"range":null,"name":"descriptor","type":"Identifier","end":null}],"type":"CallExpression","end":null,"_paths":null},"type":"ExpressionStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null},"type":"ForStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null},"type":"FunctionDeclaration","end":null,"_paths":null},{"start":null,"loc":null,"range":null,"argument":{"start":null,"loc":null,"range":null,"id":null,"generator":false,"expression":false,"params":[{"start":null,"loc":null,"range":null,"name":"Constructor","type":"Identifier","end":null},{"start":null,"loc":null,"range":null,"name":"protoProps","type":"Identifier","end":null},{"start":null,"loc":null,"range":null,"name":"staticProps","type":"Identifier","end":null}],"body":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"test":{"start":null,"loc":null,"range":null,"name":"protoProps","type":"Identifier","end":null},"consequent":{"start":null,"loc":null,"range":null,"expression":{"loc":null,"start":null,"range":null,"callee":{"start":null,"loc":null,"range":null,"name":"defineProperties","type":"Identifier","end":null},"arguments":[{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"Constructor","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"prototype","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},{"start":null,"loc":null,"range":null,"name":"protoProps","type":"Identifier","end":null}],"type":"CallExpression","end":null,"_paths":null},"type":"ExpressionStatement","end":null,"_paths":null},"alternate":null,"type":"IfStatement","end":null,"_paths":null},{"start":null,"loc":null,"range":null,"test":{"start":null,"loc":null,"range":null,"name":"staticProps","type":"Identifier","end":null},"consequent":{"start":null,"loc":null,"range":null,"expression":{"loc":null,"start":null,"range":null,"callee":{"start":null,"loc":null,"range":null,"name":"defineProperties","type":"Identifier","end":null},"arguments":[{"start":null,"loc":null,"range":null,"name":"Constructor","type":"Identifier","end":null},{"start":null,"loc":null,"range":null,"name":"staticProps","type":"Identifier","end":null}],"type":"CallExpression","end":null,"_paths":null},"type":"ExpressionStatement","end":null,"_paths":null},"alternate":null,"type":"IfStatement","end":null,"_paths":null},{"start":null,"loc":null,"range":null,"argument":{"start":null,"loc":null,"range":null,"name":"Constructor","type":"Identifier","end":null},"type":"ReturnStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null},"type":"FunctionExpression","end":null,"_paths":null},"type":"ReturnStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null},"type":"FunctionExpression","end":null,"parenthesizedExpression":true,"_paths":null},"arguments":[],"type":"CallExpression","end":null,"_paths":null},"type":"ExpressionStatement","end":null,"_paths":null}],"type":"Program","end":null},"helper-create-decorated-class":{"loc":null,"start":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"expression":{"loc":null,"start":null,"range":null,"callee":{"start":null,"loc":null,"range":null,"id":null,"generator":false,"expression":false,"params":[],"body":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"id":{"start":null,"loc":null,"range":null,"name":"defineProperties","type":"Identifier","end":null},"generator":false,"expression":false,"params":[{"start":null,"loc":null,"range":null,"name":"target","type":"Identifier","end":null},{"start":null,"loc":null,"range":null,"name":"descriptors","type":"Identifier","end":null},{"start":null,"loc":null,"range":null,"name":"initializers","type":"Identifier","end":null}],"body":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"init":{"start":null,"loc":null,"range":null,"declarations":[{"start":null,"loc":null,"range":null,"id":{"start":null,"loc":null,"range":null,"name":"i","type":"Identifier","end":null},"init":{"start":null,"loc":null,"range":null,"value":0,"raw":null,"type":"Literal","end":null},"type":"VariableDeclarator","end":null,"_paths":null}],"kind":"var","type":"VariableDeclaration","end":null},"test":{"loc":null,"start":null,"range":null,"left":{"start":null,"loc":null,"range":null,"name":"i","type":"Identifier","end":null},"operator":"<","right":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"descriptors","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"length","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"type":"BinaryExpression","end":null,"_paths":null},"update":{"loc":null,"start":null,"range":null,"operator":"++","prefix":false,"argument":{"start":null,"loc":null,"range":null,"name":"i","type":"Identifier","end":null},"type":"UpdateExpression","end":null,"_paths":null},"body":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"declarations":[{"start":null,"loc":null,"range":null,"id":{"start":null,"loc":null,"range":null,"name":"descriptor","type":"Identifier","end":null},"init":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"descriptors","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"i","type":"Identifier","end":null},"computed":true,"type":"MemberExpression","end":null,"_paths":null},"type":"VariableDeclarator","end":null,"_paths":null}],"kind":"var","type":"VariableDeclaration","end":null},{"start":null,"loc":null,"range":null,"declarations":[{"start":null,"loc":null,"range":null,"id":{"start":null,"loc":null,"range":null,"name":"decorators","type":"Identifier","end":null},"init":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"descriptor","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"decorators","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"type":"VariableDeclarator","end":null,"_paths":null}],"kind":"var","type":"VariableDeclaration","end":null},{"start":null,"loc":null,"range":null,"declarations":[{"start":null,"loc":null,"range":null,"id":{"start":null,"loc":null,"range":null,"name":"key","type":"Identifier","end":null},"init":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"descriptor","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"key","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"type":"VariableDeclarator","end":null,"_paths":null}],"kind":"var","type":"VariableDeclaration","end":null},{"start":null,"loc":null,"range":null,"expression":{"start":null,"loc":null,"range":null,"operator":"delete","prefix":true,"argument":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"descriptor","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"key","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"type":"UnaryExpression","end":null,"_paths":null},"type":"ExpressionStatement","end":null,"leadingComments":null,"_paths":null},{"start":null,"loc":null,"range":null,"expression":{"start":null,"loc":null,"range":null,"operator":"delete","prefix":true,"argument":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"descriptor","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"decorators","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"type":"UnaryExpression","end":null,"_paths":null},"type":"ExpressionStatement","end":null,"_paths":null},{"start":null,"loc":null,"range":null,"expression":{"loc":null,"start":null,"range":null,"operator":"=","left":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"descriptor","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"enumerable","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"right":{"loc":null,"start":null,"range":null,"left":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"descriptor","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"enumerable","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"operator":"||","right":{"start":null,"loc":null,"range":null,"value":false,"raw":null,"type":"Literal","end":null},"type":"LogicalExpression","end":null,"_paths":null},"type":"AssignmentExpression","end":null,"_paths":null},"type":"ExpressionStatement","end":null,"_paths":null},{"start":null,"loc":null,"range":null,"expression":{"loc":null,"start":null,"range":null,"operator":"=","left":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"descriptor","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"configurable","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"right":{"start":null,"loc":null,"range":null,"value":true,"raw":null,"type":"Literal","end":null},"type":"AssignmentExpression","end":null,"_paths":null},"type":"ExpressionStatement","end":null,"_paths":null},{"start":null,"loc":null,"range":null,"test":{"loc":null,"start":null,"range":null,"left":{"loc":null,"start":null,"range":null,"left":{"start":null,"loc":null,"range":null,"value":"value","raw":null,"type":"Literal","end":null},"operator":"in","right":{"start":null,"loc":null,"range":null,"name":"descriptor","type":"Identifier","end":null},"type":"BinaryExpression","end":null,"_paths":null},"operator":"||","right":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"descriptor","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"initializer","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"type":"LogicalExpression","end":null,"_paths":null},"consequent":{"start":null,"loc":null,"range":null,"expression":{"loc":null,"start":null,"range":null,"operator":"=","left":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"descriptor","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"writable","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"right":{"start":null,"loc":null,"range":null,"value":true,"raw":null,"type":"Literal","end":null},"type":"AssignmentExpression","end":null,"_paths":null},"type":"ExpressionStatement","end":null,"_paths":null},"alternate":null,"type":"IfStatement","end":null,"_paths":null},{"start":null,"loc":null,"range":null,"test":{"start":null,"loc":null,"range":null,"name":"decorators","type":"Identifier","end":null},"consequent":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"init":{"start":null,"loc":null,"range":null,"declarations":[{"start":null,"loc":null,"range":null,"id":{"start":null,"loc":null,"range":null,"name":"f","type":"Identifier","end":null},"init":{"start":null,"loc":null,"range":null,"value":0,"raw":null,"type":"Literal","end":null},"type":"VariableDeclarator","end":null,"_paths":null}],"kind":"var","type":"VariableDeclaration","end":null},"test":{"loc":null,"start":null,"range":null,"left":{"start":null,"loc":null,"range":null,"name":"f","type":"Identifier","end":null},"operator":"<","right":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"decorators","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"length","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"type":"BinaryExpression","end":null,"_paths":null},"update":{"loc":null,"start":null,"range":null,"operator":"++","prefix":false,"argument":{"start":null,"loc":null,"range":null,"name":"f","type":"Identifier","end":null},"type":"UpdateExpression","end":null,"_paths":null},"body":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"declarations":[{"start":null,"loc":null,"range":null,"id":{"start":null,"loc":null,"range":null,"name":"decorator","type":"Identifier","end":null},"init":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"decorators","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"f","type":"Identifier","end":null},"computed":true,"type":"MemberExpression","end":null,"_paths":null},"type":"VariableDeclarator","end":null,"_paths":null}],"kind":"var","type":"VariableDeclaration","end":null},{"start":null,"loc":null,"range":null,"test":{"loc":null,"start":null,"range":null,"left":{"start":null,"loc":null,"range":null,"operator":"typeof","prefix":true,"argument":{"start":null,"loc":null,"range":null,"name":"decorator","type":"Identifier","end":null},"type":"UnaryExpression","end":null,"_paths":null},"operator":"===","right":{"start":null,"loc":null,"range":null,"value":"function","raw":null,"type":"Literal","end":null},"type":"BinaryExpression","end":null,"_paths":null},"consequent":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"expression":{"loc":null,"start":null,"range":null,"operator":"=","left":{"start":null,"loc":null,"range":null,"name":"descriptor","type":"Identifier","end":null},"right":{"loc":null,"start":null,"range":null,"left":{"loc":null,"start":null,"range":null,"callee":{"start":null,"loc":null,"range":null,"name":"decorator","type":"Identifier","end":null},"arguments":[{"start":null,"loc":null,"range":null,"name":"target","type":"Identifier","end":null},{"start":null,"loc":null,"range":null,"name":"key","type":"Identifier","end":null},{"start":null,"loc":null,"range":null,"name":"descriptor","type":"Identifier","end":null}],"type":"CallExpression","end":null,"_paths":null},"operator":"||","right":{"start":null,"loc":null,"range":null,"name":"descriptor","type":"Identifier","end":null},"type":"LogicalExpression","end":null,"_paths":null},"type":"AssignmentExpression","end":null,"_paths":null},"type":"ExpressionStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null},"alternate":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"argument":{"start":null,"loc":null,"range":null,"callee":{"start":null,"loc":null,"range":null,"name":"TypeError","type":"Identifier","end":null},"arguments":[{"loc":null,"start":null,"range":null,"left":{"loc":null,"start":null,"range":null,"left":{"loc":null,"start":null,"range":null,"left":{"start":null,"loc":null,"range":null,"value":"The decorator for method ","raw":null,"type":"Literal","end":null},"operator":"+","right":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"descriptor","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"key","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"type":"BinaryExpression","end":null,"_paths":null},"operator":"+","right":{"start":null,"loc":null,"range":null,"value":" is of the invalid type ","raw":null,"type":"Literal","end":null},"type":"BinaryExpression","end":null,"_paths":null},"operator":"+","right":{"start":null,"loc":null,"range":null,"operator":"typeof","prefix":true,"argument":{"start":null,"loc":null,"range":null,"name":"decorator","type":"Identifier","end":null},"type":"UnaryExpression","end":null,"_paths":null},"type":"BinaryExpression","end":null,"_paths":null}],"type":"NewExpression","end":null,"_paths":null},"type":"ThrowStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null},"type":"IfStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null},"type":"ForStatement","end":null,"_paths":null},{"start":null,"loc":null,"range":null,"test":{"loc":null,"start":null,"range":null,"left":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"descriptor","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"initializer","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"operator":"!==","right":{"start":null,"loc":null,"range":null,"name":"undefined","type":"Identifier","end":null},"type":"BinaryExpression","end":null,"_paths":null},"consequent":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"expression":{"loc":null,"start":null,"range":null,"operator":"=","left":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"initializers","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"key","type":"Identifier","end":null},"computed":true,"type":"MemberExpression","end":null,"_paths":null},"right":{"start":null,"loc":null,"range":null,"name":"descriptor","type":"Identifier","end":null},"type":"AssignmentExpression","end":null,"_paths":null},"type":"ExpressionStatement","end":null,"_paths":null},{"start":null,"loc":null,"range":null,"label":null,"type":"ContinueStatement","end":null}],"type":"BlockStatement","end":null},"alternate":null,"type":"IfStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null},"alternate":null,"type":"IfStatement","end":null,"_paths":null},{"start":null,"loc":null,"range":null,"expression":{"loc":null,"start":null,"range":null,"callee":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"Object","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"defineProperty","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"arguments":[{"start":null,"loc":null,"range":null,"name":"target","type":"Identifier","end":null},{"start":null,"loc":null,"range":null,"name":"key","type":"Identifier","end":null},{"start":null,"loc":null,"range":null,"name":"descriptor","type":"Identifier","end":null}],"type":"CallExpression","end":null,"_paths":null},"type":"ExpressionStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null},"type":"ForStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null},"type":"FunctionDeclaration","end":null,"_paths":null},{"start":null,"loc":null,"range":null,"argument":{"start":null,"loc":null,"range":null,"id":null,"generator":false,"expression":false,"params":[{"start":null,"loc":null,"range":null,"name":"Constructor","type":"Identifier","end":null},{"start":null,"loc":null,"range":null,"name":"protoProps","type":"Identifier","end":null},{"start":null,"loc":null,"range":null,"name":"staticProps","type":"Identifier","end":null},{"start":null,"loc":null,"range":null,"name":"protoInitializers","type":"Identifier","end":null},{"start":null,"loc":null,"range":null,"name":"staticInitializers","type":"Identifier","end":null}],"body":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"test":{"start":null,"loc":null,"range":null,"name":"protoProps","type":"Identifier","end":null},"consequent":{"start":null,"loc":null,"range":null,"expression":{"loc":null,"start":null,"range":null,"callee":{"start":null,"loc":null,"range":null,"name":"defineProperties","type":"Identifier","end":null},"arguments":[{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"Constructor","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"prototype","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},{"start":null,"loc":null,"range":null,"name":"protoProps","type":"Identifier","end":null},{"start":null,"loc":null,"range":null,"name":"protoInitializers","type":"Identifier","end":null}],"type":"CallExpression","end":null,"_paths":null},"type":"ExpressionStatement","end":null,"_paths":null},"alternate":null,"type":"IfStatement","end":null,"_paths":null},{"start":null,"loc":null,"range":null,"test":{"start":null,"loc":null,"range":null,"name":"staticProps","type":"Identifier","end":null},"consequent":{"start":null,"loc":null,"range":null,"expression":{"loc":null,"start":null,"range":null,"callee":{"start":null,"loc":null,"range":null,"name":"defineProperties","type":"Identifier","end":null},"arguments":[{"start":null,"loc":null,"range":null,"name":"Constructor","type":"Identifier","end":null},{"start":null,"loc":null,"range":null,"name":"staticProps","type":"Identifier","end":null},{"start":null,"loc":null,"range":null,"name":"staticInitializers","type":"Identifier","end":null}],"type":"CallExpression","end":null,"_paths":null},"type":"ExpressionStatement","end":null,"_paths":null},"alternate":null,"type":"IfStatement","end":null,"_paths":null},{"start":null,"loc":null,"range":null,"argument":{"start":null,"loc":null,"range":null,"name":"Constructor","type":"Identifier","end":null},"type":"ReturnStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null},"type":"FunctionExpression","end":null,"_paths":null},"type":"ReturnStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null},"type":"FunctionExpression","end":null,"parenthesizedExpression":true,"_paths":null},"arguments":[],"type":"CallExpression","end":null,"_paths":null},"type":"ExpressionStatement","end":null,"_paths":null}],"type":"Program","end":null},"helper-create-decorated-object":{"loc":null,"start":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"expression":{"start":null,"loc":null,"range":null,"id":null,"generator":false,"expression":false,"params":[{"start":null,"loc":null,"range":null,"name":"descriptors","type":"Identifier","end":null}],"body":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"declarations":[{"start":null,"loc":null,"range":null,"id":{"start":null,"loc":null,"range":null,"name":"target","type":"Identifier","end":null},"init":{"start":null,"loc":null,"range":null,"properties":[],"type":"ObjectExpression","end":null},"type":"VariableDeclarator","end":null,"_paths":null}],"kind":"var","type":"VariableDeclaration","end":null},{"start":null,"loc":null,"range":null,"init":{"start":null,"loc":null,"range":null,"declarations":[{"start":null,"loc":null,"range":null,"id":{"start":null,"loc":null,"range":null,"name":"i","type":"Identifier","end":null},"init":{"start":null,"loc":null,"range":null,"value":0,"raw":null,"type":"Literal","end":null},"type":"VariableDeclarator","end":null,"_paths":null}],"kind":"var","type":"VariableDeclaration","end":null},"test":{"loc":null,"start":null,"range":null,"left":{"start":null,"loc":null,"range":null,"name":"i","type":"Identifier","end":null},"operator":"<","right":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"descriptors","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"length","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"type":"BinaryExpression","end":null,"_paths":null},"update":{"loc":null,"start":null,"range":null,"operator":"++","prefix":false,"argument":{"start":null,"loc":null,"range":null,"name":"i","type":"Identifier","end":null},"type":"UpdateExpression","end":null,"_paths":null},"body":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"declarations":[{"start":null,"loc":null,"range":null,"id":{"start":null,"loc":null,"range":null,"name":"descriptor","type":"Identifier","end":null},"init":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"descriptors","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"i","type":"Identifier","end":null},"computed":true,"type":"MemberExpression","end":null,"_paths":null},"type":"VariableDeclarator","end":null,"_paths":null}],"kind":"var","type":"VariableDeclaration","end":null},{"start":null,"loc":null,"range":null,"declarations":[{"start":null,"loc":null,"range":null,"id":{"start":null,"loc":null,"range":null,"name":"decorators","type":"Identifier","end":null},"init":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"descriptor","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"decorators","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"type":"VariableDeclarator","end":null,"_paths":null}],"kind":"var","type":"VariableDeclaration","end":null},{"start":null,"loc":null,"range":null,"declarations":[{"start":null,"loc":null,"range":null,"id":{"start":null,"loc":null,"range":null,"name":"key","type":"Identifier","end":null},"init":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"descriptor","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"key","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"type":"VariableDeclarator","end":null,"_paths":null}],"kind":"var","type":"VariableDeclaration","end":null},{"start":null,"loc":null,"range":null,"expression":{"start":null,"loc":null,"range":null,"operator":"delete","prefix":true,"argument":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"descriptor","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"key","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"type":"UnaryExpression","end":null,"_paths":null},"type":"ExpressionStatement","end":null,"leadingComments":null,"_paths":null},{"start":null,"loc":null,"range":null,"expression":{"start":null,"loc":null,"range":null,"operator":"delete","prefix":true,"argument":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"descriptor","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"decorators","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"type":"UnaryExpression","end":null,"_paths":null},"type":"ExpressionStatement","end":null,"_paths":null},{"start":null,"loc":null,"range":null,"expression":{"loc":null,"start":null,"range":null,"operator":"=","left":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"descriptor","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"enumerable","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"right":{"start":null,"loc":null,"range":null,"value":true,"raw":null,"type":"Literal","end":null},"type":"AssignmentExpression","end":null,"_paths":null},"type":"ExpressionStatement","end":null,"_paths":null},{"start":null,"loc":null,"range":null,"expression":{"loc":null,"start":null,"range":null,"operator":"=","left":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"descriptor","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"configurable","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"right":{"start":null,"loc":null,"range":null,"value":true,"raw":null,"type":"Literal","end":null},"type":"AssignmentExpression","end":null,"_paths":null},"type":"ExpressionStatement","end":null,"_paths":null},{"start":null,"loc":null,"range":null,"expression":{"loc":null,"start":null,"range":null,"operator":"=","left":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"descriptor","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"writable","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"right":{"start":null,"loc":null,"range":null,"value":true,"raw":null,"type":"Literal","end":null},"type":"AssignmentExpression","end":null,"_paths":null},"type":"ExpressionStatement","end":null,"_paths":null},{"start":null,"loc":null,"range":null,"test":{"start":null,"loc":null,"range":null,"name":"decorators","type":"Identifier","end":null},"consequent":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"init":{"start":null,"loc":null,"range":null,"declarations":[{"start":null,"loc":null,"range":null,"id":{"start":null,"loc":null,"range":null,"name":"f","type":"Identifier","end":null},"init":{"start":null,"loc":null,"range":null,"value":0,"raw":null,"type":"Literal","end":null},"type":"VariableDeclarator","end":null,"_paths":null}],"kind":"var","type":"VariableDeclaration","end":null},"test":{"loc":null,"start":null,"range":null,"left":{"start":null,"loc":null,"range":null,"name":"f","type":"Identifier","end":null},"operator":"<","right":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"decorators","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"length","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"type":"BinaryExpression","end":null,"_paths":null},"update":{"loc":null,"start":null,"range":null,"operator":"++","prefix":false,"argument":{"start":null,"loc":null,"range":null,"name":"f","type":"Identifier","end":null},"type":"UpdateExpression","end":null,"_paths":null},"body":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"declarations":[{"start":null,"loc":null,"range":null,"id":{"start":null,"loc":null,"range":null,"name":"decorator","type":"Identifier","end":null},"init":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"decorators","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"f","type":"Identifier","end":null},"computed":true,"type":"MemberExpression","end":null,"_paths":null},"type":"VariableDeclarator","end":null,"_paths":null}],"kind":"var","type":"VariableDeclaration","end":null},{"start":null,"loc":null,"range":null,"test":{"loc":null,"start":null,"range":null,"left":{"start":null,"loc":null,"range":null,"operator":"typeof","prefix":true,"argument":{"start":null,"loc":null,"range":null,"name":"decorator","type":"Identifier","end":null},"type":"UnaryExpression","end":null,"_paths":null},"operator":"===","right":{"start":null,"loc":null,"range":null,"value":"function","raw":null,"type":"Literal","end":null},"type":"BinaryExpression","end":null,"_paths":null},"consequent":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"expression":{"loc":null,"start":null,"range":null,"operator":"=","left":{"start":null,"loc":null,"range":null,"name":"descriptor","type":"Identifier","end":null},"right":{"loc":null,"start":null,"range":null,"left":{"loc":null,"start":null,"range":null,"callee":{"start":null,"loc":null,"range":null,"name":"decorator","type":"Identifier","end":null},"arguments":[{"start":null,"loc":null,"range":null,"name":"target","type":"Identifier","end":null},{"start":null,"loc":null,"range":null,"name":"key","type":"Identifier","end":null},{"start":null,"loc":null,"range":null,"name":"descriptor","type":"Identifier","end":null}],"type":"CallExpression","end":null,"_paths":null},"operator":"||","right":{"start":null,"loc":null,"range":null,"name":"descriptor","type":"Identifier","end":null},"type":"LogicalExpression","end":null,"_paths":null},"type":"AssignmentExpression","end":null,"_paths":null},"type":"ExpressionStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null},"alternate":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"argument":{"start":null,"loc":null,"range":null,"callee":{"start":null,"loc":null,"range":null,"name":"TypeError","type":"Identifier","end":null},"arguments":[{"loc":null,"start":null,"range":null,"left":{"loc":null,"start":null,"range":null,"left":{"loc":null,"start":null,"range":null,"left":{"start":null,"loc":null,"range":null,"value":"The decorator for method ","raw":null,"type":"Literal","end":null},"operator":"+","right":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"descriptor","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"key","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"type":"BinaryExpression","end":null,"_paths":null},"operator":"+","right":{"start":null,"loc":null,"range":null,"value":" is of the invalid type ","raw":null,"type":"Literal","end":null},"type":"BinaryExpression","end":null,"_paths":null},"operator":"+","right":{"start":null,"loc":null,"range":null,"operator":"typeof","prefix":true,"argument":{"start":null,"loc":null,"range":null,"name":"decorator","type":"Identifier","end":null},"type":"UnaryExpression","end":null,"_paths":null},"type":"BinaryExpression","end":null,"_paths":null}],"type":"NewExpression","end":null,"_paths":null},"type":"ThrowStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null},"type":"IfStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null},"type":"ForStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null},"alternate":null,"type":"IfStatement","end":null,"_paths":null},{"start":null,"loc":null,"range":null,"test":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"descriptor","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"initializer","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"consequent":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"expression":{"loc":null,"start":null,"range":null,"operator":"=","left":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"descriptor","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"value","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"right":{"loc":null,"start":null,"range":null,"callee":{"loc":null,"start":null,"range":null,"object":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"descriptor","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"initializer","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"property":{"start":null,"loc":null,"range":null,"name":"call","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"arguments":[{"start":null,"loc":null,"range":null,"name":"target","type":"Identifier","end":null}],"type":"CallExpression","end":null,"_paths":null},"type":"AssignmentExpression","end":null,"_paths":null},"type":"ExpressionStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null},"alternate":null,"type":"IfStatement","end":null,"_paths":null},{"start":null,"loc":null,"range":null,"expression":{"loc":null,"start":null,"range":null,"callee":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"Object","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"defineProperty","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"arguments":[{"start":null,"loc":null,"range":null,"name":"target","type":"Identifier","end":null},{"start":null,"loc":null,"range":null,"name":"key","type":"Identifier","end":null},{"start":null,"loc":null,"range":null,"name":"descriptor","type":"Identifier","end":null}],"type":"CallExpression","end":null,"_paths":null},"type":"ExpressionStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null},"type":"ForStatement","end":null,"_paths":null},{"start":null,"loc":null,"range":null,"argument":{"start":null,"loc":null,"range":null,"name":"target","type":"Identifier","end":null},"type":"ReturnStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null},"type":"FunctionExpression","end":null,"parenthesizedExpression":true,"_paths":null},"type":"ExpressionStatement","end":null,"_paths":null}],"type":"Program","end":null},"helper-default-props":{"loc":null,"start":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"expression":{"start":null,"loc":null,"range":null,"id":null,"generator":false,"expression":false,"params":[{"start":null,"loc":null,"range":null,"name":"defaultProps","type":"Identifier","end":null},{"start":null,"loc":null,"range":null,"name":"props","type":"Identifier","end":null}],"body":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"test":{"start":null,"loc":null,"range":null,"name":"defaultProps","type":"Identifier","end":null},"consequent":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"left":{"start":null,"loc":null,"range":null,"declarations":[{"start":null,"loc":null,"range":null,"id":{"start":null,"loc":null,"range":null,"name":"propName","type":"Identifier","end":null},"init":null,"type":"VariableDeclarator","end":null,"_paths":null}],"kind":"var","type":"VariableDeclaration","end":null},"right":{"start":null,"loc":null,"range":null,"name":"defaultProps","type":"Identifier","end":null},"body":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"test":{"loc":null,"start":null,"range":null,"left":{"start":null,"loc":null,"range":null,"operator":"typeof","prefix":true,"argument":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"props","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"propName","type":"Identifier","end":null},"computed":true,"type":"MemberExpression","end":null,"_paths":null},"type":"UnaryExpression","end":null,"_paths":null},"operator":"===","right":{"start":null,"loc":null,"range":null,"value":"undefined","raw":null,"type":"Literal","end":null},"type":"BinaryExpression","end":null,"_paths":null},"consequent":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"expression":{"loc":null,"start":null,"range":null,"operator":"=","left":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"props","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"propName","type":"Identifier","end":null},"computed":true,"type":"MemberExpression","end":null,"_paths":null},"right":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"defaultProps","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"propName","type":"Identifier","end":null},"computed":true,"type":"MemberExpression","end":null,"_paths":null},"type":"AssignmentExpression","end":null,"_paths":null},"type":"ExpressionStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null},"alternate":null,"type":"IfStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null},"type":"ForInStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null},"alternate":null,"type":"IfStatement","end":null,"_paths":null},{"start":null,"loc":null,"range":null,"argument":{"start":null,"loc":null,"range":null,"name":"props","type":"Identifier","end":null},"type":"ReturnStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null},"type":"FunctionExpression","end":null,"parenthesizedExpression":true,"_paths":null},"type":"ExpressionStatement","end":null,"_paths":null}],"type":"Program","end":null},"helper-defaults":{"loc":null,"start":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"expression":{"start":null,"loc":null,"range":null,"id":null,"generator":false,"expression":false,"params":[{"start":null,"loc":null,"range":null,"name":"obj","type":"Identifier","end":null},{"start":null,"loc":null,"range":null,"name":"defaults","type":"Identifier","end":null}],"body":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"declarations":[{"start":null,"loc":null,"range":null,"id":{"start":null,"loc":null,"range":null,"name":"keys","type":"Identifier","end":null},"init":{"loc":null,"start":null,"range":null,"callee":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"Object","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"getOwnPropertyNames","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"arguments":[{"start":null,"loc":null,"range":null,"name":"defaults","type":"Identifier","end":null}],"type":"CallExpression","end":null,"_paths":null},"type":"VariableDeclarator","end":null,"_paths":null}],"kind":"var","type":"VariableDeclaration","end":null},{"start":null,"loc":null,"range":null,"init":{"start":null,"loc":null,"range":null,"declarations":[{"start":null,"loc":null,"range":null,"id":{"start":null,"loc":null,"range":null,"name":"i","type":"Identifier","end":null},"init":{"start":null,"loc":null,"range":null,"value":0,"raw":null,"type":"Literal","end":null},"type":"VariableDeclarator","end":null,"_paths":null}],"kind":"var","type":"VariableDeclaration","end":null},"test":{"loc":null,"start":null,"range":null,"left":{"start":null,"loc":null,"range":null,"name":"i","type":"Identifier","end":null},"operator":"<","right":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"keys","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"length","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"type":"BinaryExpression","end":null,"_paths":null},"update":{"loc":null,"start":null,"range":null,"operator":"++","prefix":false,"argument":{"start":null,"loc":null,"range":null,"name":"i","type":"Identifier","end":null},"type":"UpdateExpression","end":null,"_paths":null},"body":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"declarations":[{"start":null,"loc":null,"range":null,"id":{"start":null,"loc":null,"range":null,"name":"key","type":"Identifier","end":null},"init":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"keys","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"i","type":"Identifier","end":null},"computed":true,"type":"MemberExpression","end":null,"_paths":null},"type":"VariableDeclarator","end":null,"_paths":null}],"kind":"var","type":"VariableDeclaration","end":null},{"start":null,"loc":null,"range":null,"declarations":[{"start":null,"loc":null,"range":null,"id":{"start":null,"loc":null,"range":null,"name":"value","type":"Identifier","end":null},"init":{"loc":null,"start":null,"range":null,"callee":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"Object","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"getOwnPropertyDescriptor","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"arguments":[{"start":null,"loc":null,"range":null,"name":"defaults","type":"Identifier","end":null},{"start":null,"loc":null,"range":null,"name":"key","type":"Identifier","end":null}],"type":"CallExpression","end":null,"_paths":null},"type":"VariableDeclarator","end":null,"_paths":null}],"kind":"var","type":"VariableDeclaration","end":null},{"start":null,"loc":null,"range":null,"test":{"loc":null,"start":null,"range":null,"left":{"loc":null,"start":null,"range":null,"left":{"start":null,"loc":null,"range":null,"name":"value","type":"Identifier","end":null},"operator":"&&","right":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"value","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"configurable","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"type":"LogicalExpression","end":null,"_paths":null},"operator":"&&","right":{"loc":null,"start":null,"range":null,"left":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"obj","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"key","type":"Identifier","end":null},"computed":true,"type":"MemberExpression","end":null,"_paths":null},"operator":"===","right":{"start":null,"loc":null,"range":null,"name":"undefined","type":"Identifier","end":null},"type":"BinaryExpression","end":null,"_paths":null},"type":"LogicalExpression","end":null,"_paths":null},"consequent":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"expression":{"loc":null,"start":null,"range":null,"callee":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"Object","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"defineProperty","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"arguments":[{"start":null,"loc":null,"range":null,"name":"obj","type":"Identifier","end":null},{"start":null,"loc":null,"range":null,"name":"key","type":"Identifier","end":null},{"start":null,"loc":null,"range":null,"name":"value","type":"Identifier","end":null}],"type":"CallExpression","end":null,"_paths":null},"type":"ExpressionStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null},"alternate":null,"type":"IfStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null},"type":"ForStatement","end":null,"_paths":null},{"start":null,"loc":null,"range":null,"argument":{"start":null,"loc":null,"range":null,"name":"obj","type":"Identifier","end":null},"type":"ReturnStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null},"type":"FunctionExpression","end":null,"parenthesizedExpression":true,"_paths":null},"type":"ExpressionStatement","end":null,"_paths":null}],"type":"Program","end":null},"helper-define-decorated-property-descriptor":{"loc":null,"start":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"expression":{"start":null,"loc":null,"range":null,"id":null,"generator":false,"expression":false,"params":[{"start":null,"loc":null,"range":null,"name":"target","type":"Identifier","end":null},{"start":null,"loc":null,"range":null,"name":"key","type":"Identifier","end":null},{"start":null,"loc":null,"range":null,"name":"descriptors","type":"Identifier","end":null}],"body":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"declarations":[{"start":null,"loc":null,"range":null,"id":{"start":null,"loc":null,"range":null,"name":"_descriptor","type":"Identifier","end":null},"init":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"descriptors","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"key","type":"Identifier","end":null},"computed":true,"type":"MemberExpression","end":null,"_paths":null},"type":"VariableDeclarator","end":null,"_paths":null}],"kind":"var","type":"VariableDeclaration","end":null},{"start":null,"loc":null,"range":null,"test":{"start":null,"loc":null,"range":null,"operator":"!","prefix":true,"argument":{"start":null,"loc":null,"range":null,"name":"_descriptor","type":"Identifier","end":null},"type":"UnaryExpression","end":null,"_paths":null},"consequent":{"start":null,"loc":null,"range":null,"argument":null,"type":"ReturnStatement","end":null},"alternate":null,"type":"IfStatement","end":null,"_paths":null},{"start":null,"loc":null,"range":null,"declarations":[{"start":null,"loc":null,"range":null,"id":{"start":null,"loc":null,"range":null,"name":"descriptor","type":"Identifier","end":null},"init":{"start":null,"loc":null,"range":null,"properties":[],"type":"ObjectExpression","end":null},"type":"VariableDeclarator","end":null,"_paths":null}],"kind":"var","type":"VariableDeclaration","end":null,"leadingComments":null},{"start":null,"loc":null,"range":null,"left":{"start":null,"loc":null,"range":null,"declarations":[{"start":null,"loc":null,"range":null,"id":{"start":null,"loc":null,"range":null,"name":"_key","type":"Identifier","end":null},"init":null,"type":"VariableDeclarator","end":null,"_paths":null}],"kind":"var","type":"VariableDeclaration","end":null},"right":{"start":null,"loc":null,"range":null,"name":"_descriptor","type":"Identifier","end":null},"body":{"start":null,"loc":null,"range":null,"expression":{"loc":null,"start":null,"range":null,"operator":"=","left":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"descriptor","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"_key","type":"Identifier","end":null},"computed":true,"type":"MemberExpression","end":null,"_paths":null},"right":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"_descriptor","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"_key","type":"Identifier","end":null},"computed":true,"type":"MemberExpression","end":null,"_paths":null},"type":"AssignmentExpression","end":null,"_paths":null},"type":"ExpressionStatement","end":null,"_paths":null},"type":"ForInStatement","end":null,"_paths":null},{"start":null,"loc":null,"range":null,"expression":{"loc":null,"start":null,"range":null,"operator":"=","left":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"descriptor","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"value","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"right":{"loc":null,"start":null,"range":null,"callee":{"loc":null,"start":null,"range":null,"object":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"descriptor","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"initializer","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"property":{"start":null,"loc":null,"range":null,"name":"call","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"arguments":[{"start":null,"loc":null,"range":null,"name":"target","type":"Identifier","end":null}],"type":"CallExpression","end":null,"_paths":null},"type":"AssignmentExpression","end":null,"_paths":null},"type":"ExpressionStatement","end":null,"leadingComments":null,"_paths":null},{"start":null,"loc":null,"range":null,"expression":{"loc":null,"start":null,"range":null,"callee":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"Object","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"defineProperty","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"arguments":[{"start":null,"loc":null,"range":null,"name":"target","type":"Identifier","end":null},{"start":null,"loc":null,"range":null,"name":"key","type":"Identifier","end":null},{"start":null,"loc":null,"range":null,"name":"descriptor","type":"Identifier","end":null}],"type":"CallExpression","end":null,"_paths":null},"type":"ExpressionStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null},"type":"FunctionExpression","end":null,"parenthesizedExpression":true,"_paths":null},"type":"ExpressionStatement","end":null,"_paths":null}],"type":"Program","end":null},"helper-define-property":{"loc":null,"start":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"expression":{"start":null,"loc":null,"range":null,"id":null,"generator":false,"expression":false,"params":[{"start":null,"loc":null,"range":null,"name":"obj","type":"Identifier","end":null},{"start":null,"loc":null,"range":null,"name":"key","type":"Identifier","end":null},{"start":null,"loc":null,"range":null,"name":"value","type":"Identifier","end":null}],"body":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"argument":{"loc":null,"start":null,"range":null,"callee":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"Object","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"defineProperty","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"arguments":[{"start":null,"loc":null,"range":null,"name":"obj","type":"Identifier","end":null},{"start":null,"loc":null,"range":null,"name":"key","type":"Identifier","end":null},{"start":null,"loc":null,"range":null,"properties":[{"start":null,"loc":null,"range":null,"method":false,"shorthand":false,"computed":false,"key":{"start":null,"loc":null,"range":null,"name":"value","type":"Identifier","end":null},"value":{"start":null,"loc":null,"range":null,"name":"value","type":"Identifier","end":null},"kind":"init","type":"Property","end":null,"_paths":null},{"start":null,"loc":null,"range":null,"method":false,"shorthand":false,"computed":false,"key":{"start":null,"loc":null,"range":null,"name":"enumerable","type":"Identifier","end":null},"value":{"start":null,"loc":null,"range":null,"value":true,"raw":null,"type":"Literal","end":null},"kind":"init","type":"Property","end":null,"_paths":null},{"start":null,"loc":null,"range":null,"method":false,"shorthand":false,"computed":false,"key":{"start":null,"loc":null,"range":null,"name":"configurable","type":"Identifier","end":null},"value":{"start":null,"loc":null,"range":null,"value":true,"raw":null,"type":"Literal","end":null},"kind":"init","type":"Property","end":null,"_paths":null},{"start":null,"loc":null,"range":null,"method":false,"shorthand":false,"computed":false,"key":{"start":null,"loc":null,"range":null,"name":"writable","type":"Identifier","end":null},"value":{"start":null,"loc":null,"range":null,"value":true,"raw":null,"type":"Literal","end":null},"kind":"init","type":"Property","end":null,"_paths":null}],"type":"ObjectExpression","end":null}],"type":"CallExpression","end":null,"_paths":null},"type":"ReturnStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null},"type":"FunctionExpression","end":null,"parenthesizedExpression":true,"_paths":null},"type":"ExpressionStatement","end":null,"_paths":null}],"type":"Program","end":null},"helper-extends":{"loc":null,"start":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"expression":{"loc":null,"start":null,"range":null,"left":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"Object","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"assign","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"operator":"||","right":{"start":null,"loc":null,"range":null,"id":null,"generator":false,"expression":false,"params":[{"start":null,"loc":null,"range":null,"name":"target","type":"Identifier","end":null}],"body":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"init":{"start":null,"loc":null,"range":null,"declarations":[{"start":null,"loc":null,"range":null,"id":{"start":null,"loc":null,"range":null,"name":"i","type":"Identifier","end":null},"init":{"start":null,"loc":null,"range":null,"value":1,"raw":null,"type":"Literal","end":null},"type":"VariableDeclarator","end":null,"_paths":null}],"kind":"var","type":"VariableDeclaration","end":null},"test":{"loc":null,"start":null,"range":null,"left":{"start":null,"loc":null,"range":null,"name":"i","type":"Identifier","end":null},"operator":"<","right":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"arguments","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"length","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"type":"BinaryExpression","end":null,"_paths":null},"update":{"loc":null,"start":null,"range":null,"operator":"++","prefix":false,"argument":{"start":null,"loc":null,"range":null,"name":"i","type":"Identifier","end":null},"type":"UpdateExpression","end":null,"_paths":null},"body":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"declarations":[{"start":null,"loc":null,"range":null,"id":{"start":null,"loc":null,"range":null,"name":"source","type":"Identifier","end":null},"init":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"arguments","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"i","type":"Identifier","end":null},"computed":true,"type":"MemberExpression","end":null,"_paths":null},"type":"VariableDeclarator","end":null,"_paths":null}],"kind":"var","type":"VariableDeclaration","end":null},{"start":null,"loc":null,"range":null,"left":{"start":null,"loc":null,"range":null,"declarations":[{"start":null,"loc":null,"range":null,"id":{"start":null,"loc":null,"range":null,"name":"key","type":"Identifier","end":null},"init":null,"type":"VariableDeclarator","end":null,"_paths":null}],"kind":"var","type":"VariableDeclaration","end":null},"right":{"start":null,"loc":null,"range":null,"name":"source","type":"Identifier","end":null},"body":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"test":{"loc":null,"start":null,"range":null,"callee":{"loc":null,"start":null,"range":null,"object":{"loc":null,"start":null,"range":null,"object":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"Object","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"prototype","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"property":{"start":null,"loc":null,"range":null,"name":"hasOwnProperty","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"property":{"start":null,"loc":null,"range":null,"name":"call","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"arguments":[{"start":null,"loc":null,"range":null,"name":"source","type":"Identifier","end":null},{"start":null,"loc":null,"range":null,"name":"key","type":"Identifier","end":null}],"type":"CallExpression","end":null,"_paths":null},"consequent":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"expression":{"loc":null,"start":null,"range":null,"operator":"=","left":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"target","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"key","type":"Identifier","end":null},"computed":true,"type":"MemberExpression","end":null,"_paths":null},"right":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"source","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"key","type":"Identifier","end":null},"computed":true,"type":"MemberExpression","end":null,"_paths":null},"type":"AssignmentExpression","end":null,"_paths":null},"type":"ExpressionStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null},"alternate":null,"type":"IfStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null},"type":"ForInStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null},"type":"ForStatement","end":null,"_paths":null},{"start":null,"loc":null,"range":null,"argument":{"start":null,"loc":null,"range":null,"name":"target","type":"Identifier","end":null},"type":"ReturnStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null},"type":"FunctionExpression","end":null,"_paths":null},"type":"LogicalExpression","end":null,"_paths":null},"type":"ExpressionStatement","end":null,"_paths":null}],"type":"Program","end":null},"helper-get":{"loc":null,"start":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"expression":{"start":null,"loc":null,"range":null,"id":{"start":null,"loc":null,"range":null,"name":"get","type":"Identifier","end":null},"generator":false,"expression":false,"params":[{"start":null,"loc":null,"range":null,"name":"object","type":"Identifier","end":null},{"start":null,"loc":null,"range":null,"name":"property","type":"Identifier","end":null},{"start":null,"loc":null,"range":null,"name":"receiver","type":"Identifier","end":null}],"body":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"declarations":[{"start":null,"loc":null,"range":null,"id":{"start":null,"loc":null,"range":null,"name":"desc","type":"Identifier","end":null},"init":{"loc":null,"start":null,"range":null,"callee":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"Object","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"getOwnPropertyDescriptor","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"arguments":[{"start":null,"loc":null,"range":null,"name":"object","type":"Identifier","end":null},{"start":null,"loc":null,"range":null,"name":"property","type":"Identifier","end":null}],"type":"CallExpression","end":null,"_paths":null},"type":"VariableDeclarator","end":null,"_paths":null}],"kind":"var","type":"VariableDeclaration","end":null},{"start":null,"loc":null,"range":null,"test":{"loc":null,"start":null,"range":null,"left":{"start":null,"loc":null,"range":null,"name":"desc","type":"Identifier","end":null},"operator":"===","right":{"start":null,"loc":null,"range":null,"name":"undefined","type":"Identifier","end":null},"type":"BinaryExpression","end":null,"_paths":null},"consequent":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"declarations":[{"start":null,"loc":null,"range":null,"id":{"start":null,"loc":null,"range":null,"name":"parent","type":"Identifier","end":null},"init":{"loc":null,"start":null,"range":null,"callee":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"Object","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"getPrototypeOf","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"arguments":[{"start":null,"loc":null,"range":null,"name":"object","type":"Identifier","end":null}],"type":"CallExpression","end":null,"_paths":null},"type":"VariableDeclarator","end":null,"_paths":null}],"kind":"var","type":"VariableDeclaration","end":null},{"start":null,"loc":null,"range":null,"test":{"loc":null,"start":null,"range":null,"left":{"start":null,"loc":null,"range":null,"name":"parent","type":"Identifier","end":null},"operator":"===","right":{"start":null,"loc":null,"range":null,"value":null,"raw":null,"type":"Literal","end":null},"type":"BinaryExpression","end":null,"_paths":null},"consequent":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"argument":{"start":null,"loc":null,"range":null,"name":"undefined","type":"Identifier","end":null},"type":"ReturnStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null},"alternate":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"argument":{"loc":null,"start":null,"range":null,"callee":{"start":null,"loc":null,"range":null,"name":"get","type":"Identifier","end":null},"arguments":[{"start":null,"loc":null,"range":null,"name":"parent","type":"Identifier","end":null},{"start":null,"loc":null,"range":null,"name":"property","type":"Identifier","end":null},{"start":null,"loc":null,"range":null,"name":"receiver","type":"Identifier","end":null}],"type":"CallExpression","end":null,"_paths":null},"type":"ReturnStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null},"type":"IfStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null},"alternate":{"start":null,"loc":null,"range":null,"test":{"loc":null,"start":null,"range":null,"left":{"start":null,"loc":null,"range":null,"value":"value","raw":null,"type":"Literal","end":null},"operator":"in","right":{"start":null,"loc":null,"range":null,"name":"desc","type":"Identifier","end":null},"type":"BinaryExpression","end":null,"_paths":null},"consequent":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"argument":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"desc","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"value","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"type":"ReturnStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null},"alternate":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"declarations":[{"start":null,"loc":null,"range":null,"id":{"start":null,"loc":null,"range":null,"name":"getter","type":"Identifier","end":null},"init":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"desc","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"get","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"type":"VariableDeclarator","end":null,"_paths":null}],"kind":"var","type":"VariableDeclaration","end":null},{"start":null,"loc":null,"range":null,"test":{"loc":null,"start":null,"range":null,"left":{"start":null,"loc":null,"range":null,"name":"getter","type":"Identifier","end":null},"operator":"===","right":{"start":null,"loc":null,"range":null,"name":"undefined","type":"Identifier","end":null},"type":"BinaryExpression","end":null,"_paths":null},"consequent":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"argument":{"start":null,"loc":null,"range":null,"name":"undefined","type":"Identifier","end":null},"type":"ReturnStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null},"alternate":null,"type":"IfStatement","end":null,"_paths":null},{"start":null,"loc":null,"range":null,"argument":{"loc":null,"start":null,"range":null,"callee":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"getter","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"call","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"arguments":[{"start":null,"loc":null,"range":null,"name":"receiver","type":"Identifier","end":null}],"type":"CallExpression","end":null,"_paths":null},"type":"ReturnStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null},"type":"IfStatement","end":null,"_paths":null},"type":"IfStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null},"type":"FunctionExpression","end":null,"parenthesizedExpression":true,"_paths":null},"type":"ExpressionStatement","end":null,"_paths":null}],"type":"Program","end":null},"helper-has-own":{"loc":null,"start":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"expression":{"loc":null,"start":null,"range":null,"object":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"Object","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"prototype","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"property":{"start":null,"loc":null,"range":null,"name":"hasOwnProperty","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"type":"ExpressionStatement","end":null,"_paths":null}],"type":"Program","end":null},"helper-inherits":{"loc":null,"start":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"expression":{"start":null,"loc":null,"range":null,"id":null,"generator":false,"expression":false,"params":[{"start":null,"loc":null,"range":null,"name":"subClass","type":"Identifier","end":null},{"start":null,"loc":null,"range":null,"name":"superClass","type":"Identifier","end":null}],"body":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"test":{"loc":null,"start":null,"range":null,"left":{"loc":null,"start":null,"range":null,"left":{"start":null,"loc":null,"range":null,"operator":"typeof","prefix":true,"argument":{"start":null,"loc":null,"range":null,"name":"superClass","type":"Identifier","end":null},"type":"UnaryExpression","end":null,"_paths":null},"operator":"!==","right":{"start":null,"loc":null,"range":null,"value":"function","raw":null,"type":"Literal","end":null},"type":"BinaryExpression","end":null,"_paths":null},"operator":"&&","right":{"loc":null,"start":null,"range":null,"left":{"start":null,"loc":null,"range":null,"name":"superClass","type":"Identifier","end":null},"operator":"!==","right":{"start":null,"loc":null,"range":null,"value":null,"raw":null,"type":"Literal","end":null},"type":"BinaryExpression","end":null,"_paths":null},"type":"LogicalExpression","end":null,"_paths":null},"consequent":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"argument":{"start":null,"loc":null,"range":null,"callee":{"start":null,"loc":null,"range":null,"name":"TypeError","type":"Identifier","end":null},"arguments":[{"loc":null,"start":null,"range":null,"left":{"start":null,"loc":null,"range":null,"value":"Super expression must either be null or a function, not ","raw":null,"type":"Literal","end":null},"operator":"+","right":{"start":null,"loc":null,"range":null,"operator":"typeof","prefix":true,"argument":{"start":null,"loc":null,"range":null,"name":"superClass","type":"Identifier","end":null},"type":"UnaryExpression","end":null,"_paths":null},"type":"BinaryExpression","end":null,"_paths":null}],"type":"NewExpression","end":null,"_paths":null},"type":"ThrowStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null},"alternate":null,"type":"IfStatement","end":null,"_paths":null},{"start":null,"loc":null,"range":null,"expression":{"loc":null,"start":null,"range":null,"operator":"=","left":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"subClass","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"prototype","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"right":{"loc":null,"start":null,"range":null,"callee":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"Object","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"create","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"arguments":[{"loc":null,"start":null,"range":null,"left":{"start":null,"loc":null,"range":null,"name":"superClass","type":"Identifier","end":null},"operator":"&&","right":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"superClass","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"prototype","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"type":"LogicalExpression","end":null,"_paths":null},{"start":null,"loc":null,"range":null,"properties":[{"start":null,"loc":null,"range":null,"method":false,"shorthand":false,"computed":false,"key":{"start":null,"loc":null,"range":null,"name":"constructor","type":"Identifier","end":null},"value":{"start":null,"loc":null,"range":null,"properties":[{"start":null,"loc":null,"range":null,"method":false,"shorthand":false,"computed":false,"key":{"start":null,"loc":null,"range":null,"name":"value","type":"Identifier","end":null},"value":{"start":null,"loc":null,"range":null,"name":"subClass","type":"Identifier","end":null},"kind":"init","type":"Property","end":null,"_paths":null},{"start":null,"loc":null,"range":null,"method":false,"shorthand":false,"computed":false,"key":{"start":null,"loc":null,"range":null,"name":"enumerable","type":"Identifier","end":null},"value":{"start":null,"loc":null,"range":null,"value":false,"raw":null,"type":"Literal","end":null},"kind":"init","type":"Property","end":null,"_paths":null},{"start":null,"loc":null,"range":null,"method":false,"shorthand":false,"computed":false,"key":{"start":null,"loc":null,"range":null,"name":"writable","type":"Identifier","end":null},"value":{"start":null,"loc":null,"range":null,"value":true,"raw":null,"type":"Literal","end":null},"kind":"init","type":"Property","end":null,"_paths":null},{"start":null,"loc":null,"range":null,"method":false,"shorthand":false,"computed":false,"key":{"start":null,"loc":null,"range":null,"name":"configurable","type":"Identifier","end":null},"value":{"start":null,"loc":null,"range":null,"value":true,"raw":null,"type":"Literal","end":null},"kind":"init","type":"Property","end":null,"_paths":null}],"type":"ObjectExpression","end":null},"kind":"init","type":"Property","end":null,"_paths":null}],"type":"ObjectExpression","end":null}],"type":"CallExpression","end":null,"_paths":null},"type":"AssignmentExpression","end":null,"_paths":null},"type":"ExpressionStatement","end":null,"_paths":null},{"start":null,"loc":null,"range":null,"test":{"start":null,"loc":null,"range":null,"name":"superClass","type":"Identifier","end":null},"consequent":{"start":null,"loc":null,"range":null,"expression":{"loc":null,"start":null,"range":null,"operator":"=","left":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"subClass","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"__proto__","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"right":{"start":null,"loc":null,"range":null,"name":"superClass","type":"Identifier","end":null},"type":"AssignmentExpression","end":null,"_paths":null},"type":"ExpressionStatement","end":null,"_paths":null},"alternate":null,"type":"IfStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null},"type":"FunctionExpression","end":null,"parenthesizedExpression":true,"_paths":null},"type":"ExpressionStatement","end":null,"_paths":null}],"type":"Program","end":null},"helper-instanceof":{"loc":null,"start":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"expression":{"start":null,"loc":null,"range":null,"id":null,"generator":false,"expression":false,"params":[{"start":null,"loc":null,"range":null,"name":"left","type":"Identifier","end":null},{"start":null,"loc":null,"range":null,"name":"right","type":"Identifier","end":null}],"body":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"test":{"loc":null,"start":null,"range":null,"left":{"loc":null,"start":null,"range":null,"left":{"start":null,"loc":null,"range":null,"name":"right","type":"Identifier","end":null},"operator":"!=","right":{"start":null,"loc":null,"range":null,"value":null,"raw":null,"type":"Literal","end":null},"type":"BinaryExpression","end":null,"_paths":null},"operator":"&&","right":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"right","type":"Identifier","end":null},"property":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"Symbol","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"hasInstance","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"computed":true,"type":"MemberExpression","end":null,"_paths":null},"type":"LogicalExpression","end":null,"_paths":null},"consequent":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"argument":{"loc":null,"start":null,"range":null,"callee":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"right","type":"Identifier","end":null},"property":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"Symbol","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"hasInstance","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"computed":true,"type":"MemberExpression","end":null,"_paths":null},"arguments":[{"start":null,"loc":null,"range":null,"name":"left","type":"Identifier","end":null}],"type":"CallExpression","end":null,"_paths":null},"type":"ReturnStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null},"alternate":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"argument":{"loc":null,"start":null,"range":null,"left":{"start":null,"loc":null,"range":null,"name":"left","type":"Identifier","end":null},"operator":"instanceof","right":{"start":null,"loc":null,"range":null,"name":"right","type":"Identifier","end":null},"type":"BinaryExpression","end":null,"_paths":null},"type":"ReturnStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null},"type":"IfStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null},"type":"FunctionExpression","end":null,"parenthesizedExpression":true,"_paths":null},"type":"ExpressionStatement","end":null,"_paths":null}],"type":"Program","end":null},"helper-interop-require-default":{"loc":null,"start":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"expression":{"start":null,"loc":null,"range":null,"id":null,"generator":false,"expression":false,"params":[{"start":null,"loc":null,"range":null,"name":"obj","type":"Identifier","end":null}],"body":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"argument":{"loc":null,"start":null,"range":null,"test":{"loc":null,"start":null,"range":null,"left":{"start":null,"loc":null,"range":null,"name":"obj","type":"Identifier","end":null},"operator":"&&","right":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"obj","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"__esModule","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"type":"LogicalExpression","end":null,"_paths":null},"consequent":{"start":null,"loc":null,"range":null,"name":"obj","type":"Identifier","end":null},"alternate":{"start":null,"loc":null,"range":null,"properties":[{"start":null,"loc":null,"range":null,"method":false,"shorthand":false,"computed":false,"key":{"start":null,"loc":null,"range":null,"value":"default","raw":null,"type":"Literal","end":null},"value":{"start":null,"loc":null,"range":null,"name":"obj","type":"Identifier","end":null},"kind":"init","type":"Property","end":null,"_paths":null}],"type":"ObjectExpression","end":null},"type":"ConditionalExpression","end":null,"_paths":null},"type":"ReturnStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null},"type":"FunctionExpression","end":null,"parenthesizedExpression":true,"_paths":null},"type":"ExpressionStatement","end":null,"_paths":null}],"type":"Program","end":null},"helper-interop-require-wildcard":{"loc":null,"start":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"expression":{"start":null,"loc":null,"range":null,"id":null,"generator":false,"expression":false,"params":[{"start":null,"loc":null,"range":null,"name":"obj","type":"Identifier","end":null}],"body":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"test":{"loc":null,"start":null,"range":null,"left":{"start":null,"loc":null,"range":null,"name":"obj","type":"Identifier","end":null},"operator":"&&","right":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"obj","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"__esModule","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"type":"LogicalExpression","end":null,"_paths":null},"consequent":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"argument":{"start":null,"loc":null,"range":null,"name":"obj","type":"Identifier","end":null},"type":"ReturnStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null},"alternate":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"declarations":[{"start":null,"loc":null,"range":null,"id":{"start":null,"loc":null,"range":null,"name":"newObj","type":"Identifier","end":null},"init":{"start":null,"loc":null,"range":null,"properties":[],"type":"ObjectExpression","end":null},"type":"VariableDeclarator","end":null,"_paths":null}],"kind":"var","type":"VariableDeclaration","end":null},{"start":null,"loc":null,"range":null,"test":{"loc":null,"start":null,"range":null,"left":{"start":null,"loc":null,"range":null,"name":"obj","type":"Identifier","end":null},"operator":"!=","right":{"start":null,"loc":null,"range":null,"value":null,"raw":null,"type":"Literal","end":null},"type":"BinaryExpression","end":null,"_paths":null},"consequent":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"left":{"start":null,"loc":null,"range":null,"declarations":[{"start":null,"loc":null,"range":null,"id":{"start":null,"loc":null,"range":null,"name":"key","type":"Identifier","end":null},"init":null,"type":"VariableDeclarator","end":null,"_paths":null}],"kind":"var","type":"VariableDeclaration","end":null},"right":{"start":null,"loc":null,"range":null,"name":"obj","type":"Identifier","end":null},"body":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"test":{"loc":null,"start":null,"range":null,"callee":{"loc":null,"start":null,"range":null,"object":{"loc":null,"start":null,"range":null,"object":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"Object","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"prototype","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"property":{"start":null,"loc":null,"range":null,"name":"hasOwnProperty","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"property":{"start":null,"loc":null,"range":null,"name":"call","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"arguments":[{"start":null,"loc":null,"range":null,"name":"obj","type":"Identifier","end":null},{"start":null,"loc":null,"range":null,"name":"key","type":"Identifier","end":null}],"type":"CallExpression","end":null,"_paths":null},"consequent":{"start":null,"loc":null,"range":null,"expression":{"loc":null,"start":null,"range":null,"operator":"=","left":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"newObj","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"key","type":"Identifier","end":null},"computed":true,"type":"MemberExpression","end":null,"_paths":null},"right":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"obj","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"key","type":"Identifier","end":null},"computed":true,"type":"MemberExpression","end":null,"_paths":null},"type":"AssignmentExpression","end":null,"_paths":null},"type":"ExpressionStatement","end":null,"_paths":null},"alternate":null,"type":"IfStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null},"type":"ForInStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null},"alternate":null,"type":"IfStatement","end":null,"_paths":null},{"start":null,"loc":null,"range":null,"expression":{"loc":null,"start":null,"range":null,"operator":"=","left":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"newObj","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"value":"default","raw":null,"type":"Literal","end":null},"computed":true,"type":"MemberExpression","end":null,"_paths":null},"right":{"start":null,"loc":null,"range":null,"name":"obj","type":"Identifier","end":null},"type":"AssignmentExpression","end":null,"_paths":null},"type":"ExpressionStatement","end":null,"_paths":null},{"start":null,"loc":null,"range":null,"argument":{"start":null,"loc":null,"range":null,"name":"newObj","type":"Identifier","end":null},"type":"ReturnStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null},"type":"IfStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null},"type":"FunctionExpression","end":null,"parenthesizedExpression":true,"_paths":null},"type":"ExpressionStatement","end":null,"_paths":null}],"type":"Program","end":null},"helper-interop-require":{"loc":null,"start":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"expression":{"start":null,"loc":null,"range":null,"id":null,"generator":false,"expression":false,"params":[{"start":null,"loc":null,"range":null,"name":"obj","type":"Identifier","end":null}],"body":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"argument":{"loc":null,"start":null,"range":null,"test":{"loc":null,"start":null,"range":null,"left":{"start":null,"loc":null,"range":null,"name":"obj","type":"Identifier","end":null},"operator":"&&","right":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"obj","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"__esModule","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"type":"LogicalExpression","end":null,"_paths":null},"consequent":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"obj","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"value":"default","raw":null,"type":"Literal","end":null},"computed":true,"type":"MemberExpression","end":null,"_paths":null},"alternate":{"start":null,"loc":null,"range":null,"name":"obj","type":"Identifier","end":null},"type":"ConditionalExpression","end":null,"_paths":null},"type":"ReturnStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null},"type":"FunctionExpression","end":null,"parenthesizedExpression":true,"_paths":null},"type":"ExpressionStatement","end":null,"_paths":null}],"type":"Program","end":null},"helper-object-destructuring-empty":{"loc":null,"start":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"expression":{"start":null,"loc":null,"range":null,"id":null,"generator":false,"expression":false,"params":[{"start":null,"loc":null,"range":null,"name":"obj","type":"Identifier","end":null}],"body":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"test":{"loc":null,"start":null,"range":null,"left":{"start":null,"loc":null,"range":null,"name":"obj","type":"Identifier","end":null},"operator":"==","right":{"start":null,"loc":null,"range":null,"value":null,"raw":null,"type":"Literal","end":null},"type":"BinaryExpression","end":null,"_paths":null},"consequent":{"start":null,"loc":null,"range":null,"argument":{"start":null,"loc":null,"range":null,"callee":{"start":null,"loc":null,"range":null,"name":"TypeError","type":"Identifier","end":null},"arguments":[{"start":null,"loc":null,"range":null,"value":"Cannot destructure undefined","raw":null,"type":"Literal","end":null}],"type":"NewExpression","end":null,"_paths":null},"type":"ThrowStatement","end":null,"_paths":null},"alternate":null,"type":"IfStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null},"type":"FunctionExpression","end":null,"parenthesizedExpression":true,"_paths":null},"type":"ExpressionStatement","end":null,"_paths":null}],"type":"Program","end":null},"helper-object-without-properties":{"loc":null,"start":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"expression":{"start":null,"loc":null,"range":null,"id":null,"generator":false,"expression":false,"params":[{"start":null,"loc":null,"range":null,"name":"obj","type":"Identifier","end":null},{"start":null,"loc":null,"range":null,"name":"keys","type":"Identifier","end":null}],"body":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"declarations":[{"start":null,"loc":null,"range":null,"id":{"start":null,"loc":null,"range":null,"name":"target","type":"Identifier","end":null},"init":{"start":null,"loc":null,"range":null,"properties":[],"type":"ObjectExpression","end":null},"type":"VariableDeclarator","end":null,"_paths":null}],"kind":"var","type":"VariableDeclaration","end":null},{"start":null,"loc":null,"range":null,"left":{"start":null,"loc":null,"range":null,"declarations":[{"start":null,"loc":null,"range":null,"id":{"start":null,"loc":null,"range":null,"name":"i","type":"Identifier","end":null},"init":null,"type":"VariableDeclarator","end":null,"_paths":null}],"kind":"var","type":"VariableDeclaration","end":null},"right":{"start":null,"loc":null,"range":null,"name":"obj","type":"Identifier","end":null},"body":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"test":{"loc":null,"start":null,"range":null,"left":{"loc":null,"start":null,"range":null,"callee":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"keys","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"indexOf","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"arguments":[{"start":null,"loc":null,"range":null,"name":"i","type":"Identifier","end":null}],"type":"CallExpression","end":null,"_paths":null},"operator":">=","right":{"start":null,"loc":null,"range":null,"value":0,"raw":null,"type":"Literal","end":null},"type":"BinaryExpression","end":null,"_paths":null},"consequent":{"start":null,"loc":null,"range":null,"label":null,"type":"ContinueStatement","end":null},"alternate":null,"type":"IfStatement","end":null,"_paths":null},{"start":null,"loc":null,"range":null,"test":{"start":null,"loc":null,"range":null,"operator":"!","prefix":true,"argument":{"loc":null,"start":null,"range":null,"callee":{"loc":null,"start":null,"range":null,"object":{"loc":null,"start":null,"range":null,"object":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"Object","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"prototype","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"property":{"start":null,"loc":null,"range":null,"name":"hasOwnProperty","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"property":{"start":null,"loc":null,"range":null,"name":"call","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"arguments":[{"start":null,"loc":null,"range":null,"name":"obj","type":"Identifier","end":null},{"start":null,"loc":null,"range":null,"name":"i","type":"Identifier","end":null}],"type":"CallExpression","end":null,"_paths":null},"type":"UnaryExpression","end":null,"_paths":null},"consequent":{"start":null,"loc":null,"range":null,"label":null,"type":"ContinueStatement","end":null},"alternate":null,"type":"IfStatement","end":null,"_paths":null},{"start":null,"loc":null,"range":null,"expression":{"loc":null,"start":null,"range":null,"operator":"=","left":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"target","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"i","type":"Identifier","end":null},"computed":true,"type":"MemberExpression","end":null,"_paths":null},"right":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"obj","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"i","type":"Identifier","end":null},"computed":true,"type":"MemberExpression","end":null,"_paths":null},"type":"AssignmentExpression","end":null,"_paths":null},"type":"ExpressionStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null},"type":"ForInStatement","end":null,"_paths":null},{"start":null,"loc":null,"range":null,"argument":{"start":null,"loc":null,"range":null,"name":"target","type":"Identifier","end":null},"type":"ReturnStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null},"type":"FunctionExpression","end":null,"parenthesizedExpression":true,"_paths":null},"type":"ExpressionStatement","end":null,"_paths":null}],"type":"Program","end":null},"helper-self-global":{"loc":null,"start":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"expression":{"loc":null,"start":null,"range":null,"test":{"loc":null,"start":null,"range":null,"left":{"start":null,"loc":null,"range":null,"operator":"typeof","prefix":true,"argument":{"start":null,"loc":null,"range":null,"name":"global","type":"Identifier","end":null},"type":"UnaryExpression","end":null,"_paths":null},"operator":"===","right":{"start":null,"loc":null,"range":null,"value":"undefined","raw":null,"type":"Literal","end":null},"type":"BinaryExpression","end":null,"_paths":null},"consequent":{"start":null,"loc":null,"range":null,"name":"self","type":"Identifier","end":null},"alternate":{"start":null,"loc":null,"range":null,"name":"global","type":"Identifier","end":null},"type":"ConditionalExpression","end":null,"_paths":null},"type":"ExpressionStatement","end":null,"_paths":null}],"type":"Program","end":null},"helper-set":{"loc":null,"start":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"expression":{"start":null,"loc":null,"range":null,"id":{"start":null,"loc":null,"range":null,"name":"set","type":"Identifier","end":null},"generator":false,"expression":false,"params":[{"start":null,"loc":null,"range":null,"name":"object","type":"Identifier","end":null},{"start":null,"loc":null,"range":null,"name":"property","type":"Identifier","end":null},{"start":null,"loc":null,"range":null,"name":"value","type":"Identifier","end":null},{"start":null,"loc":null,"range":null,"name":"receiver","type":"Identifier","end":null}],"body":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"declarations":[{"start":null,"loc":null,"range":null,"id":{"start":null,"loc":null,"range":null,"name":"desc","type":"Identifier","end":null},"init":{"loc":null,"start":null,"range":null,"callee":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"Object","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"getOwnPropertyDescriptor","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"arguments":[{"start":null,"loc":null,"range":null,"name":"object","type":"Identifier","end":null},{"start":null,"loc":null,"range":null,"name":"property","type":"Identifier","end":null}],"type":"CallExpression","end":null,"_paths":null},"type":"VariableDeclarator","end":null,"_paths":null}],"kind":"var","type":"VariableDeclaration","end":null},{"start":null,"loc":null,"range":null,"test":{"loc":null,"start":null,"range":null,"left":{"start":null,"loc":null,"range":null,"name":"desc","type":"Identifier","end":null},"operator":"===","right":{"start":null,"loc":null,"range":null,"name":"undefined","type":"Identifier","end":null},"type":"BinaryExpression","end":null,"_paths":null},"consequent":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"declarations":[{"start":null,"loc":null,"range":null,"id":{"start":null,"loc":null,"range":null,"name":"parent","type":"Identifier","end":null},"init":{"loc":null,"start":null,"range":null,"callee":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"Object","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"getPrototypeOf","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"arguments":[{"start":null,"loc":null,"range":null,"name":"object","type":"Identifier","end":null}],"type":"CallExpression","end":null,"_paths":null},"type":"VariableDeclarator","end":null,"_paths":null}],"kind":"var","type":"VariableDeclaration","end":null},{"start":null,"loc":null,"range":null,"test":{"loc":null,"start":null,"range":null,"left":{"start":null,"loc":null,"range":null,"name":"parent","type":"Identifier","end":null},"operator":"!==","right":{"start":null,"loc":null,"range":null,"value":null,"raw":null,"type":"Literal","end":null},"type":"BinaryExpression","end":null,"_paths":null},"consequent":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"expression":{"loc":null,"start":null,"range":null,"callee":{"start":null,"loc":null,"range":null,"name":"set","type":"Identifier","end":null},"arguments":[{"start":null,"loc":null,"range":null,"name":"parent","type":"Identifier","end":null},{"start":null,"loc":null,"range":null,"name":"property","type":"Identifier","end":null},{"start":null,"loc":null,"range":null,"name":"value","type":"Identifier","end":null},{"start":null,"loc":null,"range":null,"name":"receiver","type":"Identifier","end":null}],"type":"CallExpression","end":null,"_paths":null},"type":"ExpressionStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null},"alternate":null,"type":"IfStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null},"alternate":{"start":null,"loc":null,"range":null,"test":{"loc":null,"start":null,"range":null,"left":{"loc":null,"start":null,"range":null,"left":{"start":null,"loc":null,"range":null,"value":"value","raw":null,"type":"Literal","end":null},"operator":"in","right":{"start":null,"loc":null,"range":null,"name":"desc","type":"Identifier","end":null},"type":"BinaryExpression","end":null,"_paths":null},"operator":"&&","right":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"desc","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"writable","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"type":"LogicalExpression","end":null,"_paths":null},"consequent":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"expression":{"loc":null,"start":null,"range":null,"operator":"=","left":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"desc","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"value","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"right":{"start":null,"loc":null,"range":null,"name":"value","type":"Identifier","end":null},"type":"AssignmentExpression","end":null,"_paths":null},"type":"ExpressionStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null},"alternate":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"declarations":[{"start":null,"loc":null,"range":null,"id":{"start":null,"loc":null,"range":null,"name":"setter","type":"Identifier","end":null},"init":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"desc","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"set","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"type":"VariableDeclarator","end":null,"_paths":null}],"kind":"var","type":"VariableDeclaration","end":null},{"start":null,"loc":null,"range":null,"test":{"loc":null,"start":null,"range":null,"left":{"start":null,"loc":null,"range":null,"name":"setter","type":"Identifier","end":null},"operator":"!==","right":{"start":null,"loc":null,"range":null,"name":"undefined","type":"Identifier","end":null},"type":"BinaryExpression","end":null,"_paths":null},"consequent":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"expression":{"loc":null,"start":null,"range":null,"callee":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"setter","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"call","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"arguments":[{"start":null,"loc":null,"range":null,"name":"receiver","type":"Identifier","end":null},{"start":null,"loc":null,"range":null,"name":"value","type":"Identifier","end":null}],"type":"CallExpression","end":null,"_paths":null},"type":"ExpressionStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null},"alternate":null,"type":"IfStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null},"type":"IfStatement","end":null,"_paths":null},"type":"IfStatement","end":null,"_paths":null},{"start":null,"loc":null,"range":null,"argument":{"start":null,"loc":null,"range":null,"name":"value","type":"Identifier","end":null},"type":"ReturnStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null},"type":"FunctionExpression","end":null,"parenthesizedExpression":true,"_paths":null},"type":"ExpressionStatement","end":null,"_paths":null}],"type":"Program","end":null},"helper-slice":{"loc":null,"start":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"expression":{"loc":null,"start":null,"range":null,"object":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"Array","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"prototype","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"property":{"start":null,"loc":null,"range":null,"name":"slice","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"type":"ExpressionStatement","end":null,"_paths":null}],"type":"Program","end":null},"helper-sliced-to-array-loose":{"loc":null,"start":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"expression":{"start":null,"loc":null,"range":null,"id":null,"generator":false,"expression":false,"params":[{"start":null,"loc":null,"range":null,"name":"arr","type":"Identifier","end":null},{"start":null,"loc":null,"range":null,"name":"i","type":"Identifier","end":null}],"body":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"test":{"loc":null,"start":null,"range":null,"callee":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"Array","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"isArray","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"arguments":[{"start":null,"loc":null,"range":null,"name":"arr","type":"Identifier","end":null}],"type":"CallExpression","end":null,"_paths":null},"consequent":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"argument":{"start":null,"loc":null,"range":null,"name":"arr","type":"Identifier","end":null},"type":"ReturnStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null},"alternate":{"start":null,"loc":null,"range":null,"test":{"loc":null,"start":null,"range":null,"left":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"Symbol","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"iterator","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"operator":"in","right":{"loc":null,"start":null,"range":null,"callee":{"start":null,"loc":null,"range":null,"name":"Object","type":"Identifier","end":null},"arguments":[{"start":null,"loc":null,"range":null,"name":"arr","type":"Identifier","end":null}],"type":"CallExpression","end":null,"_paths":null},"type":"BinaryExpression","end":null,"_paths":null},"consequent":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"declarations":[{"start":null,"loc":null,"range":null,"id":{"start":null,"loc":null,"range":null,"name":"_arr","type":"Identifier","end":null},"init":{"start":null,"loc":null,"range":null,"elements":[],"type":"ArrayExpression","end":null},"type":"VariableDeclarator","end":null,"_paths":null}],"kind":"var","type":"VariableDeclaration","end":null},{"start":null,"loc":null,"range":null,"init":{"start":null,"loc":null,"range":null,"declarations":[{"start":null,"loc":null,"range":null,"id":{"start":null,"loc":null,"range":null,"name":"_iterator","type":"Identifier","end":null},"init":{"loc":null,"start":null,"range":null,"callee":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"arr","type":"Identifier","end":null},"property":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"Symbol","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"iterator","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"computed":true,"type":"MemberExpression","end":null,"_paths":null},"arguments":[],"type":"CallExpression","end":null,"_paths":null},"type":"VariableDeclarator","end":null,"_paths":null},{"start":null,"loc":null,"range":null,"id":{"start":null,"loc":null,"range":null,"name":"_step","type":"Identifier","end":null},"init":null,"type":"VariableDeclarator","end":null,"_paths":null}],"kind":"var","type":"VariableDeclaration","end":null},"test":{"start":null,"loc":null,"range":null,"operator":"!","prefix":true,"argument":{"loc":null,"start":null,"range":null,"object":{"loc":null,"start":null,"range":null,"operator":"=","left":{"start":null,"loc":null,"range":null,"name":"_step","type":"Identifier","end":null},"right":{"loc":null,"start":null,"range":null,"callee":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"_iterator","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"next","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"arguments":[],"type":"CallExpression","end":null,"_paths":null},"type":"AssignmentExpression","end":null,"parenthesizedExpression":true,"_paths":null},"property":{"start":null,"loc":null,"range":null,"name":"done","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"type":"UnaryExpression","end":null,"_paths":null},"update":null,"body":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"expression":{"loc":null,"start":null,"range":null,"callee":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"_arr","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"push","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"arguments":[{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"_step","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"value","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null}],"type":"CallExpression","end":null,"_paths":null},"type":"ExpressionStatement","end":null,"_paths":null},{"start":null,"loc":null,"range":null,"test":{"loc":null,"start":null,"range":null,"left":{"start":null,"loc":null,"range":null,"name":"i","type":"Identifier","end":null},"operator":"&&","right":{"loc":null,"start":null,"range":null,"left":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"_arr","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"length","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"operator":"===","right":{"start":null,"loc":null,"range":null,"name":"i","type":"Identifier","end":null},"type":"BinaryExpression","end":null,"_paths":null},"type":"LogicalExpression","end":null,"_paths":null},"consequent":{"start":null,"loc":null,"range":null,"label":null,"type":"BreakStatement","end":null},"alternate":null,"type":"IfStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null},"type":"ForStatement","end":null,"_paths":null},{"start":null,"loc":null,"range":null,"argument":{"start":null,"loc":null,"range":null,"name":"_arr","type":"Identifier","end":null},"type":"ReturnStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null},"alternate":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"argument":{"start":null,"loc":null,"range":null,"callee":{"start":null,"loc":null,"range":null,"name":"TypeError","type":"Identifier","end":null},"arguments":[{"start":null,"loc":null,"range":null,"value":"Invalid attempt to destructure non-iterable instance","raw":null,"type":"Literal","end":null}],"type":"NewExpression","end":null,"_paths":null},"type":"ThrowStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null},"type":"IfStatement","end":null,"_paths":null},"type":"IfStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null},"type":"FunctionExpression","end":null,"parenthesizedExpression":true,"_paths":null},"type":"ExpressionStatement","end":null,"_paths":null}],"type":"Program","end":null},"helper-sliced-to-array":{"loc":null,"start":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"expression":{"start":null,"loc":null,"range":null,"id":null,"generator":false,"expression":false,"params":[{"start":null,"loc":null,"range":null,"name":"arr","type":"Identifier","end":null},{"start":null,"loc":null,"range":null,"name":"i","type":"Identifier","end":null}],"body":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"test":{"loc":null,"start":null,"range":null,"callee":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"Array","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"isArray","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"arguments":[{"start":null,"loc":null,"range":null,"name":"arr","type":"Identifier","end":null}],"type":"CallExpression","end":null,"_paths":null},"consequent":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"argument":{"start":null,"loc":null,"range":null,"name":"arr","type":"Identifier","end":null},"type":"ReturnStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null},"alternate":{"start":null,"loc":null,"range":null,"test":{"loc":null,"start":null,"range":null,"left":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"Symbol","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"iterator","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"operator":"in","right":{"loc":null,"start":null,"range":null,"callee":{"start":null,"loc":null,"range":null,"name":"Object","type":"Identifier","end":null},"arguments":[{"start":null,"loc":null,"range":null,"name":"arr","type":"Identifier","end":null}],"type":"CallExpression","end":null,"_paths":null},"type":"BinaryExpression","end":null,"_paths":null},"consequent":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"declarations":[{"start":null,"loc":null,"range":null,"id":{"start":null,"loc":null,"range":null,"name":"_arr","type":"Identifier","end":null},"init":{"start":null,"loc":null,"range":null,"elements":[],"type":"ArrayExpression","end":null},"type":"VariableDeclarator","end":null,"_paths":null}],"kind":"var","type":"VariableDeclaration","end":null,"leadingComments":null},{"start":null,"loc":null,"range":null,"declarations":[{"start":null,"loc":null,"range":null,"id":{"start":null,"loc":null,"range":null,"name":"_n","type":"Identifier","end":null},"init":{"start":null,"loc":null,"range":null,"value":true,"raw":null,"type":"Literal","end":null},"type":"VariableDeclarator","end":null,"_paths":null}],"kind":"var","type":"VariableDeclaration","end":null},{"start":null,"loc":null,"range":null,"declarations":[{"start":null,"loc":null,"range":null,"id":{"start":null,"loc":null,"range":null,"name":"_d","type":"Identifier","end":null},"init":{"start":null,"loc":null,"range":null,"value":false,"raw":null,"type":"Literal","end":null},"type":"VariableDeclarator","end":null,"_paths":null}],"kind":"var","type":"VariableDeclaration","end":null},{"start":null,"loc":null,"range":null,"declarations":[{"start":null,"loc":null,"range":null,"id":{"start":null,"loc":null,"range":null,"name":"_e","type":"Identifier","end":null},"init":{"start":null,"loc":null,"range":null,"name":"undefined","type":"Identifier","end":null},"type":"VariableDeclarator","end":null,"_paths":null}],"kind":"var","type":"VariableDeclaration","end":null},{"start":null,"loc":null,"range":null,"block":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"init":{"start":null,"loc":null,"range":null,"declarations":[{"start":null,"loc":null,"range":null,"id":{"start":null,"loc":null,"range":null,"name":"_i","type":"Identifier","end":null},"init":{"loc":null,"start":null,"range":null,"callee":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"arr","type":"Identifier","end":null},"property":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"Symbol","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"iterator","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"computed":true,"type":"MemberExpression","end":null,"_paths":null},"arguments":[],"type":"CallExpression","end":null,"_paths":null},"type":"VariableDeclarator","end":null,"_paths":null},{"start":null,"loc":null,"range":null,"id":{"start":null,"loc":null,"range":null,"name":"_s","type":"Identifier","end":null},"init":null,"type":"VariableDeclarator","end":null,"_paths":null}],"kind":"var","type":"VariableDeclaration","end":null},"test":{"start":null,"loc":null,"range":null,"operator":"!","prefix":true,"argument":{"loc":null,"start":null,"range":null,"operator":"=","left":{"start":null,"loc":null,"range":null,"name":"_n","type":"Identifier","end":null},"right":{"loc":null,"start":null,"range":null,"object":{"loc":null,"start":null,"range":null,"operator":"=","left":{"start":null,"loc":null,"range":null,"name":"_s","type":"Identifier","end":null},"right":{"loc":null,"start":null,"range":null,"callee":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"_i","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"next","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"arguments":[],"type":"CallExpression","end":null,"_paths":null},"type":"AssignmentExpression","end":null,"parenthesizedExpression":true,"_paths":null},"property":{"start":null,"loc":null,"range":null,"name":"done","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"type":"AssignmentExpression","end":null,"parenthesizedExpression":true,"_paths":null},"type":"UnaryExpression","end":null,"_paths":null},"update":{"loc":null,"start":null,"range":null,"operator":"=","left":{"start":null,"loc":null,"range":null,"name":"_n","type":"Identifier","end":null},"right":{"start":null,"loc":null,"range":null,"value":true,"raw":null,"type":"Literal","end":null},"type":"AssignmentExpression","end":null,"_paths":null},"body":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"expression":{"loc":null,"start":null,"range":null,"callee":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"_arr","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"push","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"arguments":[{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"_s","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"value","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null}],"type":"CallExpression","end":null,"_paths":null},"type":"ExpressionStatement","end":null,"_paths":null},{"start":null,"loc":null,"range":null,"test":{"loc":null,"start":null,"range":null,"left":{"start":null,"loc":null,"range":null,"name":"i","type":"Identifier","end":null},"operator":"&&","right":{"loc":null,"start":null,"range":null,"left":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"_arr","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"length","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"operator":"===","right":{"start":null,"loc":null,"range":null,"name":"i","type":"Identifier","end":null},"type":"BinaryExpression","end":null,"_paths":null},"type":"LogicalExpression","end":null,"_paths":null},"consequent":{"start":null,"loc":null,"range":null,"label":null,"type":"BreakStatement","end":null},"alternate":null,"type":"IfStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null},"type":"ForStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null},"handler":{"start":null,"loc":null,"range":null,"param":{"start":null,"loc":null,"range":null,"name":"err","type":"Identifier","end":null},"guard":null,"body":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"expression":{"loc":null,"start":null,"range":null,"operator":"=","left":{"start":null,"loc":null,"range":null,"name":"_d","type":"Identifier","end":null},"right":{"start":null,"loc":null,"range":null,"value":true,"raw":null,"type":"Literal","end":null},"type":"AssignmentExpression","end":null,"_paths":null},"type":"ExpressionStatement","end":null,"_paths":null},{"start":null,"loc":null,"range":null,"expression":{"loc":null,"start":null,"range":null,"operator":"=","left":{"start":null,"loc":null,"range":null,"name":"_e","type":"Identifier","end":null},"right":{"start":null,"loc":null,"range":null,"name":"err","type":"Identifier","end":null},"type":"AssignmentExpression","end":null,"_paths":null},"type":"ExpressionStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null},"type":"CatchClause","end":null,"_paths":null},"guardedHandlers":[],"finalizer":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"block":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"test":{"loc":null,"start":null,"range":null,"left":{"start":null,"loc":null,"range":null,"operator":"!","prefix":true,"argument":{"start":null,"loc":null,"range":null,"name":"_n","type":"Identifier","end":null},"type":"UnaryExpression","end":null,"_paths":null},"operator":"&&","right":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"_i","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"value":"return","raw":null,"type":"Literal","end":null},"computed":true,"type":"MemberExpression","end":null,"_paths":null},"type":"LogicalExpression","end":null,"_paths":null},"consequent":{"start":null,"loc":null,"range":null,"expression":{"loc":null,"start":null,"range":null,"callee":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"_i","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"value":"return","raw":null,"type":"Literal","end":null},"computed":true,"type":"MemberExpression","end":null,"_paths":null},"arguments":[],"type":"CallExpression","end":null,"_paths":null},"type":"ExpressionStatement","end":null,"_paths":null},"alternate":null,"type":"IfStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null},"handler":null,"guardedHandlers":[],"finalizer":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"test":{"start":null,"loc":null,"range":null,"name":"_d","type":"Identifier","end":null},"consequent":{"start":null,"loc":null,"range":null,"argument":{"start":null,"loc":null,"range":null,"name":"_e","type":"Identifier","end":null},"type":"ThrowStatement","end":null,"_paths":null},"alternate":null,"type":"IfStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null},"type":"TryStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null},"type":"TryStatement","end":null,"_paths":null},{"start":null,"loc":null,"range":null,"argument":{"start":null,"loc":null,"range":null,"name":"_arr","type":"Identifier","end":null},"type":"ReturnStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null},"alternate":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"argument":{"start":null,"loc":null,"range":null,"callee":{"start":null,"loc":null,"range":null,"name":"TypeError","type":"Identifier","end":null},"arguments":[{"start":null,"loc":null,"range":null,"value":"Invalid attempt to destructure non-iterable instance","raw":null,"type":"Literal","end":null}],"type":"NewExpression","end":null,"_paths":null},"type":"ThrowStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null},"type":"IfStatement","end":null,"_paths":null},"type":"IfStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null},"type":"FunctionExpression","end":null,"parenthesizedExpression":true,"_paths":null},"type":"ExpressionStatement","end":null,"_paths":null}],"type":"Program","end":null},"helper-tagged-template-literal-loose":{"loc":null,"start":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"expression":{"start":null,"loc":null,"range":null,"id":null,"generator":false,"expression":false,"params":[{"start":null,"loc":null,"range":null,"name":"strings","type":"Identifier","end":null},{"start":null,"loc":null,"range":null,"name":"raw","type":"Identifier","end":null}],"body":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"expression":{"loc":null,"start":null,"range":null,"operator":"=","left":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"strings","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"raw","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"right":{"start":null,"loc":null,"range":null,"name":"raw","type":"Identifier","end":null},"type":"AssignmentExpression","end":null,"_paths":null},"type":"ExpressionStatement","end":null,"_paths":null},{"start":null,"loc":null,"range":null,"argument":{"start":null,"loc":null,"range":null,"name":"strings","type":"Identifier","end":null},"type":"ReturnStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null},"type":"FunctionExpression","end":null,"parenthesizedExpression":true,"_paths":null},"type":"ExpressionStatement","end":null,"_paths":null}],"type":"Program","end":null},"helper-tagged-template-literal":{"loc":null,"start":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"expression":{"start":null,"loc":null,"range":null,"id":null,"generator":false,"expression":false,"params":[{"start":null,"loc":null,"range":null,"name":"strings","type":"Identifier","end":null},{"start":null,"loc":null,"range":null,"name":"raw","type":"Identifier","end":null}],"body":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"argument":{"loc":null,"start":null,"range":null,"callee":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"Object","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"freeze","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"arguments":[{"loc":null,"start":null,"range":null,"callee":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"Object","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"defineProperties","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"arguments":[{"start":null,"loc":null,"range":null,"name":"strings","type":"Identifier","end":null},{"start":null,"loc":null,"range":null,"properties":[{"start":null,"loc":null,"range":null,"method":false,"shorthand":false,"computed":false,"key":{"start":null,"loc":null,"range":null,"name":"raw","type":"Identifier","end":null},"value":{"start":null,"loc":null,"range":null,"properties":[{"start":null,"loc":null,"range":null,"method":false,"shorthand":false,"computed":false,"key":{"start":null,"loc":null,"range":null,"name":"value","type":"Identifier","end":null},"value":{"loc":null,"start":null,"range":null,"callee":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"Object","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"freeze","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"arguments":[{"start":null,"loc":null,"range":null,"name":"raw","type":"Identifier","end":null}],"type":"CallExpression","end":null,"_paths":null},"kind":"init","type":"Property","end":null,"_paths":null}],"type":"ObjectExpression","end":null},"kind":"init","type":"Property","end":null,"_paths":null}],"type":"ObjectExpression","end":null}],"type":"CallExpression","end":null,"_paths":null}],"type":"CallExpression","end":null,"_paths":null},"type":"ReturnStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null},"type":"FunctionExpression","end":null,"parenthesizedExpression":true,"_paths":null},"type":"ExpressionStatement","end":null,"_paths":null}],"type":"Program","end":null},"helper-temporal-assert-defined":{"loc":null,"start":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"expression":{"start":null,"loc":null,"range":null,"id":null,"generator":false,"expression":false,"params":[{"start":null,"loc":null,"range":null,"name":"val","type":"Identifier","end":null},{"start":null,"loc":null,"range":null,"name":"name","type":"Identifier","end":null},{"start":null,"loc":null,"range":null,"name":"undef","type":"Identifier","end":null}],"body":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"test":{"loc":null,"start":null,"range":null,"left":{"start":null,"loc":null,"range":null,"name":"val","type":"Identifier","end":null},"operator":"===","right":{"start":null,"loc":null,"range":null,"name":"undef","type":"Identifier","end":null},"type":"BinaryExpression","end":null,"_paths":null},"consequent":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"argument":{"start":null,"loc":null,"range":null,"callee":{"start":null,"loc":null,"range":null,"name":"ReferenceError","type":"Identifier","end":null},"arguments":[{"loc":null,"start":null,"range":null,"left":{"start":null,"loc":null,"range":null,"name":"name","type":"Identifier","end":null},"operator":"+","right":{"start":null,"loc":null,"range":null,"value":" is not defined - temporal dead zone","raw":null,"type":"Literal","end":null},"type":"BinaryExpression","end":null,"_paths":null}],"type":"NewExpression","end":null,"_paths":null},"type":"ThrowStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null},"alternate":null,"type":"IfStatement","end":null,"_paths":null},{"start":null,"loc":null,"range":null,"argument":{"start":null,"loc":null,"range":null,"value":true,"raw":null,"type":"Literal","end":null},"type":"ReturnStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null},"type":"FunctionExpression","end":null,"parenthesizedExpression":true,"_paths":null},"type":"ExpressionStatement","end":null,"_paths":null}],"type":"Program","end":null},"helper-temporal-undefined":{"loc":null,"start":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"expression":{"start":null,"loc":null,"range":null,"properties":[],"type":"ObjectExpression","end":null,"parenthesizedExpression":true},"type":"ExpressionStatement","end":null,"_paths":null}],"type":"Program","end":null},"helper-to-array":{"loc":null,"start":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"expression":{"start":null,"loc":null,"range":null,"id":null,"generator":false,"expression":false,"params":[{"start":null,"loc":null,"range":null,"name":"arr","type":"Identifier","end":null}],"body":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"argument":{"loc":null,"start":null,"range":null,"test":{"loc":null,"start":null,"range":null,"callee":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"Array","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"isArray","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"arguments":[{"start":null,"loc":null,"range":null,"name":"arr","type":"Identifier","end":null}],"type":"CallExpression","end":null,"_paths":null},"consequent":{"start":null,"loc":null,"range":null,"name":"arr","type":"Identifier","end":null},"alternate":{"loc":null,"start":null,"range":null,"callee":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"Array","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"from","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"arguments":[{"start":null,"loc":null,"range":null,"name":"arr","type":"Identifier","end":null}],"type":"CallExpression","end":null,"_paths":null},"type":"ConditionalExpression","end":null,"_paths":null},"type":"ReturnStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null},"type":"FunctionExpression","end":null,"parenthesizedExpression":true,"_paths":null},"type":"ExpressionStatement","end":null,"_paths":null}],"type":"Program","end":null},"helper-to-consumable-array":{"loc":null,"start":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"expression":{"start":null,"loc":null,"range":null,"id":null,"generator":false,"expression":false,"params":[{"start":null,"loc":null,"range":null,"name":"arr","type":"Identifier","end":null}],"body":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"test":{"loc":null,"start":null,"range":null,"callee":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"Array","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"isArray","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"arguments":[{"start":null,"loc":null,"range":null,"name":"arr","type":"Identifier","end":null}],"type":"CallExpression","end":null,"_paths":null},"consequent":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"init":{"start":null,"loc":null,"range":null,"declarations":[{"start":null,"loc":null,"range":null,"id":{"start":null,"loc":null,"range":null,"name":"i","type":"Identifier","end":null},"init":{"start":null,"loc":null,"range":null,"value":0,"raw":null,"type":"Literal","end":null},"type":"VariableDeclarator","end":null,"_paths":null},{"start":null,"loc":null,"range":null,"id":{"start":null,"loc":null,"range":null,"name":"arr2","type":"Identifier","end":null},"init":{"loc":null,"start":null,"range":null,"callee":{"start":null,"loc":null,"range":null,"name":"Array","type":"Identifier","end":null},"arguments":[{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"arr","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"length","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null}],"type":"CallExpression","end":null,"_paths":null},"type":"VariableDeclarator","end":null,"_paths":null}],"kind":"var","type":"VariableDeclaration","end":null},"test":{"loc":null,"start":null,"range":null,"left":{"start":null,"loc":null,"range":null,"name":"i","type":"Identifier","end":null},"operator":"<","right":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"arr","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"length","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"type":"BinaryExpression","end":null,"_paths":null},"update":{"loc":null,"start":null,"range":null,"operator":"++","prefix":false,"argument":{"start":null,"loc":null,"range":null,"name":"i","type":"Identifier","end":null},"type":"UpdateExpression","end":null,"_paths":null},"body":{"start":null,"loc":null,"range":null,"expression":{"loc":null,"start":null,"range":null,"operator":"=","left":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"arr2","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"i","type":"Identifier","end":null},"computed":true,"type":"MemberExpression","end":null,"_paths":null},"right":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"arr","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"i","type":"Identifier","end":null},"computed":true,"type":"MemberExpression","end":null,"_paths":null},"type":"AssignmentExpression","end":null,"_paths":null},"type":"ExpressionStatement","end":null,"_paths":null},"type":"ForStatement","end":null,"_paths":null},{"start":null,"loc":null,"range":null,"argument":{"start":null,"loc":null,"range":null,"name":"arr2","type":"Identifier","end":null},"type":"ReturnStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null},"alternate":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"argument":{"loc":null,"start":null,"range":null,"callee":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"Array","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"from","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"arguments":[{"start":null,"loc":null,"range":null,"name":"arr","type":"Identifier","end":null}],"type":"CallExpression","end":null,"_paths":null},"type":"ReturnStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null},"type":"IfStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null},"type":"FunctionExpression","end":null,"parenthesizedExpression":true,"_paths":null},"type":"ExpressionStatement","end":null,"_paths":null}],"type":"Program","end":null},"helper-typeof":{"loc":null,"start":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"expression":{"start":null,"loc":null,"range":null,"id":null,"generator":false,"expression":false,"params":[{"start":null,"loc":null,"range":null,"name":"obj","type":"Identifier","end":null}],"body":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"argument":{"loc":null,"start":null,"range":null,"test":{"loc":null,"start":null,"range":null,"left":{"start":null,"loc":null,"range":null,"name":"obj","type":"Identifier","end":null},"operator":"&&","right":{"loc":null,"start":null,"range":null,"left":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"obj","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"constructor","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"operator":"===","right":{"start":null,"loc":null,"range":null,"name":"Symbol","type":"Identifier","end":null},"type":"BinaryExpression","end":null,"_paths":null},"type":"LogicalExpression","end":null,"_paths":null},"consequent":{"start":null,"loc":null,"range":null,"value":"symbol","raw":null,"type":"Literal","end":null},"alternate":{"start":null,"loc":null,"range":null,"operator":"typeof","prefix":true,"argument":{"start":null,"loc":null,"range":null,"name":"obj","type":"Identifier","end":null},"type":"UnaryExpression","end":null,"_paths":null},"type":"ConditionalExpression","end":null,"_paths":null},"type":"ReturnStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null},"type":"FunctionExpression","end":null,"parenthesizedExpression":true,"_paths":null},"type":"ExpressionStatement","end":null,"_paths":null}],"type":"Program","end":null},"let-scoping-return":{"loc":null,"start":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"test":{"loc":null,"start":null,"range":null,"left":{"start":null,"loc":null,"range":null,"operator":"typeof","prefix":true,"argument":{"start":null,"loc":null,"range":null,"name":"RETURN","type":"Identifier","end":null},"type":"UnaryExpression","end":null,"_paths":null},"operator":"===","right":{"start":null,"loc":null,"range":null,"value":"object","raw":null,"type":"Literal","end":null},"type":"BinaryExpression","end":null,"_paths":null},"consequent":{"start":null,"loc":null,"range":null,"argument":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"RETURN","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"v","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"type":"ReturnStatement","end":null,"_paths":null},"alternate":null,"type":"IfStatement","end":null,"_paths":null}],"type":"Program","end":null},"named-function":{"loc":null,"start":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"expression":{"loc":null,"start":null,"range":null,"callee":{"start":null,"loc":null,"range":null,"id":null,"generator":false,"expression":false,"params":[],"body":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"id":{"start":null,"loc":null,"range":null,"name":"GET_OUTER_ID","type":"Identifier","end":null},"generator":false,"expression":false,"params":[],"body":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"argument":{"start":null,"loc":null,"range":null,"name":"FUNCTION_ID","type":"Identifier","end":null},"type":"ReturnStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null},"type":"FunctionDeclaration","end":null,"_paths":null},{"start":null,"loc":null,"range":null,"argument":{"start":null,"loc":null,"range":null,"name":"FUNCTION","type":"Identifier","end":null},"type":"ReturnStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null},"type":"FunctionExpression","end":null,"parenthesizedExpression":true,"_paths":null},"arguments":[],"type":"CallExpression","end":null,"_paths":null},"type":"ExpressionStatement","end":null,"_paths":null}],"type":"Program","end":null},"property-method-assignment-wrapper-generator":{"loc":null,"start":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"expression":{"loc":null,"start":null,"range":null,"callee":{"start":null,"loc":null,"range":null,"id":null,"generator":false,"expression":false,"params":[{"start":null,"loc":null,"range":null,"name":"FUNCTION_KEY","type":"Identifier","end":null}],"body":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"id":{"start":null,"loc":null,"range":null,"name":"FUNCTION_ID","type":"Identifier","end":null},"generator":true,"expression":false,"params":[],"body":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"argument":{"start":null,"loc":null,"range":null,"delegate":true,"argument":{"loc":null,"start":null,"range":null,"callee":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"FUNCTION_KEY","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"apply","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"arguments":[{"start":null,"loc":null,"range":null,"type":"ThisExpression","end":null},{"start":null,"loc":null,"range":null,"name":"arguments","type":"Identifier","end":null}],"type":"CallExpression","end":null,"_paths":null},"type":"YieldExpression","end":null,"_paths":null},"type":"ReturnStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null},"type":"FunctionDeclaration","end":null,"_paths":null},{"start":null,"loc":null,"range":null,"expression":{"loc":null,"start":null,"range":null,"operator":"=","left":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"FUNCTION_ID","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"toString","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"right":{"start":null,"loc":null,"range":null,"id":null,"generator":false,"expression":false,"params":[],"body":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"argument":{"loc":null,"start":null,"range":null,"callee":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"FUNCTION_KEY","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"toString","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"arguments":[],"type":"CallExpression","end":null,"_paths":null},"type":"ReturnStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null},"type":"FunctionExpression","end":null,"_paths":null},"type":"AssignmentExpression","end":null,"_paths":null},"type":"ExpressionStatement","end":null,"_paths":null},{"start":null,"loc":null,"range":null,"argument":{"start":null,"loc":null,"range":null,"name":"FUNCTION_ID","type":"Identifier","end":null},"type":"ReturnStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null},"type":"FunctionExpression","end":null,"parenthesizedExpression":true,"_paths":null},"arguments":[{"start":null,"loc":null,"range":null,"name":"FUNCTION","type":"Identifier","end":null}],"type":"CallExpression","end":null,"_paths":null},"type":"ExpressionStatement","end":null,"_paths":null}],"type":"Program","end":null},"property-method-assignment-wrapper":{"loc":null,"start":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"expression":{"loc":null,"start":null,"range":null,"callee":{"start":null,"loc":null,"range":null,"id":null,"generator":false,"expression":false,"params":[{"start":null,"loc":null,"range":null,"name":"FUNCTION_KEY","type":"Identifier","end":null}],"body":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"id":{"start":null,"loc":null,"range":null,"name":"FUNCTION_ID","type":"Identifier","end":null},"generator":false,"expression":false,"params":[],"body":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"argument":{"loc":null,"start":null,"range":null,"callee":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"FUNCTION_KEY","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"apply","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"arguments":[{"start":null,"loc":null,"range":null,"type":"ThisExpression","end":null},{"start":null,"loc":null,"range":null,"name":"arguments","type":"Identifier","end":null}],"type":"CallExpression","end":null,"_paths":null},"type":"ReturnStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null},"type":"FunctionDeclaration","end":null,"_paths":null},{"start":null,"loc":null,"range":null,"expression":{"loc":null,"start":null,"range":null,"operator":"=","left":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"FUNCTION_ID","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"toString","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"right":{"start":null,"loc":null,"range":null,"id":null,"generator":false,"expression":false,"params":[],"body":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"argument":{"loc":null,"start":null,"range":null,"callee":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"FUNCTION_KEY","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"toString","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"arguments":[],"type":"CallExpression","end":null,"_paths":null},"type":"ReturnStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null},"type":"FunctionExpression","end":null,"_paths":null},"type":"AssignmentExpression","end":null,"_paths":null},"type":"ExpressionStatement","end":null,"_paths":null},{"start":null,"loc":null,"range":null,"argument":{"start":null,"loc":null,"range":null,"name":"FUNCTION_ID","type":"Identifier","end":null},"type":"ReturnStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null},"type":"FunctionExpression","end":null,"parenthesizedExpression":true,"_paths":null},"arguments":[{"start":null,"loc":null,"range":null,"name":"FUNCTION","type":"Identifier","end":null}],"type":"CallExpression","end":null,"_paths":null},"type":"ExpressionStatement","end":null,"_paths":null}],"type":"Program","end":null},"prototype-identifier":{"loc":null,"start":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"expression":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"CLASS_NAME","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"prototype","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"type":"ExpressionStatement","end":null,"_paths":null}],"type":"Program","end":null},"require-assign-key":{"loc":null,"start":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"declarations":[{"start":null,"loc":null,"range":null,"id":{"start":null,"loc":null,"range":null,"name":"VARIABLE_NAME","type":"Identifier","end":null},"init":{"loc":null,"start":null,"range":null,"object":{"loc":null,"start":null,"range":null,"callee":{"start":null,"loc":null,"range":null,"name":"require","type":"Identifier","end":null},"arguments":[{"start":null,"loc":null,"range":null,"name":"MODULE_NAME","type":"Identifier","end":null}],"type":"CallExpression","end":null,"_paths":null},"property":{"start":null,"loc":null,"range":null,"name":"KEY","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"type":"VariableDeclarator","end":null,"_paths":null}],"kind":"var","type":"VariableDeclaration","end":null}],"type":"Program","end":null},"require":{"loc":null,"start":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"expression":{"loc":null,"start":null,"range":null,"callee":{"start":null,"loc":null,"range":null,"name":"require","type":"Identifier","end":null},"arguments":[{"start":null,"loc":null,"range":null,"name":"MODULE_NAME","type":"Identifier","end":null}],"type":"CallExpression","end":null,"_paths":null},"type":"ExpressionStatement","end":null,"_paths":null}],"type":"Program","end":null},"rest":{"loc":null,"start":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"init":{"start":null,"loc":null,"range":null,"declarations":[{"start":null,"loc":null,"range":null,"id":{"start":null,"loc":null,"range":null,"name":"LEN","type":"Identifier","end":null},"init":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"ARGUMENTS","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"length","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"type":"VariableDeclarator","end":null,"_paths":null},{"start":null,"loc":null,"range":null,"id":{"start":null,"loc":null,"range":null,"name":"ARRAY","type":"Identifier","end":null},"init":{"loc":null,"start":null,"range":null,"callee":{"start":null,"loc":null,"range":null,"name":"Array","type":"Identifier","end":null},"arguments":[{"start":null,"loc":null,"range":null,"name":"ARRAY_LEN","type":"Identifier","end":null}],"type":"CallExpression","end":null,"_paths":null},"type":"VariableDeclarator","end":null,"_paths":null},{"start":null,"loc":null,"range":null,"id":{"start":null,"loc":null,"range":null,"name":"KEY","type":"Identifier","end":null},"init":{"start":null,"loc":null,"range":null,"name":"START","type":"Identifier","end":null},"type":"VariableDeclarator","end":null,"_paths":null}],"kind":"var","type":"VariableDeclaration","end":null},"test":{"loc":null,"start":null,"range":null,"left":{"start":null,"loc":null,"range":null,"name":"KEY","type":"Identifier","end":null},"operator":"<","right":{"start":null,"loc":null,"range":null,"name":"LEN","type":"Identifier","end":null},"type":"BinaryExpression","end":null,"_paths":null},"update":{"loc":null,"start":null,"range":null,"operator":"++","prefix":false,"argument":{"start":null,"loc":null,"range":null,"name":"KEY","type":"Identifier","end":null},"type":"UpdateExpression","end":null,"_paths":null},"body":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"expression":{"loc":null,"start":null,"range":null,"operator":"=","left":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"ARRAY","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"ARRAY_KEY","type":"Identifier","end":null},"computed":true,"type":"MemberExpression","end":null,"_paths":null},"right":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"ARGUMENTS","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"KEY","type":"Identifier","end":null},"computed":true,"type":"MemberExpression","end":null,"_paths":null},"type":"AssignmentExpression","end":null,"_paths":null},"type":"ExpressionStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null},"type":"ForStatement","end":null,"_paths":null}],"type":"Program","end":null},"self-contained-helpers-head":{"loc":null,"start":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"expression":{"loc":null,"start":null,"range":null,"operator":"=","left":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"exports","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"value":"default","raw":null,"type":"Literal","end":null},"computed":true,"type":"MemberExpression","end":null,"_paths":null},"right":{"start":null,"loc":null,"range":null,"name":"HELPER","type":"Identifier","end":null},"type":"AssignmentExpression","end":null,"_paths":null},"type":"ExpressionStatement","end":null,"_paths":null},{"start":null,"loc":null,"range":null,"expression":{"loc":null,"start":null,"range":null,"operator":"=","left":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"exports","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"__esModule","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"right":{"start":null,"loc":null,"range":null,"value":true,"raw":null,"type":"Literal","end":null},"type":"AssignmentExpression","end":null,"_paths":null},"type":"ExpressionStatement","end":null,"_paths":null}],"type":"Program","end":null},"system":{"loc":null,"start":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"expression":{"loc":null,"start":null,"range":null,"callee":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"System","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"register","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"arguments":[{"start":null,"loc":null,"range":null,"name":"MODULE_NAME","type":"Identifier","end":null},{"start":null,"loc":null,"range":null,"name":"MODULE_DEPENDENCIES","type":"Identifier","end":null},{"start":null,"loc":null,"range":null,"id":null,"generator":false,"expression":false,"params":[{"start":null,"loc":null,"range":null,"name":"EXPORT_IDENTIFIER","type":"Identifier","end":null}],"body":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"argument":{"start":null,"loc":null,"range":null,"properties":[{"start":null,"loc":null,"range":null,"method":false,"shorthand":false,"computed":false,"key":{"start":null,"loc":null,"range":null,"name":"setters","type":"Identifier","end":null},"value":{"start":null,"loc":null,"range":null,"name":"SETTERS","type":"Identifier","end":null},"kind":"init","type":"Property","end":null,"_paths":null},{"start":null,"loc":null,"range":null,"method":false,"shorthand":false,"computed":false,"key":{"start":null,"loc":null,"range":null,"name":"execute","type":"Identifier","end":null},"value":{"start":null,"loc":null,"range":null,"name":"EXECUTE","type":"Identifier","end":null},"kind":"init","type":"Property","end":null,"_paths":null}],"type":"ObjectExpression","end":null},"type":"ReturnStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null},"type":"FunctionExpression","end":null,"_paths":null}],"type":"CallExpression","end":null,"_paths":null},"type":"ExpressionStatement","end":null,"_paths":null}],"type":"Program","end":null},"tail-call-body":{"loc":null,"start":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"declarations":[{"start":null,"loc":null,"range":null,"id":{"start":null,"loc":null,"range":null,"name":"AGAIN_ID","type":"Identifier","end":null},"init":{"start":null,"loc":null,"range":null,"value":true,"raw":null,"type":"Literal","end":null},"type":"VariableDeclarator","end":null,"_paths":null}],"kind":"var","type":"VariableDeclaration","end":null},{"start":null,"loc":null,"range":null,"body":{"start":null,"loc":null,"range":null,"test":{"start":null,"loc":null,"range":null,"name":"AGAIN_ID","type":"Identifier","end":null},"body":{"start":null,"loc":null,"range":null,"expression":{"start":null,"loc":null,"range":null,"name":"BLOCK","type":"Identifier","end":null},"type":"ExpressionStatement","end":null,"_paths":null},"type":"WhileStatement","end":null,"_paths":null},"label":{"start":null,"loc":null,"range":null,"name":"FUNCTION_ID","type":"Identifier","end":null},"type":"LabeledStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null}],"type":"Program","end":null},"test-exports":{"loc":null,"start":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"expression":{"loc":null,"start":null,"range":null,"left":{"start":null,"loc":null,"range":null,"operator":"typeof","prefix":true,"argument":{"start":null,"loc":null,"range":null,"name":"exports","type":"Identifier","end":null},"type":"UnaryExpression","end":null,"_paths":null},"operator":"!==","right":{"start":null,"loc":null,"range":null,"value":"undefined","raw":null,"type":"Literal","end":null},"type":"BinaryExpression","end":null,"_paths":null},"type":"ExpressionStatement","end":null,"_paths":null}],"type":"Program","end":null},"test-module":{"loc":null,"start":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"expression":{"loc":null,"start":null,"range":null,"left":{"start":null,"loc":null,"range":null,"operator":"typeof","prefix":true,"argument":{"start":null,"loc":null,"range":null,"name":"module","type":"Identifier","end":null},"type":"UnaryExpression","end":null,"_paths":null},"operator":"!==","right":{"start":null,"loc":null,"range":null,"value":"undefined","raw":null,"type":"Literal","end":null},"type":"BinaryExpression","end":null,"_paths":null},"type":"ExpressionStatement","end":null,"_paths":null}],"type":"Program","end":null},"umd-commonjs-strict":{"loc":null,"start":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"expression":{"loc":null,"start":null,"range":null,"callee":{"start":null,"loc":null,"range":null,"id":null,"generator":false,"expression":false,"params":[{"start":null,"loc":null,"range":null,"name":"root","type":"Identifier","end":null},{"start":null,"loc":null,"range":null,"name":"factory","type":"Identifier","end":null}],"body":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"test":{"loc":null,"start":null,"range":null,"left":{"loc":null,"start":null,"range":null,"left":{"start":null,"loc":null,"range":null,"operator":"typeof","prefix":true,"argument":{"start":null,"loc":null,"range":null,"name":"define","type":"Identifier","end":null},"type":"UnaryExpression","end":null,"_paths":null},"operator":"===","right":{"start":null,"loc":null,"range":null,"value":"function","raw":null,"type":"Literal","end":null},"type":"BinaryExpression","end":null,"_paths":null},"operator":"&&","right":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"define","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"amd","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"type":"LogicalExpression","end":null,"_paths":null},"consequent":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"expression":{"loc":null,"start":null,"range":null,"callee":{"start":null,"loc":null,"range":null,"name":"define","type":"Identifier","end":null},"arguments":[{"start":null,"loc":null,"range":null,"name":"AMD_ARGUMENTS","type":"Identifier","end":null},{"start":null,"loc":null,"range":null,"name":"factory","type":"Identifier","end":null}],"type":"CallExpression","end":null,"_paths":null},"type":"ExpressionStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null},"alternate":{"start":null,"loc":null,"range":null,"test":{"loc":null,"start":null,"range":null,"left":{"start":null,"loc":null,"range":null,"operator":"typeof","prefix":true,"argument":{"start":null,"loc":null,"range":null,"name":"exports","type":"Identifier","end":null},"type":"UnaryExpression","end":null,"_paths":null},"operator":"===","right":{"start":null,"loc":null,"range":null,"value":"object","raw":null,"type":"Literal","end":null},"type":"BinaryExpression","end":null,"_paths":null},"consequent":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"expression":{"loc":null,"start":null,"range":null,"callee":{"start":null,"loc":null,"range":null,"name":"factory","type":"Identifier","end":null},"arguments":[{"start":null,"loc":null,"range":null,"name":"COMMON_ARGUMENTS","type":"Identifier","end":null}],"type":"CallExpression","end":null,"_paths":null},"type":"ExpressionStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null},"alternate":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"expression":{"loc":null,"start":null,"range":null,"callee":{"start":null,"loc":null,"range":null,"name":"factory","type":"Identifier","end":null},"arguments":[{"start":null,"loc":null,"range":null,"name":"BROWSER_ARGUMENTS","type":"Identifier","end":null}],"type":"CallExpression","end":null,"_paths":null},"type":"ExpressionStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null},"type":"IfStatement","end":null,"_paths":null},"type":"IfStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null},"type":"FunctionExpression","end":null,"parenthesizedExpression":true,"_paths":null},"arguments":[{"start":null,"loc":null,"range":null,"name":"UMD_ROOT","type":"Identifier","end":null},{"start":null,"loc":null,"range":null,"id":null,"generator":false,"expression":false,"params":[{"start":null,"loc":null,"range":null,"name":"FACTORY_PARAMETERS","type":"Identifier","end":null}],"body":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"expression":{"start":null,"loc":null,"range":null,"name":"FACTORY_BODY","type":"Identifier","end":null},"type":"ExpressionStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null},"type":"FunctionExpression","end":null,"_paths":null}],"type":"CallExpression","end":null,"_paths":null},"type":"ExpressionStatement","end":null,"_paths":null}],"type":"Program","end":null},"umd-runner-body":{"loc":null,"start":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"expression":{"start":null,"loc":null,"range":null,"id":null,"generator":false,"expression":false,"params":[{"start":null,"loc":null,"range":null,"name":"global","type":"Identifier","end":null},{"start":null,"loc":null,"range":null,"name":"factory","type":"Identifier","end":null}],"body":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"test":{"loc":null,"start":null,"range":null,"left":{"loc":null,"start":null,"range":null,"left":{"start":null,"loc":null,"range":null,"operator":"typeof","prefix":true,"argument":{"start":null,"loc":null,"range":null,"name":"define","type":"Identifier","end":null},"type":"UnaryExpression","end":null,"_paths":null},"operator":"===","right":{"start":null,"loc":null,"range":null,"value":"function","raw":null,"type":"Literal","end":null},"type":"BinaryExpression","end":null,"_paths":null},"operator":"&&","right":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"define","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"amd","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"type":"LogicalExpression","end":null,"_paths":null},"consequent":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"expression":{"loc":null,"start":null,"range":null,"callee":{"start":null,"loc":null,"range":null,"name":"define","type":"Identifier","end":null},"arguments":[{"start":null,"loc":null,"range":null,"name":"AMD_ARGUMENTS","type":"Identifier","end":null},{"start":null,"loc":null,"range":null,"name":"factory","type":"Identifier","end":null}],"type":"CallExpression","end":null,"_paths":null},"type":"ExpressionStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null},"alternate":{"start":null,"loc":null,"range":null,"test":{"start":null,"loc":null,"range":null,"name":"COMMON_TEST","type":"Identifier","end":null},"consequent":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"expression":{"loc":null,"start":null,"range":null,"callee":{"start":null,"loc":null,"range":null,"name":"factory","type":"Identifier","end":null},"arguments":[{"start":null,"loc":null,"range":null,"name":"COMMON_ARGUMENTS","type":"Identifier","end":null}],"type":"CallExpression","end":null,"_paths":null},"type":"ExpressionStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null},"alternate":{"start":null,"loc":null,"range":null,"body":[{"start":null,"loc":null,"range":null,"declarations":[{"start":null,"loc":null,"range":null,"id":{"start":null,"loc":null,"range":null,"name":"mod","type":"Identifier","end":null},"init":{"start":null,"loc":null,"range":null,"properties":[{"start":null,"loc":null,"range":null,"method":false,"shorthand":false,"computed":false,"key":{"start":null,"loc":null,"range":null,"name":"exports","type":"Identifier","end":null},"value":{"start":null,"loc":null,"range":null,"properties":[],"type":"ObjectExpression","end":null},"kind":"init","type":"Property","end":null,"_paths":null}],"type":"ObjectExpression","end":null},"type":"VariableDeclarator","end":null,"_paths":null}],"kind":"var","type":"VariableDeclaration","end":null},{"start":null,"loc":null,"range":null,"expression":{"loc":null,"start":null,"range":null,"callee":{"start":null,"loc":null,"range":null,"name":"factory","type":"Identifier","end":null},"arguments":[{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"mod","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"exports","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},{"start":null,"loc":null,"range":null,"name":"BROWSER_ARGUMENTS","type":"Identifier","end":null}],"type":"CallExpression","end":null,"_paths":null},"type":"ExpressionStatement","end":null,"_paths":null},{"start":null,"loc":null,"range":null,"expression":{"loc":null,"start":null,"range":null,"operator":"=","left":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"global","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"GLOBAL_ARG","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"right":{"loc":null,"start":null,"range":null,"object":{"start":null,"loc":null,"range":null,"name":"mod","type":"Identifier","end":null},"property":{"start":null,"loc":null,"range":null,"name":"exports","type":"Identifier","end":null},"computed":false,"type":"MemberExpression","end":null,"_paths":null},"type":"AssignmentExpression","end":null,"_paths":null},"type":"ExpressionStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null},"type":"IfStatement","end":null,"_paths":null},"type":"IfStatement","end":null,"_paths":null}],"type":"BlockStatement","end":null},"type":"FunctionExpression","end":null,"parenthesizedExpression":true,"_paths":null},"type":"ExpressionStatement","end":null,"_paths":null}],"type":"Program","end":null}}
|
86421
86387
|
},{}]},{},[19])(19)
|
86422
86388
|
});
|