0
0
mirror of https://github.com/nodejs/node.git synced 2024-12-01 16:10:02 +01:00
nodejs/test/fixtures/a.js
2010-02-25 11:41:11 -08:00

24 lines
316 B
JavaScript

var c = require("./b/c");
debug("load fixtures/a.js");
var string = "A";
exports.SomeClass = c.SomeClass;
exports.A = function () {
return string;
};
exports.C = function () {
return c.C();
};
exports.D = function () {
return c.D();
};
process.addListener("exit", function () {
string = "A done";
});