Skip to content

Instantly share code, notes, and snippets.

@udittyagi
Created August 25, 2019 08:32
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/0326c885d78df565d70f75f8f43bc03a to your computer and use it in GitHub Desktop.
Save udittyagi/0326c885d78df565d70f75f8f43bc03a to your computer and use it in GitHub Desktop.
console.log('a starting');
exports.done = false;
const b = require('./b.js');
console.log('in a, b.done = %j', b.done);
exports.done = true;
console.log('a done');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment