Skip to content

Instantly share code, notes, and snippets.

@culttm
Created August 22, 2017 17:13
Show Gist options
  • Save culttm/2d001864102b9fb138535a1671769a27 to your computer and use it in GitHub Desktop.
Save culttm/2d001864102b9fb138535a1671769a27 to your computer and use it in GitHub Desktop.
UserSchema.method('toJSON', function() {
var user = this.toObject();
delete user.salt;
delete user.hash;
delete user.__v;
return user;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment