The new `6to5-runtime` packs core-js, 6to5's helpers and the Regenerator runtime, and we're moving `coreAliasing`, `externalRuntime` and `externalRegenerator` to use it instead of forcing the user to depend on these packages directly.
7 lines
217 B
JavaScript
7 lines
217 B
JavaScript
define(["exports", "6to5-runtime/6to5", "someModule"], function (exports, _to5Runtime6to5, _someModule) {
|
|
"use strict";
|
|
|
|
var _to5Runtime = _to5Runtime6to5;
|
|
var foo = _to5Runtime.interopRequire(_someModule);
|
|
});
|