node/test/fixtures/cycles/root.js

10 lines
196 B
JavaScript
Raw Normal View History

2010-12-03 09:03:18 +08:00
var foo = exports.foo = require('./folder/foo');
2010-12-03 09:03:18 +08:00
exports.hello = 'hello';
exports.sayHello = function() {
return foo.hello();
};
2010-12-03 09:03:18 +08:00
exports.calledFromFoo = function() {
return exports.hello;
};