summaryrefslogtreecommitdiff
path: root/test/fixtures/b/d.js
blob: 3307d8b8584f7f442aa49f9513ecd7ec58a0157f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
console.error('load fixtures/b/d.js');

var string = 'D';

exports.D = function() {
  return string;
};

process.on('exit', function() {
  string = 'D done';
});