mixin-merge
Creates a new mixin object c which has object a's own properties and object b's own properties
Install
$ npm install mixin-merge
Usage
mixin=require('mixin-merge')
Object.prototype.foobar=function(){}
var a = { foo: 'bar' },
b = { bar: 'foos' };
mixin(a, b);
// => { bar: 'foos', foo: 'bar' }
Tests
$ npm install
$ npm test
Credits
License
Copyright (c) 2013 Frank Mashraqi <http://mashraqi.com/>
