describe('Compose', () => {
  it('should compose all functions from right to left', () => {
    const f1 = x => `${x}:1`
    const f2 = x => `${x}:2`
    const f3 = x => `${x}:3`