Merges all arrays by their property in the given objects.
Rest
import {mergePropertyArrays} from '@augment-vir/common';mergePropertyArrays( { a: [ 'a', 'b', ], }, { a: [ 'c', 'd', ], },); // output is `{a: ['a', 'b', 'c', 'd']}` Copy
import {mergePropertyArrays} from '@augment-vir/common';mergePropertyArrays( { a: [ 'a', 'b', ], }, { a: [ 'c', 'd', ], },); // output is `{a: ['a', 'b', 'c', 'd']}`
@augment-vir/common
Merges all arrays by their property in the given objects.