mirror of
https://github.com/nodejs/node.git
synced 2025-05-21 17:44:15 +00:00

The copyright and license notice is already in the LICENSE file. There is no justifiable reason to also require that it be included in every file, since the individual files are not individually distributed except as part of the entire package.
26 lines
333 B
JavaScript
26 lines
333 B
JavaScript
var c = require('./b/c');
|
|
|
|
console.error('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();
|
|
};
|
|
|
|
exports.number = 42;
|
|
|
|
process.on('exit', function() {
|
|
string = 'A done';
|
|
});
|