Skip to content

Instantly share code, notes, and snippets.

@krzysztofczernek
Created September 18, 2019 17:00
Show Gist options
  • Save krzysztofczernek/eef4e64d70abcde61a777453bebb35c0 to your computer and use it in GitHub Desktop.
Save krzysztofczernek/eef4e64d70abcde61a777453bebb35c0 to your computer and use it in GitHub Desktop.
const R = require('ramda')
const trace = value => {
console.log(value)
return value
}
const fastestCarPF = R.pipe(
R.sortBy(R.prop('horsepower')),
trace,
R.last,
R.prop('name')
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment