currying for unary function via "partial"
const fn = compose(partial(inc), of); const futureCall = fn(5); futureCall() //=> 6