srod/node-minify

Use native Object.assign instead of xtend

jimmywarting opened this issue · 1 comments

xtend can easily be replaced with Object.assign

This reduce the dependencies and possible also avoid duplicated versions where some package don't use the same version range for the xtend package

// immutable
Object.assign({}, a, b)

// mutable
Object.assign(a, b)
srod commented

Thanks, will replace it 👍