Docker-NetworkingDataPersis.../api/node_modules/xtend
adelyaou 4304009bbf Networking and Data Persistence docker compose 2025-08-13 11:28:23 +07:00
..
.jshintrc Networking and Data Persistence docker compose 2025-08-13 11:28:23 +07:00
LICENSE Networking and Data Persistence docker compose 2025-08-13 11:28:23 +07:00
README.md Networking and Data Persistence docker compose 2025-08-13 11:28:23 +07:00
immutable.js Networking and Data Persistence docker compose 2025-08-13 11:28:23 +07:00
mutable.js Networking and Data Persistence docker compose 2025-08-13 11:28:23 +07:00
package.json Networking and Data Persistence docker compose 2025-08-13 11:28:23 +07:00
test.js Networking and Data Persistence docker compose 2025-08-13 11:28:23 +07:00

README.md

xtend

browser support

locked

Extend like a boss

xtend 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.

Examples

var extend = require("xtend")

// extend returns a new object. Does not mutate arguments
var combination = extend({
    a: "a",
    b: "c"
}, {
    b: "b"
})
// { a: "a", b: "b" }

Stability status: Locked

MIT Licensed