Skip to content

Instantly share code, notes, and snippets.

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