node/test/mjsunit/fixtures/b/d.js

13 lines
171 B
JavaScript

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