Lodash.assign

Assigns own enumerable string keyed properties of source objects to the destination object. Source objects are applied from left to right. Subsequent sources overwrite property assignments of previous sources.

Note: This method mutates object and is loosely based on Object.assign.

struct Lodash
nothrow @trusted @safe ref
assign
(
ARGS...
)
(
auto ref ARGS sources
)

Return Value

Type: auto ref

- Lodash chained on (Object): object.

Meta