Skip to content

Instantly share code, notes, and snippets.

@krzysztofczernek
Last active September 18, 2019 16:52
Show Gist options
  • Save krzysztofczernek/55806512afd622c73ddda040c5d53086 to your computer and use it in GitHub Desktop.
Save krzysztofczernek/55806512afd622c73ddda040c5d53086 to your computer and use it in GitHub Desktop.
const selectedNames = users =>
R.pipe(
R.map(R.unary(parseInt)),
R.map(R.flip(R.prop)(users)),
R.map(R.prop('name'))
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment