Skip to content

Instantly share code, notes, and snippets.

@Ibro
Last active December 9, 2017 05:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Ibro/8d70823cd43b4a1e79094296702b3155 to your computer and use it in GitHub Desktop.
Save Ibro/8d70823cd43b4a1e79094296702b3155 to your computer and use it in GitHub Desktop.
user helpers
export function getFullName(user) {
return `${user.firstName} ${user.lastName}`;
}
export function getCategory(userPoints) {
return userPoints > 70 ? 'A' : 'B';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment