Remove old expected.{js,json} files (#7187)
This commit is contained in:
@@ -1,85 +0,0 @@
|
||||
/*before*/
|
||||
"use strict";
|
||||
|
||||
Object.defineProperty(exports, "__esModule", {
|
||||
value: true
|
||||
});
|
||||
exports.test2 = exports.test = void 0;
|
||||
|
||||
/*after*/
|
||||
|
||||
/*before*/
|
||||
require("foo")
|
||||
/*after*/
|
||||
;
|
||||
|
||||
/*before*/
|
||||
require("foo-bar")
|
||||
/*after*/
|
||||
;
|
||||
|
||||
/*before*/
|
||||
require("./directory/foo-bar")
|
||||
/*after*/
|
||||
;
|
||||
|
||||
var
|
||||
/*before*/
|
||||
_foo2 = babelHelpers.interopRequireDefault(require("foo2"))
|
||||
/*after*/
|
||||
;
|
||||
|
||||
var
|
||||
/*before*/
|
||||
foo2 = babelHelpers.interopRequireWildcard(require("foo3"))
|
||||
/*after*/
|
||||
;
|
||||
|
||||
var
|
||||
/*before*/
|
||||
_foo4 = require("foo4")
|
||||
/*after*/
|
||||
;
|
||||
|
||||
var
|
||||
/*before*/
|
||||
_foo5 = require("foo5")
|
||||
/*after*/
|
||||
;
|
||||
|
||||
var test;
|
||||
|
||||
/*before*/
|
||||
exports.test = test;
|
||||
|
||||
/*after*/
|
||||
var test2 = 5;
|
||||
|
||||
/*before*/
|
||||
exports.test2 = test2;
|
||||
|
||||
/*after*/
|
||||
|
||||
/*before*/
|
||||
(0, _foo4.bar)
|
||||
/*after*/
|
||||
(
|
||||
/*before*/
|
||||
_foo2.default
|
||||
/*after*/
|
||||
,
|
||||
/*before*/
|
||||
_foo5.foo
|
||||
/*after*/
|
||||
);
|
||||
/* my comment */
|
||||
|
||||
/*before*/
|
||||
_foo5.foo
|
||||
/*after*/
|
||||
;
|
||||
|
||||
/*before*/
|
||||
_foo2.default
|
||||
/*after*/
|
||||
;
|
||||
@@ -1,5 +0,0 @@
|
||||
require("foo");
|
||||
|
||||
require("foo-bar");
|
||||
|
||||
require("./directory/foo-bar");
|
||||
@@ -1,10 +0,0 @@
|
||||
"use strict";
|
||||
|
||||
exports.__esModule = true;
|
||||
exports.default = void 0;
|
||||
|
||||
var _default = function () {
|
||||
return "foo";
|
||||
}();
|
||||
|
||||
exports.default = _default;
|
||||
@@ -1,11 +0,0 @@
|
||||
"use strict";
|
||||
|
||||
exports.__esModule = true;
|
||||
exports.Cachier = Cachier;
|
||||
exports.default = void 0;
|
||||
|
||||
var _default = new Cachier();
|
||||
|
||||
exports.default = _default;
|
||||
|
||||
function Cachier(databaseName) {}
|
||||
@@ -1,6 +0,0 @@
|
||||
"use strict";
|
||||
|
||||
exports.__esModule = true;
|
||||
exports.default = void 0;
|
||||
var _default = {};
|
||||
exports.default = _default;
|
||||
@@ -1,6 +0,0 @@
|
||||
"use strict";
|
||||
|
||||
exports.__esModule = true;
|
||||
exports.default = void 0;
|
||||
var _default = [];
|
||||
exports.default = _default;
|
||||
@@ -1,6 +0,0 @@
|
||||
"use strict";
|
||||
|
||||
exports.__esModule = true;
|
||||
exports.default = void 0;
|
||||
var _default = foo;
|
||||
exports.default = _default;
|
||||
@@ -1,6 +0,0 @@
|
||||
"use strict";
|
||||
|
||||
exports.__esModule = true;
|
||||
exports.default = _default;
|
||||
|
||||
function _default() {}
|
||||
@@ -1,8 +0,0 @@
|
||||
"use strict";
|
||||
|
||||
exports.__esModule = true;
|
||||
exports.default = void 0;
|
||||
|
||||
class _default {}
|
||||
|
||||
exports.default = _default;
|
||||
@@ -1,6 +0,0 @@
|
||||
"use strict";
|
||||
|
||||
exports.__esModule = true;
|
||||
exports.default = foo;
|
||||
|
||||
function foo() {}
|
||||
@@ -1,8 +0,0 @@
|
||||
"use strict";
|
||||
|
||||
exports.__esModule = true;
|
||||
exports.default = void 0;
|
||||
|
||||
class Foo {}
|
||||
|
||||
exports.default = Foo;
|
||||
@@ -1,6 +0,0 @@
|
||||
"use strict";
|
||||
|
||||
exports.__esModule = true;
|
||||
exports.default = void 0;
|
||||
var foo;
|
||||
exports.default = foo;
|
||||
@@ -1,6 +0,0 @@
|
||||
"use strict";
|
||||
|
||||
exports.__esModule = true;
|
||||
exports.default = void 0;
|
||||
var _default = 42;
|
||||
exports.default = _default;
|
||||
@@ -1,42 +0,0 @@
|
||||
"use strict";
|
||||
|
||||
exports.__esModule = true;
|
||||
exports.f1 = f1;
|
||||
exports.f2 = f2;
|
||||
exports.f3 = f3;
|
||||
exports.f4 = f4;
|
||||
exports.y = exports.x = void 0;
|
||||
let x = 0;
|
||||
exports.x = x;
|
||||
let y = 0;
|
||||
exports.y = y;
|
||||
|
||||
function f1() {
|
||||
({
|
||||
x
|
||||
} = {
|
||||
x: 1
|
||||
});
|
||||
exports.x = x;
|
||||
}
|
||||
|
||||
function f2() {
|
||||
({
|
||||
x,
|
||||
y
|
||||
} = {
|
||||
x: 2,
|
||||
y: 3
|
||||
});
|
||||
exports.x = x, exports.y = y;
|
||||
}
|
||||
|
||||
function f3() {
|
||||
[x, y, z] = [3, 4, 5];
|
||||
exports.x = x, exports.y = y;
|
||||
}
|
||||
|
||||
function f4() {
|
||||
[x,, y] = [3, 4, 5];
|
||||
exports.x = x, exports.y = y;
|
||||
}
|
||||
@@ -1,8 +0,0 @@
|
||||
"use strict";
|
||||
|
||||
exports.__esModule = true;
|
||||
exports.foo = void 0;
|
||||
|
||||
var _foo = require("foo");
|
||||
|
||||
exports.foo = _foo.foo;
|
||||
@@ -1,9 +0,0 @@
|
||||
"use strict";
|
||||
|
||||
exports.__esModule = true;
|
||||
exports.bar = exports.foo = void 0;
|
||||
|
||||
var _foo = require("foo");
|
||||
|
||||
exports.foo = _foo.foo;
|
||||
exports.bar = _foo.bar;
|
||||
@@ -1,8 +0,0 @@
|
||||
"use strict";
|
||||
|
||||
exports.__esModule = true;
|
||||
exports.bar = void 0;
|
||||
|
||||
var _foo = require("foo");
|
||||
|
||||
exports.bar = _foo.foo;
|
||||
@@ -1,8 +0,0 @@
|
||||
"use strict";
|
||||
|
||||
exports.__esModule = true;
|
||||
exports.default = void 0;
|
||||
|
||||
var _foo = require("foo");
|
||||
|
||||
exports.default = _foo.foo;
|
||||
@@ -1,9 +0,0 @@
|
||||
"use strict";
|
||||
|
||||
exports.__esModule = true;
|
||||
exports.bar = exports.default = void 0;
|
||||
|
||||
var _foo = require("foo");
|
||||
|
||||
exports.default = _foo.foo;
|
||||
exports.bar = _foo.bar;
|
||||
@@ -1,8 +0,0 @@
|
||||
"use strict";
|
||||
|
||||
exports.__esModule = true;
|
||||
exports.foo = void 0;
|
||||
|
||||
var _foo = babelHelpers.interopRequireDefault(require("foo"));
|
||||
|
||||
exports.foo = _foo.default;
|
||||
@@ -1,107 +0,0 @@
|
||||
"use strict";
|
||||
|
||||
exports.__esModule = true;
|
||||
|
||||
var _foo = require("foo");
|
||||
|
||||
exports.foo = _foo.foo;
|
||||
exports.foo1 = _foo.foo1;
|
||||
exports.foo2 = _foo.foo2;
|
||||
exports.foo3 = _foo.foo3;
|
||||
exports.foo4 = _foo.foo4;
|
||||
exports.foo5 = _foo.foo5;
|
||||
exports.foo6 = _foo.foo6;
|
||||
exports.foo7 = _foo.foo7;
|
||||
exports.foo8 = _foo.foo8;
|
||||
exports.foo9 = _foo.foo9;
|
||||
exports.foo10 = _foo.foo10;
|
||||
exports.foo11 = _foo.foo11;
|
||||
exports.foo12 = _foo.foo12;
|
||||
exports.foo13 = _foo.foo13;
|
||||
exports.foo14 = _foo.foo14;
|
||||
exports.foo15 = _foo.foo15;
|
||||
exports.foo16 = _foo.foo16;
|
||||
exports.foo17 = _foo.foo17;
|
||||
exports.foo18 = _foo.foo18;
|
||||
exports.foo19 = _foo.foo19;
|
||||
exports.foo20 = _foo.foo20;
|
||||
exports.foo21 = _foo.foo21;
|
||||
exports.foo22 = _foo.foo22;
|
||||
exports.foo23 = _foo.foo23;
|
||||
exports.foo24 = _foo.foo24;
|
||||
exports.foo25 = _foo.foo25;
|
||||
exports.foo26 = _foo.foo26;
|
||||
exports.foo27 = _foo.foo27;
|
||||
exports.foo28 = _foo.foo28;
|
||||
exports.foo29 = _foo.foo29;
|
||||
exports.foo30 = _foo.foo30;
|
||||
exports.foo31 = _foo.foo31;
|
||||
exports.foo32 = _foo.foo32;
|
||||
exports.foo33 = _foo.foo33;
|
||||
exports.foo34 = _foo.foo34;
|
||||
exports.foo35 = _foo.foo35;
|
||||
exports.foo36 = _foo.foo36;
|
||||
exports.foo37 = _foo.foo37;
|
||||
exports.foo38 = _foo.foo38;
|
||||
exports.foo39 = _foo.foo39;
|
||||
exports.foo40 = _foo.foo40;
|
||||
exports.foo41 = _foo.foo41;
|
||||
exports.foo42 = _foo.foo42;
|
||||
exports.foo43 = _foo.foo43;
|
||||
exports.foo44 = _foo.foo44;
|
||||
exports.foo45 = _foo.foo45;
|
||||
exports.foo46 = _foo.foo46;
|
||||
exports.foo47 = _foo.foo47;
|
||||
exports.foo48 = _foo.foo48;
|
||||
exports.foo49 = _foo.foo49;
|
||||
exports.foo50 = _foo.foo50;
|
||||
exports.foo51 = _foo.foo51;
|
||||
exports.foo52 = _foo.foo52;
|
||||
exports.foo53 = _foo.foo53;
|
||||
exports.foo54 = _foo.foo54;
|
||||
exports.foo55 = _foo.foo55;
|
||||
exports.foo56 = _foo.foo56;
|
||||
exports.foo57 = _foo.foo57;
|
||||
exports.foo58 = _foo.foo58;
|
||||
exports.foo59 = _foo.foo59;
|
||||
exports.foo60 = _foo.foo60;
|
||||
exports.foo61 = _foo.foo61;
|
||||
exports.foo62 = _foo.foo62;
|
||||
exports.foo63 = _foo.foo63;
|
||||
exports.foo64 = _foo.foo64;
|
||||
exports.foo65 = _foo.foo65;
|
||||
exports.foo66 = _foo.foo66;
|
||||
exports.foo67 = _foo.foo67;
|
||||
exports.foo68 = _foo.foo68;
|
||||
exports.foo69 = _foo.foo69;
|
||||
exports.foo70 = _foo.foo70;
|
||||
exports.foo71 = _foo.foo71;
|
||||
exports.foo72 = _foo.foo72;
|
||||
exports.foo73 = _foo.foo73;
|
||||
exports.foo74 = _foo.foo74;
|
||||
exports.foo75 = _foo.foo75;
|
||||
exports.foo76 = _foo.foo76;
|
||||
exports.foo77 = _foo.foo77;
|
||||
exports.foo78 = _foo.foo78;
|
||||
exports.foo79 = _foo.foo79;
|
||||
exports.foo80 = _foo.foo80;
|
||||
exports.foo81 = _foo.foo81;
|
||||
exports.foo82 = _foo.foo82;
|
||||
exports.foo83 = _foo.foo83;
|
||||
exports.foo84 = _foo.foo84;
|
||||
exports.foo85 = _foo.foo85;
|
||||
exports.foo86 = _foo.foo86;
|
||||
exports.foo87 = _foo.foo87;
|
||||
exports.foo88 = _foo.foo88;
|
||||
exports.foo89 = _foo.foo89;
|
||||
exports.foo90 = _foo.foo90;
|
||||
exports.foo91 = _foo.foo91;
|
||||
exports.foo92 = _foo.foo92;
|
||||
exports.foo93 = _foo.foo93;
|
||||
exports.foo94 = _foo.foo94;
|
||||
exports.foo95 = _foo.foo95;
|
||||
exports.foo96 = _foo.foo96;
|
||||
exports.foo97 = _foo.foo97;
|
||||
exports.foo98 = _foo.foo98;
|
||||
exports.foo99 = _foo.foo99;
|
||||
exports.foo100 = _foo.foo100;
|
||||
@@ -1,10 +0,0 @@
|
||||
"use strict";
|
||||
|
||||
exports.__esModule = true;
|
||||
|
||||
var _foo = require("foo");
|
||||
|
||||
Object.keys(_foo).forEach(function (key) {
|
||||
if (key === "default" || key === "__esModule") return;
|
||||
exports[key] = _foo[key];
|
||||
});
|
||||
@@ -1,7 +0,0 @@
|
||||
"use strict";
|
||||
|
||||
exports.__esModule = true;
|
||||
exports.bar = exports.foo = void 0;
|
||||
var foo, bar;
|
||||
exports.bar = bar;
|
||||
exports.foo = foo;
|
||||
@@ -1,6 +0,0 @@
|
||||
"use strict";
|
||||
|
||||
exports.__esModule = true;
|
||||
exports.bar = void 0;
|
||||
var foo;
|
||||
exports.bar = foo;
|
||||
@@ -1,6 +0,0 @@
|
||||
"use strict";
|
||||
|
||||
exports.__esModule = true;
|
||||
exports.default = void 0;
|
||||
var foo;
|
||||
exports.default = foo;
|
||||
@@ -1,7 +0,0 @@
|
||||
"use strict";
|
||||
|
||||
exports.__esModule = true;
|
||||
exports.bar = exports.default = void 0;
|
||||
var foo, bar;
|
||||
exports.bar = bar;
|
||||
exports.default = foo;
|
||||
@@ -1,6 +0,0 @@
|
||||
"use strict";
|
||||
|
||||
exports.__esModule = true;
|
||||
exports.foo = void 0;
|
||||
var foo;
|
||||
exports.foo = foo;
|
||||
@@ -1,29 +0,0 @@
|
||||
"use strict";
|
||||
|
||||
exports.__esModule = true;
|
||||
exports.foo8 = foo8;
|
||||
exports.foo9 = exports.foo7 = exports.foo6 = exports.foo5 = exports.foo4 = exports.foo3 = exports.bar = exports.foo2 = exports.foo = void 0;
|
||||
var foo = 1;
|
||||
exports.foo = foo;
|
||||
var foo2 = 1,
|
||||
bar = 2;
|
||||
exports.bar = bar;
|
||||
exports.foo2 = foo2;
|
||||
|
||||
var foo3 = function () {};
|
||||
|
||||
exports.foo3 = foo3;
|
||||
var foo4;
|
||||
exports.foo4 = foo4;
|
||||
let foo5 = 2;
|
||||
exports.foo5 = foo5;
|
||||
let foo6;
|
||||
exports.foo6 = foo6;
|
||||
const foo7 = 3;
|
||||
exports.foo7 = foo7;
|
||||
|
||||
function foo8() {}
|
||||
|
||||
class foo9 {}
|
||||
|
||||
exports.foo9 = foo9;
|
||||
@@ -1,19 +0,0 @@
|
||||
"use strict";
|
||||
|
||||
exports.__esModule = true;
|
||||
exports.nextOdd = nextOdd;
|
||||
exports.isOdd = void 0;
|
||||
|
||||
var _evens = require("./evens");
|
||||
|
||||
function nextOdd(n) {
|
||||
return (0, _evens.isEven)(n) ? n + 1 : n + 2;
|
||||
}
|
||||
|
||||
var isOdd = function (isEven) {
|
||||
return function (n) {
|
||||
return !isEven(n);
|
||||
};
|
||||
}(_evens.isEven);
|
||||
|
||||
exports.isOdd = isOdd;
|
||||
@@ -1,6 +0,0 @@
|
||||
"use strict";
|
||||
|
||||
var _foo = babelHelpers.interopRequireDefault(require("foo"));
|
||||
|
||||
_foo.default;
|
||||
_foo.default;
|
||||
@@ -1,3 +0,0 @@
|
||||
"use strict";
|
||||
|
||||
var foo = babelHelpers.interopRequireWildcard(require("foo"));
|
||||
@@ -1,5 +0,0 @@
|
||||
var _taggedTemplateLiteral = require("@babel/runtime/helpers/taggedTemplateLiteral");
|
||||
|
||||
var _templateObject = /*#__PURE__*/ _taggedTemplateLiteral(["foo"], ["foo"]);
|
||||
|
||||
tag(_templateObject);
|
||||
@@ -1,6 +0,0 @@
|
||||
"use strict";
|
||||
|
||||
var _foo = babelHelpers.interopRequireWildcard(require("foo"));
|
||||
|
||||
_foo.default;
|
||||
_foo.baz;
|
||||
@@ -1,10 +0,0 @@
|
||||
"use strict";
|
||||
|
||||
var _foo = require("foo");
|
||||
|
||||
_foo.bar;
|
||||
_foo.bar2;
|
||||
_foo.baz;
|
||||
_foo.bar;
|
||||
_foo.bar;
|
||||
_foo.xyz;
|
||||
@@ -1,9 +0,0 @@
|
||||
"use strict";
|
||||
|
||||
require("./foo");
|
||||
|
||||
var _bar = babelHelpers.interopRequireDefault(require("./bar"));
|
||||
|
||||
require("./derp");
|
||||
|
||||
var _qux = require("./qux");
|
||||
@@ -1,7 +0,0 @@
|
||||
"use strict";
|
||||
|
||||
require("foo");
|
||||
|
||||
require("foo-bar");
|
||||
|
||||
require("./directory/foo-bar");
|
||||
@@ -1,6 +0,0 @@
|
||||
"use strict";
|
||||
|
||||
exports.__esModule = true;
|
||||
exports.module = _module;
|
||||
|
||||
function _module() {}
|
||||
@@ -1,7 +0,0 @@
|
||||
"use strict";
|
||||
|
||||
var _interopRequireDefault3 = require("@babel/runtime/helpers/interopRequireDefault");
|
||||
|
||||
var _interopRequireDefault2 = _interopRequireDefault3(require("@babel/runtime/helpers/interopRequireDefault"));
|
||||
|
||||
console.log(_interopRequireDefault2.default);
|
||||
@@ -1,26 +0,0 @@
|
||||
"use strict";
|
||||
|
||||
exports.__esModule = true;
|
||||
exports.test2 = exports.test = void 0;
|
||||
|
||||
require("foo");
|
||||
|
||||
require("foo-bar");
|
||||
|
||||
require("./directory/foo-bar");
|
||||
|
||||
var _foo2 = babelHelpers.interopRequireDefault(require("foo2"));
|
||||
|
||||
var foo2 = babelHelpers.interopRequireWildcard(require("foo3"));
|
||||
|
||||
var _foo4 = require("foo4");
|
||||
|
||||
var _foo5 = require("foo5");
|
||||
|
||||
var test;
|
||||
exports.test = test;
|
||||
var test2 = 5;
|
||||
exports.test2 = test2;
|
||||
_foo4.bar;
|
||||
_foo5.foo;
|
||||
_foo2.default;
|
||||
@@ -1,24 +0,0 @@
|
||||
"use strict";
|
||||
|
||||
exports.__esModule = true;
|
||||
exports.f = exports.e = exports.c = exports.a = exports.test = void 0;
|
||||
var test = 2;
|
||||
exports.test = test;
|
||||
exports.test = test = 5;
|
||||
exports.test = test = test + 1;
|
||||
|
||||
(function () {
|
||||
var test = 2;
|
||||
test = 3;
|
||||
test++;
|
||||
})();
|
||||
|
||||
var a = 2;
|
||||
exports.a = a;
|
||||
exports.a = a = 3;
|
||||
var b = 2;
|
||||
exports.c = b;
|
||||
exports.c = b = 3;
|
||||
var d = 3;
|
||||
exports.f = exports.e = d;
|
||||
exports.f = exports.e = d = 4;
|
||||
@@ -1,12 +0,0 @@
|
||||
"use strict";
|
||||
|
||||
Object.defineProperty(exports, "__esModule", {
|
||||
value: true
|
||||
});
|
||||
exports.default = void 0;
|
||||
|
||||
var _default = function () {
|
||||
return "foo";
|
||||
}();
|
||||
|
||||
exports.default = _default;
|
||||
@@ -1,13 +0,0 @@
|
||||
"use strict";
|
||||
|
||||
Object.defineProperty(exports, "__esModule", {
|
||||
value: true
|
||||
});
|
||||
exports.Cachier = Cachier;
|
||||
exports.default = void 0;
|
||||
|
||||
var _default = new Cachier();
|
||||
|
||||
exports.default = _default;
|
||||
|
||||
function Cachier(databaseName) {}
|
||||
@@ -1,8 +0,0 @@
|
||||
"use strict";
|
||||
|
||||
Object.defineProperty(exports, "__esModule", {
|
||||
value: true
|
||||
});
|
||||
exports.default = void 0;
|
||||
var _default = {};
|
||||
exports.default = _default;
|
||||
@@ -1,8 +0,0 @@
|
||||
"use strict";
|
||||
|
||||
Object.defineProperty(exports, "__esModule", {
|
||||
value: true
|
||||
});
|
||||
exports.default = void 0;
|
||||
var _default = [];
|
||||
exports.default = _default;
|
||||
@@ -1,8 +0,0 @@
|
||||
"use strict";
|
||||
|
||||
Object.defineProperty(exports, "__esModule", {
|
||||
value: true
|
||||
});
|
||||
exports.default = void 0;
|
||||
var _default = foo;
|
||||
exports.default = _default;
|
||||
@@ -1,8 +0,0 @@
|
||||
"use strict";
|
||||
|
||||
Object.defineProperty(exports, "__esModule", {
|
||||
value: true
|
||||
});
|
||||
exports.default = _default;
|
||||
|
||||
function _default() {}
|
||||
@@ -1,10 +0,0 @@
|
||||
"use strict";
|
||||
|
||||
Object.defineProperty(exports, "__esModule", {
|
||||
value: true
|
||||
});
|
||||
exports.default = void 0;
|
||||
|
||||
class _default {}
|
||||
|
||||
exports.default = _default;
|
||||
@@ -1,8 +0,0 @@
|
||||
"use strict";
|
||||
|
||||
Object.defineProperty(exports, "__esModule", {
|
||||
value: true
|
||||
});
|
||||
exports.default = foo;
|
||||
|
||||
function foo() {}
|
||||
@@ -1,10 +0,0 @@
|
||||
"use strict";
|
||||
|
||||
Object.defineProperty(exports, "__esModule", {
|
||||
value: true
|
||||
});
|
||||
exports.default = void 0;
|
||||
|
||||
class Foo {}
|
||||
|
||||
exports.default = Foo;
|
||||
@@ -1,8 +0,0 @@
|
||||
"use strict";
|
||||
|
||||
Object.defineProperty(exports, "__esModule", {
|
||||
value: true
|
||||
});
|
||||
exports.default = void 0;
|
||||
var foo;
|
||||
exports.default = foo;
|
||||
@@ -1,8 +0,0 @@
|
||||
"use strict";
|
||||
|
||||
Object.defineProperty(exports, "__esModule", {
|
||||
value: true
|
||||
});
|
||||
exports.default = void 0;
|
||||
var _default = 42;
|
||||
exports.default = _default;
|
||||
@@ -1,44 +0,0 @@
|
||||
"use strict";
|
||||
|
||||
Object.defineProperty(exports, "__esModule", {
|
||||
value: true
|
||||
});
|
||||
exports.f1 = f1;
|
||||
exports.f2 = f2;
|
||||
exports.f3 = f3;
|
||||
exports.f4 = f4;
|
||||
exports.y = exports.x = void 0;
|
||||
let x = 0;
|
||||
exports.x = x;
|
||||
let y = 0;
|
||||
exports.y = y;
|
||||
|
||||
function f1() {
|
||||
({
|
||||
x
|
||||
} = {
|
||||
x: 1
|
||||
});
|
||||
exports.x = x;
|
||||
}
|
||||
|
||||
function f2() {
|
||||
({
|
||||
x,
|
||||
y
|
||||
} = {
|
||||
x: 2,
|
||||
y: 3
|
||||
});
|
||||
exports.x = x, exports.y = y;
|
||||
}
|
||||
|
||||
function f3() {
|
||||
[x, y, z] = [3, 4, 5];
|
||||
exports.x = x, exports.y = y;
|
||||
}
|
||||
|
||||
function f4() {
|
||||
[x,, y] = [3, 4, 5];
|
||||
exports.x = x, exports.y = y;
|
||||
}
|
||||
@@ -1,13 +0,0 @@
|
||||
"use strict";
|
||||
|
||||
Object.defineProperty(exports, "__esModule", {
|
||||
value: true
|
||||
});
|
||||
Object.defineProperty(exports, "foo", {
|
||||
enumerable: true,
|
||||
get: function () {
|
||||
return _foo.foo;
|
||||
}
|
||||
});
|
||||
|
||||
var _foo = require("foo");
|
||||
@@ -1,19 +0,0 @@
|
||||
"use strict";
|
||||
|
||||
Object.defineProperty(exports, "__esModule", {
|
||||
value: true
|
||||
});
|
||||
Object.defineProperty(exports, "foo", {
|
||||
enumerable: true,
|
||||
get: function () {
|
||||
return _foo.foo;
|
||||
}
|
||||
});
|
||||
Object.defineProperty(exports, "bar", {
|
||||
enumerable: true,
|
||||
get: function () {
|
||||
return _foo.bar;
|
||||
}
|
||||
});
|
||||
|
||||
var _foo = require("foo");
|
||||
@@ -1,13 +0,0 @@
|
||||
"use strict";
|
||||
|
||||
Object.defineProperty(exports, "__esModule", {
|
||||
value: true
|
||||
});
|
||||
Object.defineProperty(exports, "bar", {
|
||||
enumerable: true,
|
||||
get: function () {
|
||||
return _foo.foo;
|
||||
}
|
||||
});
|
||||
|
||||
var _foo = require("foo");
|
||||
@@ -1,13 +0,0 @@
|
||||
"use strict";
|
||||
|
||||
Object.defineProperty(exports, "__esModule", {
|
||||
value: true
|
||||
});
|
||||
Object.defineProperty(exports, "default", {
|
||||
enumerable: true,
|
||||
get: function () {
|
||||
return _foo.foo;
|
||||
}
|
||||
});
|
||||
|
||||
var _foo = require("foo");
|
||||
@@ -1,19 +0,0 @@
|
||||
"use strict";
|
||||
|
||||
Object.defineProperty(exports, "__esModule", {
|
||||
value: true
|
||||
});
|
||||
Object.defineProperty(exports, "default", {
|
||||
enumerable: true,
|
||||
get: function () {
|
||||
return _foo.foo;
|
||||
}
|
||||
});
|
||||
Object.defineProperty(exports, "bar", {
|
||||
enumerable: true,
|
||||
get: function () {
|
||||
return _foo.bar;
|
||||
}
|
||||
});
|
||||
|
||||
var _foo = require("foo");
|
||||
@@ -1,13 +0,0 @@
|
||||
"use strict";
|
||||
|
||||
Object.defineProperty(exports, "__esModule", {
|
||||
value: true
|
||||
});
|
||||
Object.defineProperty(exports, "foo", {
|
||||
enumerable: true,
|
||||
get: function () {
|
||||
return _foo.default;
|
||||
}
|
||||
});
|
||||
|
||||
var _foo = babelHelpers.interopRequireDefault(require("foo"));
|
||||
@@ -1,613 +0,0 @@
|
||||
"use strict";
|
||||
|
||||
Object.defineProperty(exports, "__esModule", {
|
||||
value: true
|
||||
});
|
||||
Object.defineProperty(exports, "foo", {
|
||||
enumerable: true,
|
||||
get: function () {
|
||||
return _foo.foo;
|
||||
}
|
||||
});
|
||||
Object.defineProperty(exports, "foo1", {
|
||||
enumerable: true,
|
||||
get: function () {
|
||||
return _foo.foo1;
|
||||
}
|
||||
});
|
||||
Object.defineProperty(exports, "foo2", {
|
||||
enumerable: true,
|
||||
get: function () {
|
||||
return _foo.foo2;
|
||||
}
|
||||
});
|
||||
Object.defineProperty(exports, "foo3", {
|
||||
enumerable: true,
|
||||
get: function () {
|
||||
return _foo.foo3;
|
||||
}
|
||||
});
|
||||
Object.defineProperty(exports, "foo4", {
|
||||
enumerable: true,
|
||||
get: function () {
|
||||
return _foo.foo4;
|
||||
}
|
||||
});
|
||||
Object.defineProperty(exports, "foo5", {
|
||||
enumerable: true,
|
||||
get: function () {
|
||||
return _foo.foo5;
|
||||
}
|
||||
});
|
||||
Object.defineProperty(exports, "foo6", {
|
||||
enumerable: true,
|
||||
get: function () {
|
||||
return _foo.foo6;
|
||||
}
|
||||
});
|
||||
Object.defineProperty(exports, "foo7", {
|
||||
enumerable: true,
|
||||
get: function () {
|
||||
return _foo.foo7;
|
||||
}
|
||||
});
|
||||
Object.defineProperty(exports, "foo8", {
|
||||
enumerable: true,
|
||||
get: function () {
|
||||
return _foo.foo8;
|
||||
}
|
||||
});
|
||||
Object.defineProperty(exports, "foo9", {
|
||||
enumerable: true,
|
||||
get: function () {
|
||||
return _foo.foo9;
|
||||
}
|
||||
});
|
||||
Object.defineProperty(exports, "foo10", {
|
||||
enumerable: true,
|
||||
get: function () {
|
||||
return _foo.foo10;
|
||||
}
|
||||
});
|
||||
Object.defineProperty(exports, "foo11", {
|
||||
enumerable: true,
|
||||
get: function () {
|
||||
return _foo.foo11;
|
||||
}
|
||||
});
|
||||
Object.defineProperty(exports, "foo12", {
|
||||
enumerable: true,
|
||||
get: function () {
|
||||
return _foo.foo12;
|
||||
}
|
||||
});
|
||||
Object.defineProperty(exports, "foo13", {
|
||||
enumerable: true,
|
||||
get: function () {
|
||||
return _foo.foo13;
|
||||
}
|
||||
});
|
||||
Object.defineProperty(exports, "foo14", {
|
||||
enumerable: true,
|
||||
get: function () {
|
||||
return _foo.foo14;
|
||||
}
|
||||
});
|
||||
Object.defineProperty(exports, "foo15", {
|
||||
enumerable: true,
|
||||
get: function () {
|
||||
return _foo.foo15;
|
||||
}
|
||||
});
|
||||
Object.defineProperty(exports, "foo16", {
|
||||
enumerable: true,
|
||||
get: function () {
|
||||
return _foo.foo16;
|
||||
}
|
||||
});
|
||||
Object.defineProperty(exports, "foo17", {
|
||||
enumerable: true,
|
||||
get: function () {
|
||||
return _foo.foo17;
|
||||
}
|
||||
});
|
||||
Object.defineProperty(exports, "foo18", {
|
||||
enumerable: true,
|
||||
get: function () {
|
||||
return _foo.foo18;
|
||||
}
|
||||
});
|
||||
Object.defineProperty(exports, "foo19", {
|
||||
enumerable: true,
|
||||
get: function () {
|
||||
return _foo.foo19;
|
||||
}
|
||||
});
|
||||
Object.defineProperty(exports, "foo20", {
|
||||
enumerable: true,
|
||||
get: function () {
|
||||
return _foo.foo20;
|
||||
}
|
||||
});
|
||||
Object.defineProperty(exports, "foo21", {
|
||||
enumerable: true,
|
||||
get: function () {
|
||||
return _foo.foo21;
|
||||
}
|
||||
});
|
||||
Object.defineProperty(exports, "foo22", {
|
||||
enumerable: true,
|
||||
get: function () {
|
||||
return _foo.foo22;
|
||||
}
|
||||
});
|
||||
Object.defineProperty(exports, "foo23", {
|
||||
enumerable: true,
|
||||
get: function () {
|
||||
return _foo.foo23;
|
||||
}
|
||||
});
|
||||
Object.defineProperty(exports, "foo24", {
|
||||
enumerable: true,
|
||||
get: function () {
|
||||
return _foo.foo24;
|
||||
}
|
||||
});
|
||||
Object.defineProperty(exports, "foo25", {
|
||||
enumerable: true,
|
||||
get: function () {
|
||||
return _foo.foo25;
|
||||
}
|
||||
});
|
||||
Object.defineProperty(exports, "foo26", {
|
||||
enumerable: true,
|
||||
get: function () {
|
||||
return _foo.foo26;
|
||||
}
|
||||
});
|
||||
Object.defineProperty(exports, "foo27", {
|
||||
enumerable: true,
|
||||
get: function () {
|
||||
return _foo.foo27;
|
||||
}
|
||||
});
|
||||
Object.defineProperty(exports, "foo28", {
|
||||
enumerable: true,
|
||||
get: function () {
|
||||
return _foo.foo28;
|
||||
}
|
||||
});
|
||||
Object.defineProperty(exports, "foo29", {
|
||||
enumerable: true,
|
||||
get: function () {
|
||||
return _foo.foo29;
|
||||
}
|
||||
});
|
||||
Object.defineProperty(exports, "foo30", {
|
||||
enumerable: true,
|
||||
get: function () {
|
||||
return _foo.foo30;
|
||||
}
|
||||
});
|
||||
Object.defineProperty(exports, "foo31", {
|
||||
enumerable: true,
|
||||
get: function () {
|
||||
return _foo.foo31;
|
||||
}
|
||||
});
|
||||
Object.defineProperty(exports, "foo32", {
|
||||
enumerable: true,
|
||||
get: function () {
|
||||
return _foo.foo32;
|
||||
}
|
||||
});
|
||||
Object.defineProperty(exports, "foo33", {
|
||||
enumerable: true,
|
||||
get: function () {
|
||||
return _foo.foo33;
|
||||
}
|
||||
});
|
||||
Object.defineProperty(exports, "foo34", {
|
||||
enumerable: true,
|
||||
get: function () {
|
||||
return _foo.foo34;
|
||||
}
|
||||
});
|
||||
Object.defineProperty(exports, "foo35", {
|
||||
enumerable: true,
|
||||
get: function () {
|
||||
return _foo.foo35;
|
||||
}
|
||||
});
|
||||
Object.defineProperty(exports, "foo36", {
|
||||
enumerable: true,
|
||||
get: function () {
|
||||
return _foo.foo36;
|
||||
}
|
||||
});
|
||||
Object.defineProperty(exports, "foo37", {
|
||||
enumerable: true,
|
||||
get: function () {
|
||||
return _foo.foo37;
|
||||
}
|
||||
});
|
||||
Object.defineProperty(exports, "foo38", {
|
||||
enumerable: true,
|
||||
get: function () {
|
||||
return _foo.foo38;
|
||||
}
|
||||
});
|
||||
Object.defineProperty(exports, "foo39", {
|
||||
enumerable: true,
|
||||
get: function () {
|
||||
return _foo.foo39;
|
||||
}
|
||||
});
|
||||
Object.defineProperty(exports, "foo40", {
|
||||
enumerable: true,
|
||||
get: function () {
|
||||
return _foo.foo40;
|
||||
}
|
||||
});
|
||||
Object.defineProperty(exports, "foo41", {
|
||||
enumerable: true,
|
||||
get: function () {
|
||||
return _foo.foo41;
|
||||
}
|
||||
});
|
||||
Object.defineProperty(exports, "foo42", {
|
||||
enumerable: true,
|
||||
get: function () {
|
||||
return _foo.foo42;
|
||||
}
|
||||
});
|
||||
Object.defineProperty(exports, "foo43", {
|
||||
enumerable: true,
|
||||
get: function () {
|
||||
return _foo.foo43;
|
||||
}
|
||||
});
|
||||
Object.defineProperty(exports, "foo44", {
|
||||
enumerable: true,
|
||||
get: function () {
|
||||
return _foo.foo44;
|
||||
}
|
||||
});
|
||||
Object.defineProperty(exports, "foo45", {
|
||||
enumerable: true,
|
||||
get: function () {
|
||||
return _foo.foo45;
|
||||
}
|
||||
});
|
||||
Object.defineProperty(exports, "foo46", {
|
||||
enumerable: true,
|
||||
get: function () {
|
||||
return _foo.foo46;
|
||||
}
|
||||
});
|
||||
Object.defineProperty(exports, "foo47", {
|
||||
enumerable: true,
|
||||
get: function () {
|
||||
return _foo.foo47;
|
||||
}
|
||||
});
|
||||
Object.defineProperty(exports, "foo48", {
|
||||
enumerable: true,
|
||||
get: function () {
|
||||
return _foo.foo48;
|
||||
}
|
||||
});
|
||||
Object.defineProperty(exports, "foo49", {
|
||||
enumerable: true,
|
||||
get: function () {
|
||||
return _foo.foo49;
|
||||
}
|
||||
});
|
||||
Object.defineProperty(exports, "foo50", {
|
||||
enumerable: true,
|
||||
get: function () {
|
||||
return _foo.foo50;
|
||||
}
|
||||
});
|
||||
Object.defineProperty(exports, "foo51", {
|
||||
enumerable: true,
|
||||
get: function () {
|
||||
return _foo.foo51;
|
||||
}
|
||||
});
|
||||
Object.defineProperty(exports, "foo52", {
|
||||
enumerable: true,
|
||||
get: function () {
|
||||
return _foo.foo52;
|
||||
}
|
||||
});
|
||||
Object.defineProperty(exports, "foo53", {
|
||||
enumerable: true,
|
||||
get: function () {
|
||||
return _foo.foo53;
|
||||
}
|
||||
});
|
||||
Object.defineProperty(exports, "foo54", {
|
||||
enumerable: true,
|
||||
get: function () {
|
||||
return _foo.foo54;
|
||||
}
|
||||
});
|
||||
Object.defineProperty(exports, "foo55", {
|
||||
enumerable: true,
|
||||
get: function () {
|
||||
return _foo.foo55;
|
||||
}
|
||||
});
|
||||
Object.defineProperty(exports, "foo56", {
|
||||
enumerable: true,
|
||||
get: function () {
|
||||
return _foo.foo56;
|
||||
}
|
||||
});
|
||||
Object.defineProperty(exports, "foo57", {
|
||||
enumerable: true,
|
||||
get: function () {
|
||||
return _foo.foo57;
|
||||
}
|
||||
});
|
||||
Object.defineProperty(exports, "foo58", {
|
||||
enumerable: true,
|
||||
get: function () {
|
||||
return _foo.foo58;
|
||||
}
|
||||
});
|
||||
Object.defineProperty(exports, "foo59", {
|
||||
enumerable: true,
|
||||
get: function () {
|
||||
return _foo.foo59;
|
||||
}
|
||||
});
|
||||
Object.defineProperty(exports, "foo60", {
|
||||
enumerable: true,
|
||||
get: function () {
|
||||
return _foo.foo60;
|
||||
}
|
||||
});
|
||||
Object.defineProperty(exports, "foo61", {
|
||||
enumerable: true,
|
||||
get: function () {
|
||||
return _foo.foo61;
|
||||
}
|
||||
});
|
||||
Object.defineProperty(exports, "foo62", {
|
||||
enumerable: true,
|
||||
get: function () {
|
||||
return _foo.foo62;
|
||||
}
|
||||
});
|
||||
Object.defineProperty(exports, "foo63", {
|
||||
enumerable: true,
|
||||
get: function () {
|
||||
return _foo.foo63;
|
||||
}
|
||||
});
|
||||
Object.defineProperty(exports, "foo64", {
|
||||
enumerable: true,
|
||||
get: function () {
|
||||
return _foo.foo64;
|
||||
}
|
||||
});
|
||||
Object.defineProperty(exports, "foo65", {
|
||||
enumerable: true,
|
||||
get: function () {
|
||||
return _foo.foo65;
|
||||
}
|
||||
});
|
||||
Object.defineProperty(exports, "foo66", {
|
||||
enumerable: true,
|
||||
get: function () {
|
||||
return _foo.foo66;
|
||||
}
|
||||
});
|
||||
Object.defineProperty(exports, "foo67", {
|
||||
enumerable: true,
|
||||
get: function () {
|
||||
return _foo.foo67;
|
||||
}
|
||||
});
|
||||
Object.defineProperty(exports, "foo68", {
|
||||
enumerable: true,
|
||||
get: function () {
|
||||
return _foo.foo68;
|
||||
}
|
||||
});
|
||||
Object.defineProperty(exports, "foo69", {
|
||||
enumerable: true,
|
||||
get: function () {
|
||||
return _foo.foo69;
|
||||
}
|
||||
});
|
||||
Object.defineProperty(exports, "foo70", {
|
||||
enumerable: true,
|
||||
get: function () {
|
||||
return _foo.foo70;
|
||||
}
|
||||
});
|
||||
Object.defineProperty(exports, "foo71", {
|
||||
enumerable: true,
|
||||
get: function () {
|
||||
return _foo.foo71;
|
||||
}
|
||||
});
|
||||
Object.defineProperty(exports, "foo72", {
|
||||
enumerable: true,
|
||||
get: function () {
|
||||
return _foo.foo72;
|
||||
}
|
||||
});
|
||||
Object.defineProperty(exports, "foo73", {
|
||||
enumerable: true,
|
||||
get: function () {
|
||||
return _foo.foo73;
|
||||
}
|
||||
});
|
||||
Object.defineProperty(exports, "foo74", {
|
||||
enumerable: true,
|
||||
get: function () {
|
||||
return _foo.foo74;
|
||||
}
|
||||
});
|
||||
Object.defineProperty(exports, "foo75", {
|
||||
enumerable: true,
|
||||
get: function () {
|
||||
return _foo.foo75;
|
||||
}
|
||||
});
|
||||
Object.defineProperty(exports, "foo76", {
|
||||
enumerable: true,
|
||||
get: function () {
|
||||
return _foo.foo76;
|
||||
}
|
||||
});
|
||||
Object.defineProperty(exports, "foo77", {
|
||||
enumerable: true,
|
||||
get: function () {
|
||||
return _foo.foo77;
|
||||
}
|
||||
});
|
||||
Object.defineProperty(exports, "foo78", {
|
||||
enumerable: true,
|
||||
get: function () {
|
||||
return _foo.foo78;
|
||||
}
|
||||
});
|
||||
Object.defineProperty(exports, "foo79", {
|
||||
enumerable: true,
|
||||
get: function () {
|
||||
return _foo.foo79;
|
||||
}
|
||||
});
|
||||
Object.defineProperty(exports, "foo80", {
|
||||
enumerable: true,
|
||||
get: function () {
|
||||
return _foo.foo80;
|
||||
}
|
||||
});
|
||||
Object.defineProperty(exports, "foo81", {
|
||||
enumerable: true,
|
||||
get: function () {
|
||||
return _foo.foo81;
|
||||
}
|
||||
});
|
||||
Object.defineProperty(exports, "foo82", {
|
||||
enumerable: true,
|
||||
get: function () {
|
||||
return _foo.foo82;
|
||||
}
|
||||
});
|
||||
Object.defineProperty(exports, "foo83", {
|
||||
enumerable: true,
|
||||
get: function () {
|
||||
return _foo.foo83;
|
||||
}
|
||||
});
|
||||
Object.defineProperty(exports, "foo84", {
|
||||
enumerable: true,
|
||||
get: function () {
|
||||
return _foo.foo84;
|
||||
}
|
||||
});
|
||||
Object.defineProperty(exports, "foo85", {
|
||||
enumerable: true,
|
||||
get: function () {
|
||||
return _foo.foo85;
|
||||
}
|
||||
});
|
||||
Object.defineProperty(exports, "foo86", {
|
||||
enumerable: true,
|
||||
get: function () {
|
||||
return _foo.foo86;
|
||||
}
|
||||
});
|
||||
Object.defineProperty(exports, "foo87", {
|
||||
enumerable: true,
|
||||
get: function () {
|
||||
return _foo.foo87;
|
||||
}
|
||||
});
|
||||
Object.defineProperty(exports, "foo88", {
|
||||
enumerable: true,
|
||||
get: function () {
|
||||
return _foo.foo88;
|
||||
}
|
||||
});
|
||||
Object.defineProperty(exports, "foo89", {
|
||||
enumerable: true,
|
||||
get: function () {
|
||||
return _foo.foo89;
|
||||
}
|
||||
});
|
||||
Object.defineProperty(exports, "foo90", {
|
||||
enumerable: true,
|
||||
get: function () {
|
||||
return _foo.foo90;
|
||||
}
|
||||
});
|
||||
Object.defineProperty(exports, "foo91", {
|
||||
enumerable: true,
|
||||
get: function () {
|
||||
return _foo.foo91;
|
||||
}
|
||||
});
|
||||
Object.defineProperty(exports, "foo92", {
|
||||
enumerable: true,
|
||||
get: function () {
|
||||
return _foo.foo92;
|
||||
}
|
||||
});
|
||||
Object.defineProperty(exports, "foo93", {
|
||||
enumerable: true,
|
||||
get: function () {
|
||||
return _foo.foo93;
|
||||
}
|
||||
});
|
||||
Object.defineProperty(exports, "foo94", {
|
||||
enumerable: true,
|
||||
get: function () {
|
||||
return _foo.foo94;
|
||||
}
|
||||
});
|
||||
Object.defineProperty(exports, "foo95", {
|
||||
enumerable: true,
|
||||
get: function () {
|
||||
return _foo.foo95;
|
||||
}
|
||||
});
|
||||
Object.defineProperty(exports, "foo96", {
|
||||
enumerable: true,
|
||||
get: function () {
|
||||
return _foo.foo96;
|
||||
}
|
||||
});
|
||||
Object.defineProperty(exports, "foo97", {
|
||||
enumerable: true,
|
||||
get: function () {
|
||||
return _foo.foo97;
|
||||
}
|
||||
});
|
||||
Object.defineProperty(exports, "foo98", {
|
||||
enumerable: true,
|
||||
get: function () {
|
||||
return _foo.foo98;
|
||||
}
|
||||
});
|
||||
Object.defineProperty(exports, "foo99", {
|
||||
enumerable: true,
|
||||
get: function () {
|
||||
return _foo.foo99;
|
||||
}
|
||||
});
|
||||
Object.defineProperty(exports, "foo100", {
|
||||
enumerable: true,
|
||||
get: function () {
|
||||
return _foo.foo100;
|
||||
}
|
||||
});
|
||||
|
||||
var _foo = require("foo");
|
||||
@@ -1,17 +0,0 @@
|
||||
"use strict";
|
||||
|
||||
Object.defineProperty(exports, "__esModule", {
|
||||
value: true
|
||||
});
|
||||
|
||||
var _foo = require("foo");
|
||||
|
||||
Object.keys(_foo).forEach(function (key) {
|
||||
if (key === "default" || key === "__esModule") return;
|
||||
Object.defineProperty(exports, key, {
|
||||
enumerable: true,
|
||||
get: function () {
|
||||
return _foo[key];
|
||||
}
|
||||
});
|
||||
});
|
||||
@@ -1,9 +0,0 @@
|
||||
"use strict";
|
||||
|
||||
Object.defineProperty(exports, "__esModule", {
|
||||
value: true
|
||||
});
|
||||
exports.bar = exports.foo = void 0;
|
||||
var foo, bar;
|
||||
exports.bar = bar;
|
||||
exports.foo = foo;
|
||||
@@ -1,8 +0,0 @@
|
||||
"use strict";
|
||||
|
||||
Object.defineProperty(exports, "__esModule", {
|
||||
value: true
|
||||
});
|
||||
exports.bar = void 0;
|
||||
var foo;
|
||||
exports.bar = foo;
|
||||
@@ -1,8 +0,0 @@
|
||||
"use strict";
|
||||
|
||||
Object.defineProperty(exports, "__esModule", {
|
||||
value: true
|
||||
});
|
||||
exports.default = void 0;
|
||||
var foo;
|
||||
exports.default = foo;
|
||||
@@ -1,9 +0,0 @@
|
||||
"use strict";
|
||||
|
||||
Object.defineProperty(exports, "__esModule", {
|
||||
value: true
|
||||
});
|
||||
exports.bar = exports.default = void 0;
|
||||
var foo, bar;
|
||||
exports.bar = bar;
|
||||
exports.default = foo;
|
||||
@@ -1,8 +0,0 @@
|
||||
"use strict";
|
||||
|
||||
Object.defineProperty(exports, "__esModule", {
|
||||
value: true
|
||||
});
|
||||
exports.foo = void 0;
|
||||
var foo;
|
||||
exports.foo = foo;
|
||||
@@ -1,31 +0,0 @@
|
||||
"use strict";
|
||||
|
||||
Object.defineProperty(exports, "__esModule", {
|
||||
value: true
|
||||
});
|
||||
exports.foo8 = foo8;
|
||||
exports.foo9 = exports.foo7 = exports.foo6 = exports.foo5 = exports.foo4 = exports.foo3 = exports.bar = exports.foo2 = exports.foo = void 0;
|
||||
var foo = 1;
|
||||
exports.foo = foo;
|
||||
var foo2 = 1,
|
||||
bar = 2;
|
||||
exports.bar = bar;
|
||||
exports.foo2 = foo2;
|
||||
|
||||
var foo3 = function () {};
|
||||
|
||||
exports.foo3 = foo3;
|
||||
var foo4;
|
||||
exports.foo4 = foo4;
|
||||
let foo5 = 2;
|
||||
exports.foo5 = foo5;
|
||||
let foo6;
|
||||
exports.foo6 = foo6;
|
||||
const foo7 = 3;
|
||||
exports.foo7 = foo7;
|
||||
|
||||
function foo8() {}
|
||||
|
||||
class foo9 {}
|
||||
|
||||
exports.foo9 = foo9;
|
||||
@@ -1,21 +0,0 @@
|
||||
"use strict";
|
||||
|
||||
Object.defineProperty(exports, "__esModule", {
|
||||
value: true
|
||||
});
|
||||
exports.nextOdd = nextOdd;
|
||||
exports.isOdd = void 0;
|
||||
|
||||
var _evens = require("./evens");
|
||||
|
||||
function nextOdd(n) {
|
||||
return (0, _evens.isEven)(n) ? n + 1 : n + 2;
|
||||
}
|
||||
|
||||
var isOdd = function (isEven) {
|
||||
return function (n) {
|
||||
return !isEven(n);
|
||||
};
|
||||
}(_evens.isEven);
|
||||
|
||||
exports.isOdd = isOdd;
|
||||
@@ -1,6 +0,0 @@
|
||||
"use strict";
|
||||
|
||||
var _foo = babelHelpers.interopRequireDefault(require("foo"));
|
||||
|
||||
_foo.default;
|
||||
_foo.default;
|
||||
@@ -1,3 +0,0 @@
|
||||
"use strict";
|
||||
|
||||
var foo = babelHelpers.interopRequireWildcard(require("foo"));
|
||||
@@ -1,5 +0,0 @@
|
||||
var _taggedTemplateLiteral = require("@babel/runtime/helpers/taggedTemplateLiteral");
|
||||
|
||||
var _templateObject = /*#__PURE__*/ _taggedTemplateLiteral(["foo"], ["foo"]);
|
||||
|
||||
tag(_templateObject);
|
||||
@@ -1,6 +0,0 @@
|
||||
"use strict";
|
||||
|
||||
var _foo = babelHelpers.interopRequireWildcard(require("foo"));
|
||||
|
||||
_foo.default;
|
||||
_foo.baz;
|
||||
@@ -1,10 +0,0 @@
|
||||
"use strict";
|
||||
|
||||
var _foo = require("foo");
|
||||
|
||||
_foo.bar;
|
||||
_foo.bar2;
|
||||
_foo.baz;
|
||||
_foo.bar;
|
||||
_foo.bar;
|
||||
_foo.xyz;
|
||||
@@ -1,9 +0,0 @@
|
||||
"use strict";
|
||||
|
||||
require("./foo");
|
||||
|
||||
var _bar = babelHelpers.interopRequireDefault(require("./bar"));
|
||||
|
||||
require("./derp");
|
||||
|
||||
var _qux = require("./qux");
|
||||
@@ -1,7 +0,0 @@
|
||||
"use strict";
|
||||
|
||||
require("foo");
|
||||
|
||||
require("foo-bar");
|
||||
|
||||
require("./directory/foo-bar");
|
||||
@@ -1,8 +0,0 @@
|
||||
"use strict";
|
||||
|
||||
Object.defineProperty(exports, "__esModule", {
|
||||
value: true
|
||||
});
|
||||
exports.module = _module;
|
||||
|
||||
function _module() {}
|
||||
@@ -1,7 +0,0 @@
|
||||
"use strict";
|
||||
|
||||
var _interopRequireDefault3 = require("@babel/runtime/helpers/interopRequireDefault");
|
||||
|
||||
var _interopRequireDefault2 = _interopRequireDefault3(require("@babel/runtime/helpers/interopRequireDefault"));
|
||||
|
||||
console.log(_interopRequireDefault2.default);
|
||||
@@ -1,28 +0,0 @@
|
||||
"use strict";
|
||||
|
||||
Object.defineProperty(exports, "__esModule", {
|
||||
value: true
|
||||
});
|
||||
exports.test2 = exports.test = void 0;
|
||||
|
||||
require("foo");
|
||||
|
||||
require("foo-bar");
|
||||
|
||||
require("./directory/foo-bar");
|
||||
|
||||
var _foo2 = babelHelpers.interopRequireDefault(require("foo2"));
|
||||
|
||||
var foo2 = babelHelpers.interopRequireWildcard(require("foo3"));
|
||||
|
||||
var _foo4 = require("foo4");
|
||||
|
||||
var _foo5 = require("foo5");
|
||||
|
||||
var test;
|
||||
exports.test = test;
|
||||
var test2 = 5;
|
||||
exports.test2 = test2;
|
||||
_foo4.bar;
|
||||
_foo5.foo;
|
||||
_foo2.default;
|
||||
@@ -1,26 +0,0 @@
|
||||
"use strict";
|
||||
|
||||
Object.defineProperty(exports, "__esModule", {
|
||||
value: true
|
||||
});
|
||||
exports.f = exports.e = exports.c = exports.a = exports.test = void 0;
|
||||
var test = 2;
|
||||
exports.test = test;
|
||||
exports.test = test = 5;
|
||||
exports.test = test = test + 1;
|
||||
|
||||
(function () {
|
||||
var test = 2;
|
||||
test = 3;
|
||||
test++;
|
||||
})();
|
||||
|
||||
var a = 2;
|
||||
exports.a = a;
|
||||
exports.a = a = 3;
|
||||
var b = 2;
|
||||
exports.c = b;
|
||||
exports.c = b = 3;
|
||||
var d = 3;
|
||||
exports.f = exports.e = d;
|
||||
exports.f = exports.e = d = 4;
|
||||
@@ -1,13 +0,0 @@
|
||||
"use strict";
|
||||
|
||||
function _foo() {
|
||||
const data = babelHelpers.interopRequireDefault(require("foo"));
|
||||
|
||||
_foo = function () {
|
||||
return data;
|
||||
};
|
||||
|
||||
return data;
|
||||
}
|
||||
|
||||
console.log(_foo().default);
|
||||
@@ -1,13 +0,0 @@
|
||||
"use strict";
|
||||
|
||||
function _foo() {
|
||||
const data = require("foo");
|
||||
|
||||
_foo = function () {
|
||||
return data;
|
||||
};
|
||||
|
||||
return data;
|
||||
}
|
||||
|
||||
console.log(_foo().foo);
|
||||
@@ -1,13 +0,0 @@
|
||||
"use strict";
|
||||
|
||||
function foo() {
|
||||
const data = babelHelpers.interopRequireWildcard(require("foo"));
|
||||
|
||||
foo = function () {
|
||||
return data;
|
||||
};
|
||||
|
||||
return data;
|
||||
}
|
||||
|
||||
console.log(foo());
|
||||
@@ -1,17 +0,0 @@
|
||||
"use strict";
|
||||
|
||||
Object.defineProperty(exports, "__esModule", {
|
||||
value: true
|
||||
});
|
||||
|
||||
var _foo = require("foo");
|
||||
|
||||
Object.keys(_foo).forEach(function (key) {
|
||||
if (key === "default" || key === "__esModule") return;
|
||||
Object.defineProperty(exports, key, {
|
||||
enumerable: true,
|
||||
get: function () {
|
||||
return _foo[key];
|
||||
}
|
||||
});
|
||||
});
|
||||
@@ -1,21 +0,0 @@
|
||||
"use strict";
|
||||
|
||||
Object.defineProperty(exports, "__esModule", {
|
||||
value: true
|
||||
});
|
||||
Object.defineProperty(exports, "default", {
|
||||
enumerable: true,
|
||||
get: function () {
|
||||
return _foo().default;
|
||||
}
|
||||
});
|
||||
|
||||
function _foo() {
|
||||
const data = babelHelpers.interopRequireDefault(require("foo"));
|
||||
|
||||
_foo = function () {
|
||||
return data;
|
||||
};
|
||||
|
||||
return data;
|
||||
}
|
||||
@@ -1,21 +0,0 @@
|
||||
"use strict";
|
||||
|
||||
Object.defineProperty(exports, "__esModule", {
|
||||
value: true
|
||||
});
|
||||
Object.defineProperty(exports, "named", {
|
||||
enumerable: true,
|
||||
get: function () {
|
||||
return _foo().named;
|
||||
}
|
||||
});
|
||||
|
||||
function _foo() {
|
||||
const data = require("foo");
|
||||
|
||||
_foo = function () {
|
||||
return data;
|
||||
};
|
||||
|
||||
return data;
|
||||
}
|
||||
@@ -1,23 +0,0 @@
|
||||
"use strict";
|
||||
|
||||
Object.defineProperty(exports, "__esModule", {
|
||||
value: true
|
||||
});
|
||||
exports.namespace = void 0;
|
||||
|
||||
function namespace() {
|
||||
const data = babelHelpers.interopRequireWildcard(require("foo"));
|
||||
|
||||
namespace = function () {
|
||||
return data;
|
||||
};
|
||||
|
||||
return data;
|
||||
}
|
||||
|
||||
Object.defineProperty(exports, "namespace", {
|
||||
enumerable: true,
|
||||
get: function () {
|
||||
return namespace();
|
||||
}
|
||||
});
|
||||
@@ -1,3 +0,0 @@
|
||||
"use strict";
|
||||
|
||||
require("foo");
|
||||
@@ -1,5 +0,0 @@
|
||||
"use strict";
|
||||
|
||||
var _foo = babelHelpers.interopRequireDefault(require("./foo"));
|
||||
|
||||
console.log(_foo.default);
|
||||
@@ -1,5 +0,0 @@
|
||||
"use strict";
|
||||
|
||||
var _foo = require("./foo");
|
||||
|
||||
console.log(_foo.foo);
|
||||
@@ -1,4 +0,0 @@
|
||||
"use strict";
|
||||
|
||||
var foo = babelHelpers.interopRequireWildcard(require("./foo"));
|
||||
console.log(foo);
|
||||
@@ -1,17 +0,0 @@
|
||||
"use strict";
|
||||
|
||||
Object.defineProperty(exports, "__esModule", {
|
||||
value: true
|
||||
});
|
||||
|
||||
var _foo = require("./foo");
|
||||
|
||||
Object.keys(_foo).forEach(function (key) {
|
||||
if (key === "default" || key === "__esModule") return;
|
||||
Object.defineProperty(exports, key, {
|
||||
enumerable: true,
|
||||
get: function () {
|
||||
return _foo[key];
|
||||
}
|
||||
});
|
||||
});
|
||||
@@ -1,13 +0,0 @@
|
||||
"use strict";
|
||||
|
||||
Object.defineProperty(exports, "__esModule", {
|
||||
value: true
|
||||
});
|
||||
Object.defineProperty(exports, "default", {
|
||||
enumerable: true,
|
||||
get: function () {
|
||||
return _foo.default;
|
||||
}
|
||||
});
|
||||
|
||||
var _foo = babelHelpers.interopRequireDefault(require("./foo"));
|
||||
@@ -1,13 +0,0 @@
|
||||
"use strict";
|
||||
|
||||
Object.defineProperty(exports, "__esModule", {
|
||||
value: true
|
||||
});
|
||||
Object.defineProperty(exports, "named", {
|
||||
enumerable: true,
|
||||
get: function () {
|
||||
return _foo.named;
|
||||
}
|
||||
});
|
||||
|
||||
var _foo = require("./foo");
|
||||
@@ -1,8 +0,0 @@
|
||||
"use strict";
|
||||
|
||||
Object.defineProperty(exports, "__esModule", {
|
||||
value: true
|
||||
});
|
||||
exports.namespace = void 0;
|
||||
var namespace = babelHelpers.interopRequireWildcard(require("./foo"));
|
||||
exports.namespace = namespace;
|
||||
@@ -1,3 +0,0 @@
|
||||
"use strict";
|
||||
|
||||
require("./a");
|
||||
@@ -1,16 +0,0 @@
|
||||
"use strict";
|
||||
|
||||
var _white = babelHelpers.interopRequireDefault(require("white"));
|
||||
|
||||
function _black() {
|
||||
const data = babelHelpers.interopRequireDefault(require("black"));
|
||||
|
||||
_black = function () {
|
||||
return data;
|
||||
};
|
||||
|
||||
return data;
|
||||
}
|
||||
|
||||
console.log(_white.default);
|
||||
console.log(_black().default);
|
||||
@@ -1,16 +0,0 @@
|
||||
"use strict";
|
||||
|
||||
var _white = require("white");
|
||||
|
||||
function _black() {
|
||||
const data = require("black");
|
||||
|
||||
_black = function () {
|
||||
return data;
|
||||
};
|
||||
|
||||
return data;
|
||||
}
|
||||
|
||||
console.log(_white.foo1);
|
||||
console.log(_black().foo2);
|
||||
@@ -1,16 +0,0 @@
|
||||
"use strict";
|
||||
|
||||
var foo1 = babelHelpers.interopRequireWildcard(require("white"));
|
||||
|
||||
function foo2() {
|
||||
const data = babelHelpers.interopRequireWildcard(require("black"));
|
||||
|
||||
foo2 = function () {
|
||||
return data;
|
||||
};
|
||||
|
||||
return data;
|
||||
}
|
||||
|
||||
console.log(foo1);
|
||||
console.log(foo2());
|
||||
@@ -1,29 +0,0 @@
|
||||
"use strict";
|
||||
|
||||
Object.defineProperty(exports, "__esModule", {
|
||||
value: true
|
||||
});
|
||||
|
||||
var _white = require("white");
|
||||
|
||||
Object.keys(_white).forEach(function (key) {
|
||||
if (key === "default" || key === "__esModule") return;
|
||||
Object.defineProperty(exports, key, {
|
||||
enumerable: true,
|
||||
get: function () {
|
||||
return _white[key];
|
||||
}
|
||||
});
|
||||
});
|
||||
|
||||
var _black = require("black");
|
||||
|
||||
Object.keys(_black).forEach(function (key) {
|
||||
if (key === "default" || key === "__esModule") return;
|
||||
Object.defineProperty(exports, key, {
|
||||
enumerable: true,
|
||||
get: function () {
|
||||
return _black[key];
|
||||
}
|
||||
});
|
||||
});
|
||||
@@ -1,13 +0,0 @@
|
||||
"use strict";
|
||||
|
||||
Object.defineProperty(exports, "__esModule", {
|
||||
value: true
|
||||
});
|
||||
Object.defineProperty(exports, "default", {
|
||||
enumerable: true,
|
||||
get: function () {
|
||||
return _white.default;
|
||||
}
|
||||
});
|
||||
|
||||
var _white = babelHelpers.interopRequireDefault(require("white"));
|
||||
@@ -1,29 +0,0 @@
|
||||
"use strict";
|
||||
|
||||
Object.defineProperty(exports, "__esModule", {
|
||||
value: true
|
||||
});
|
||||
Object.defineProperty(exports, "named1", {
|
||||
enumerable: true,
|
||||
get: function () {
|
||||
return _white.named1;
|
||||
}
|
||||
});
|
||||
Object.defineProperty(exports, "named2", {
|
||||
enumerable: true,
|
||||
get: function () {
|
||||
return _black().named2;
|
||||
}
|
||||
});
|
||||
|
||||
var _white = require("white");
|
||||
|
||||
function _black() {
|
||||
const data = require("black");
|
||||
|
||||
_black = function () {
|
||||
return data;
|
||||
};
|
||||
|
||||
return data;
|
||||
}
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user