mirror of
https://github.com/github/codeql.git
synced 2025-12-17 17:23:36 +01:00
8 lines
204 B
JavaScript
8 lines
204 B
JavaScript
// Adapted from the Node.js documentation
|
|
console.log('a starting');
|
|
exports.done = false;
|
|
var b = require('./b.js');
|
|
console.log('in a, b.done = %j', b.done);
|
|
exports.done = true;
|
|
console.log('a done');
|