Skip to content

Instantly share code, notes, and snippets.

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