mirror of
https://github.com/nodejs/node.git
synced 2024-12-01 16:10:02 +01:00
cf2b206a8e
Plus, getting rid of test/common.js defining things in global.
13 lines
173 B
JavaScript
13 lines
173 B
JavaScript
common.debug("load fixtures/b/d.js");
|
|
|
|
var string = "D";
|
|
|
|
exports.D = function () {
|
|
return string;
|
|
};
|
|
|
|
process.addListener("exit", function () {
|
|
string = "D done";
|
|
});
|
|
|