Created
November 6, 2019 12:30
-
-
Save DanShappir/f5c4f70c4c7001077c437a89b8a70f83 to your computer and use it in GitHub Desktop.
Filter object properties with pipeline
This file contains 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
const retainOnlyNumeric = obj | |
|> Object.entries | |
|> filter(#, ([, value]) => typeof value === 'number') | |
|> Object.fromEntries; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment