Sebastian McKenzie f540c3f4b7 fix test newlines
2014-11-03 21:15:58 +11:00

23 lines
487 B
JavaScript

(function (factory) {
if (typeof define === "function" && define.amd) {
define(["exports"], factory);
} else if (typeof exports !== "undefined") {
factory(exports);
}
})(function (exports) {
"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;
});