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

d.js « b « fixtures « test - github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 77dbb8be9a99f8054625bbb2087d4bb049d93ff5 (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.addListener('exit', function() {
  string = 'D done';
});