* fix: sort export init statements by name * update test fixtures * refactor: reduce memory footprint * review comments
18 lines
454 B
JavaScript
18 lines
454 B
JavaScript
define(["exports", "foo", "foo-bar", "./directory/foo-bar"], function (_exports, foo2, _fooBar, _fooBar2) {
|
|
"use strict";
|
|
|
|
_exports.__esModule = true;
|
|
_exports.test2 = _exports.test = _exports.default = void 0;
|
|
foo2 = babelHelpers.interopRequireWildcard(foo2);
|
|
var test;
|
|
_exports.test = test;
|
|
var test2 = 5;
|
|
_exports.test2 = test2;
|
|
var _default = test;
|
|
_exports.default = _default;
|
|
foo2.default;
|
|
foo2;
|
|
foo2.bar;
|
|
foo2.foo;
|
|
});
|