xtend-es6
v1.0.0
Published
extend like a modern boss with Object.assign()
Downloads
3
Maintainers
Readme
xtend-es6
Extend like a modern boss using Object.assign()
xtend-es6 is a basic utility library which allows you to extend an object by appending all of the properties from each object in a list. When there are identical properties, the right-most property takes precedence.
It's a drop-in replacement for xtend
. In fact, just copy the source and remove this dependency entirely. Really, this is a native JavaScript feature now.
Examples
const extend = require("xtend-es6")
// extend returns a new object. Does not mutate arguments
const combination = extend({
a: "a",
b: "c"
}, {
b: "b"
})
// { a: "a", b: "b" }