animate/webGl/my-threejs-test/node_modules/xtend
Sam 907ebae4c0 larry babby and threejs for glsl 2024-06-24 21:24:00 +12:00
..
.jshintrc larry babby and threejs for glsl 2024-06-24 21:24:00 +12:00
.npmignore larry babby and threejs for glsl 2024-06-24 21:24:00 +12:00
LICENCE larry babby and threejs for glsl 2024-06-24 21:24:00 +12:00
Makefile larry babby and threejs for glsl 2024-06-24 21:24:00 +12:00
README.md larry babby and threejs for glsl 2024-06-24 21:24:00 +12:00
has-keys.js larry babby and threejs for glsl 2024-06-24 21:24:00 +12:00
index.js larry babby and threejs for glsl 2024-06-24 21:24:00 +12:00
mutable.js larry babby and threejs for glsl 2024-06-24 21:24:00 +12:00
package.json larry babby and threejs for glsl 2024-06-24 21:24:00 +12:00
test.js larry babby and threejs for glsl 2024-06-24 21:24:00 +12:00

README.md

xtend

browser support

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

Examples

var extend = require("xtend")

var combination = extend({
    a: "a"
}, {
    b: "b"
})
// { a: "a", b: "b" }

MIT Licenced