23 lines
397 B
JavaScript
23 lines
397 B
JavaScript
module.exports = exports = 42;
|
|
module.exports = exports = {};
|
|
|
|
module.exports = exports = [];
|
|
|
|
module.exports = exports = foo;
|
|
|
|
module.exports = exports = function () {}
|
|
|
|
module.exports = exports = function () {
|
|
function Anonymous() {
|
|
}
|
|
return Anonymous;
|
|
}();
|
|
|
|
module.exports = exports = function foo () {}
|
|
|
|
module.exports = exports = function () {
|
|
function foo() {
|
|
}
|
|
return foo;
|
|
}();
|