Perform right-to-left function composition.
const func = compose( arr => arr.map(v => v + 2) (arr: number[]) => arr.map(v => v * 2),)// [4, 6, 8, 10]// Copy
const func = compose( arr => arr.map(v => v + 2) (arr: number[]) => arr.map(v => v * 2),)// [4, 6, 8, 10]//
Perform right-to-left function composition.