File "index.js"

Full Path: /home/tekvhqgl/public_html/wp-content/plugins/chaty/src/compose/index.js
File size: 290 bytes
MIME-type: text/plain
Charset: utf-8

export default function compose( ...funs ) {

    const props = funs.reduceRight( (total, current) => {
        return {...total, ...current}
    }, {})

    return function( source ) {
        return function( values ) {
            return source({ ...values, ...props })
        }
    }
}