Skip to content

Instantly share code, notes, and snippets.

@calvinfroedge
Created January 7, 2015 07:30
Show Gist options
  • Save calvinfroedge/67a5f4474742456bb811 to your computer and use it in GitHub Desktop.
Save calvinfroedge/67a5f4474742456bb811 to your computer and use it in GitHub Desktop.
var dep = require('somelib');
module.exports = {
myMethod: function(callback){
dep.doSomething(function(err, res){
callback(err, res);
});
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment