Skip to content

Instantly share code, notes, and snippets.

@emmiep
Created August 12, 2018 13:27
Show Gist options
  • Save emmiep/448e135f0715504b45564e2f64079664 to your computer and use it in GitHub Desktop.
Save emmiep/448e135f0715504b45564e2f64079664 to your computer and use it in GitHub Desktop.
Object rest spread with falsy value
view({showProfile}={}) {
const {name, id, profile} = this;
return {
name,
id,
...(showProfile && {profile})
};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment