Skip to content

Instantly share code, notes, and snippets.

@mcculloughsean
Created June 3, 2013 18:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save mcculloughsean/5700194 to your computer and use it in GitHub Desktop.
Save mcculloughsean/5700194 to your computer and use it in GitHub Desktop.
var bh = require('bulk-hogan');
bh.baseDirectory = 'foo';
var bh2 = { prototype: bh };
console.log(bh.baseDirectory, bh2.baseDirectory);
bh2.baseDirectory = 'bar';
console.log(bh.baseDirectory, bh2.baseDirectory);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment