curaflow/node_modules/xtend
Deep Koluguri 231a84182e
Build Curio HMS / build-and-deploy (push) Successful in 50s Details
feat: full multi-tenant auth - JWT login, clinic registration, super admin CRUD
2026-05-25 21:43:30 -04:00
..
.jshintrc feat: full multi-tenant auth - JWT login, clinic registration, super admin CRUD 2026-05-25 21:43:30 -04:00
LICENSE feat: full multi-tenant auth - JWT login, clinic registration, super admin CRUD 2026-05-25 21:43:30 -04:00
README.md feat: full multi-tenant auth - JWT login, clinic registration, super admin CRUD 2026-05-25 21:43:30 -04:00
immutable.js feat: full multi-tenant auth - JWT login, clinic registration, super admin CRUD 2026-05-25 21:43:30 -04:00
mutable.js feat: full multi-tenant auth - JWT login, clinic registration, super admin CRUD 2026-05-25 21:43:30 -04:00
package.json feat: full multi-tenant auth - JWT login, clinic registration, super admin CRUD 2026-05-25 21:43:30 -04:00
test.js feat: full multi-tenant auth - JWT login, clinic registration, super admin CRUD 2026-05-25 21:43:30 -04: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