Skip to content

Instantly share code, notes, and snippets.

@ernestofreyreg
Created December 1, 2017 23:54
Show Gist options
  • Save ernestofreyreg/5bd29a65c2819715b4c061157f0e65e5 to your computer and use it in GitHub Desktop.
Save ernestofreyreg/5bd29a65c2819715b4c061157f0e65e5 to your computer and use it in GitHub Desktop.
function someService () {
const name = 'some';
function method() {
// Do some shit like...
console.log(name);
}
return { method };
}
module.exports = someService();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment