/** * Created by imamudin.naseem on 25/10/16. */ 'use strict' import {pipeFunctions} from './pipeFunctions' import {toArray} from './toArray' export const compose = function () { const args = toArray(arguments).reverse() return pipeFunctions(args) }