Skip to content

Instantly share code, notes, and snippets.

@elegantcoder
Created July 23, 2014 04:28
Show Gist options
  • Save elegantcoder/4d1aee23511803202e90 to your computer and use it in GitHub Desktop.
Save elegantcoder/4d1aee23511803202e90 to your computer and use it in GitHub Desktop.
inject options
# case 1
module.exports = function (options) {
options.blah;
}
# case2
module.exports = function () {
var options = require('../config.js');
options.blah
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment