#### Description: Warns when `Object.assign` is used with the first parameter anything else than object initialisation. #### Will warn: ``` js const foo = {}; Object.assign(foo, {bar: 'BAR'}); ``` #### Will not warn: ``` js const foo = {}; Object.assign({}, foo, {bar: 'BAR'}); ```