Front end of the Slack clone application.
jpsp91 07dd8af64f root page set преди 6 години
..
.jshintrc root page set преди 6 години
.npmignore root page set преди 6 години
LICENCE root page set преди 6 години
Makefile root page set преди 6 години
README.md root page set преди 6 години
immutable.js root page set преди 6 години
mutable.js root page set преди 6 години
package.json root page set преди 6 години
test.js root page set преди 6 години

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 Licenced