Skip to content
On this page

Home > @taiyuuki/utils > object_concat

object_concat() function

函数 object_concat 连接两个通用类型的对象并返回连接后的对象。

Signature:

typescript
declare function object_concat<T extends object, S extends object>(target: T, source: S): Concat<T, S>;
declare function object_concat<T extends object, S extends object>(target: T, source: S): Concat<T, S>;

Parameters

ParameterTypeDescription
targetT第一个参数表示将通过添加来自第二个参数“源”的属性来修改的对象。
sourceS表示将合并到“目标”对象中的对象。

Returns:

Concat<T, S>

object_concat 函数返回 Object.assign(target, source) 的结果,这是一个合并了 targetsource 对象属性的新对象。返回类型为“T”和“S”对象类型串联的类型。

Released under the MIT License.