assignValue method

Map assignValue(
  1. Map source
)

Assigns own enumerable string keyed properties of source objects to the destination object. This is equivalent to the Object.assign method or the _= operator. Returns the destination object.

Implementation

Map assignValue(Map source) => assign(this, source);