Skip to content

Instantly share code, notes, and snippets.

@MartinMalinda
Created July 12, 2020 15:14
Show Gist options
  • Save MartinMalinda/8892f0c27ff41b4b3320ae1da2bc56d8 to your computer and use it in GitHub Desktop.
Save MartinMalinda/8892f0c27ff41b4b3320ae1da2bc56d8 to your computer and use it in GitHub Desktop.
export function serializeUser(user) {
return {
id: user.id,
firstName: user.firstName,
lastName: user.lastName,
admin: user.isAdmin
};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment