Skip to content

Instantly share code, notes, and snippets.

@Horaddrim
Last active August 30, 2018 02:00
Show Gist options
  • Save Horaddrim/f39f9be99f817e74d4b1065a13313749 to your computer and use it in GitHub Desktop.
Save Horaddrim/f39f9be99f817e74d4b1065a13313749 to your computer and use it in GitHub Desktop.
function toPickOnlyTheRicksNameAndDimension(rick) {
if("name" in rick && "dimension" in rick) {
return {
name: rick.name,
dimension: rick.dimension,
};
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment