Last active
August 30, 2018 02:00
-
-
Save Horaddrim/f39f9be99f817e74d4b1065a13313749 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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