Skip to content

Instantly share code, notes, and snippets.

@send2moran
Created May 21, 2015 21:25
Show Gist options
  • Save send2moran/18add3a4fbb67cfd755d to your computer and use it in GitHub Desktop.
Save send2moran/18add3a4fbb67cfd755d to your computer and use it in GitHub Desktop.
var userProto = {
login: () => console.log('hello')
};
var User = (json) =>
Object.assign(Object.create(userProto),jsonFromServer,{
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment