A function which takes a function and possible additional parameters, and returns a function.
const map = fn => xs => xs.map(x => fn(x)) // import {map} from 'ramda' map(times(2))([1,2,3]) === [2,4,6]