Files
babel/test/fixtures/transformation/modules-common/exports-default/expected.js
Sebastian McKenzie f540c3f4b7 fix test newlines
2014-11-03 21:15:58 +11:00

15 lines
256 B
JavaScript

"use strict";
exports.default = 42;
exports.default = {};
exports.default = [];
exports.default = foo;
exports.default = function () {};
exports.default = function () {};
function foo() {}
exports.default = foo;
function Foo() {}
exports.default = Foo;