summaryrefslogtreecommitdiff
path: root/test/fixtures/cycles/root.js
blob: 9b8b2459e6743f58a2e49e75ebc9bb519b584bb6 (plain)
1
2
3
4
5
6
7
8
9
var foo = exports.foo = require('./folder/foo');

exports.hello = 'hello';
exports.sayHello = function() {
  return foo.hello();
};
exports.calledFromFoo = function() {
  return exports.hello;
};