copier
A JavaScript object property copier. Copies the enumerable properties of one or more objects to a target object.
Installation
Server:
$ npm install copier
Client:
$ component install shannonmoeller/copier.js
API
copier(target, objs...)
Copies the enumerable properties of one or more objects to a target object.
var copier = foo = a: 1 b: 2 bar = b: 3 c: 4 ; ; // returns { a: 1, b: 3, c: 4 } // foo and bar remain unchanged ; // foo now equals { a: 1, b: 3, c: 4 }
License
MIT