mirror of https://github.com/nodejs/node.git
10 lines
198 B
JavaScript
10 lines
198 B
JavaScript
|
|
||
|
var foo = exports.foo = require("./folder/foo");
|
||
|
|
||
|
exports.hello = "hello";
|
||
|
exports.sayHello = function () {
|
||
|
return foo.hello();
|
||
|
};
|
||
|
exports.calledFromFoo = function () {
|
||
|
return exports.hello;
|
||
|
};
|