Created
December 1, 2017 23:52
-
-
Save ernestofreyreg/a0d3e6d67459602b9a19385af3fb3686 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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