Spaces:
Sleeping
Sleeping
File size: 211 Bytes
4a288a7 | 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;
}
|