js-util

Home > rc-js-util > dictionaryExtend

dictionaryExtend() function

Modifies an object to include the keys and values of another.

Signature:

export declare function dictionaryExtend<T extends object>(base: T, extension: T): void;

Parameters

Parameter Type Description
base T The object to be modified.
extension T The object to be applied to base.

Returns:

void

Remarks

See dictionaryExtend().