Appearance
assignOwn<T>(target, ...sources): T
T
target
sources
分配来源对象上属于目标对象自身的属性值
Object
any
assignOwn({ a: 1 }, { a: 2, b: 3 }) // => { a: 2 }