0
0
mirror of https://github.com/nodejs/node.git synced 2024-11-29 15:06:33 +01:00
nodejs/test/mjsunit/fixtures/a.js
Ryan Dahl 7a2e784ad7 Module refactor - almost CommonJS compatible now
API change summary:

  * require("/sys.js") becomes require("sys")

  * require("circle.js") becomes require("./circle")

  * process.path.join() becomes require("path").join()
2009-10-31 19:10:30 +01:00

23 lines
283 B
JavaScript

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