Skip to content

Instantly share code, notes, and snippets.

@euoia
Created August 23, 2014 15:42
Show Gist options
  • Save euoia/2c92402f5fb373228b85 to your computer and use it in GitHub Desktop.
Save euoia/2c92402f5fb373228b85 to your computer and use it in GitHub Desktop.
var Users = function() {
console.log('Users Initiated');
}
Users.prototype.find = function(username) {
console.log(username);
};
module.exports = Users;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment