Instead of assigning the import a name and them declaring a new variabled referencing that name, output the import already with the destination name, since we know there must be no collisions because these IDs are also generated.
6 lines
256 B
JavaScript
6 lines
256 B
JavaScript
define(["exports", "6to5-runtime/6to5", "6to5-runtime/core-js", "6to5-runtime/regenerator", "someModule"], function (exports, _to5Runtime, _core, _regeneratorRuntime, _someModule) {
|
|
"use strict";
|
|
|
|
var foo = _to5Runtime.interopRequire(_someModule);
|
|
});
|