Skip to content

Instantly share code, notes, and snippets.

@krzysztofczernek
Created September 18, 2019 16:56
Show Gist options
  • Save krzysztofczernek/55d6290d116f25d3d969d8571108993e to your computer and use it in GitHub Desktop.
Save krzysztofczernek/55d6290d116f25d3d969d8571108993e to your computer and use it in GitHub Desktop.
const R = require('ramda')
const fastestCarPF = R.pipe(
R.sortBy(R.prop('horsepower')),
R.last,
R.prop('name')
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment