Skip to content

Instantly share code, notes, and snippets.

@Ibro
Last active December 9, 2017 05:23
Embed
What would you like to do?
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