Skip to content

Instantly share code, notes, and snippets.

@erikologic
Created March 15, 2017 19:29
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 erikologic/c8beafabe00ef3c3406a0613664d6522 to your computer and use it in GitHub Desktop.
Save erikologic/c8beafabe00ef3c3406a0613664d6522 to your computer and use it in GitHub Desktop.
//file substack.js
module.exports = function() {
console.log('main entry point');
};
module.exports.details = function() {
console.log('more detailed functionality');
};
module.exports.details.all = function() {
console.log('the complete truth');
};
// file substackCaller.js
var substack = require('./substack');
substack();
substack.details();
substack.details.all();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment