browserify / browserify/insert-module-globals
Use native Object.assign instead of xtend
Open
- Dominant language
- JavaScript
- Stars
- 26
- Forks
- 41
- PR merge metrics
- No merged PRs in 30d
Description
[xtend](https://github.com/Raynos/xtend) can easily be replaced with [Object.assign](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/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
```js
// immutable
Object.assign({}, a, b)
// mutable
Object.assign(a, b)
```
Contributor guide
No contributing guide indexed for this repository
Assessment
This issue has not been assessed yet.