File size: 211 Bytes
b593f0b
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
// @flow

export default function (output: any, ...inputs: Array<any>) {
    for (const input of inputs) {
        for (const k in input) {
            output[k] = input[k];
        }
    }
    return output;
}