Conflicts: test/fixtures/transformation/es6-modules-amd/exports-default/expected.js test/fixtures/transformation/es6-modules-amd/overview/expected.js test/fixtures/transformation/es6-modules-umd/exports-default/expected.js test/fixtures/transformation/es6-modules-umd/overview/expected.js
18 lines
345 B
JavaScript
18 lines
345 B
JavaScript
define(["exports", "module"], function (exports, module) {
|
|
"use strict";
|
|
|
|
module.exports = foo;
|
|
module.exports = 42;
|
|
module.exports = {};
|
|
module.exports = [];
|
|
module.exports = foo;
|
|
module.exports = function () {};
|
|
|
|
module.exports = function () {};
|
|
|
|
function foo() {}
|
|
var Foo = function Foo() {};
|
|
|
|
module.exports = Foo;
|
|
});
|