Welcome to mirror list, hosted at ThFree Co, Russian Federation.

root.js « cycles « fixtures « test - github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5e3504e2a643e15efbf036c5e611bfa3f3884163 (plain)
1
2
3
4
5
6
7
8
9
const foo = exports.foo = require('./folder/foo');

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