just.assign(target) → {object}
Same as Object.assign, but for ES5 environments.
Parameters:
| Name | Type | Description |
|---|---|---|
| target | object | What to apply the sources' properties to. |
| ...sources [optional] [nullable] | object | Objects containing the properties you want to apply. |
Throws:
if target is null or not an object.
Returns:
target.
- Type
- object
