* fix: sort export init statements by name * update test fixtures * refactor: reduce memory footprint * review comments
9 lines
200 B
JavaScript
9 lines
200 B
JavaScript
define(["exports", "foo"], function (_exports, _foo) {
|
|
"use strict";
|
|
|
|
_exports.__esModule = true;
|
|
_exports.foo = _exports.bar = void 0;
|
|
_exports.foo = _foo.foo;
|
|
_exports.bar = _foo.bar;
|
|
});
|