xtend-es6

1.0.0 • Public • Published

xtend-es6

browser support

locked

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" }

Stability status: Locked

MIT Licenced

Dependencies (0)

    Dev Dependencies (1)

    Package Sidebar

    Install

    npm i xtend-es6

    Weekly Downloads

    1

    Version

    1.0.0

    License

    MIT

    Last publish

    Collaborators

    • styfle