Skip to content

Instantly share code, notes, and snippets.

@hinsencamp
Created May 30, 2019 08:05
Show Gist options
  • Select an option

  • Save hinsencamp/b9443fad57c7397003c45b84296ec261 to your computer and use it in GitHub Desktop.

Select an option

Save hinsencamp/b9443fad57c7397003c45b84296ec261 to your computer and use it in GitHub Desktop.
Node.prototype.addConnection = function(user) {
if (!this.friends[user.name]) {
this.friends[user.name] = { name: user.name };
user.addConnection(this);
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment