Skip to content

Instantly share code, notes, and snippets.

@udittyagi
Created August 25, 2019 08:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save udittyagi/76e53183a263f6c96aa8f29837e9b4eb to your computer and use it in GitHub Desktop.
Save udittyagi/76e53183a263f6c96aa8f29837e9b4eb to your computer and use it in GitHub Desktop.
console.log('b starting');
exports.done = false;
const a = require('./a.js');
console.log('in b, a.done = %j', a.done);
exports.done = true;
console.log('b done');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment