Home > rc-js-util > dictionaryExtend
Modifies an object to include the keys and values of another.
Signature:
export declare function dictionaryExtend<T extends object>(base: T, extension: T): void;
Parameter | Type | Description |
---|---|---|
base | T | The object to be modified. |
extension | T | The object to be applied to base . |
Returns:
void
See dictionaryExtend().