node/test/fixtures/b/d.js

13 lines
173 B
JavaScript
Raw Normal View History

common.debug("load fixtures/b/d.js");
var string = "D";
exports.D = function () {
return string;
};
process.addListener("exit", function () {
string = "D done";
});