1.0.6 • Published 10 years ago

mixin-merge v1.0.6

Weekly downloads
10
License
-
Repository
github
Last release
10 years ago

mixin-merge

Creates a new mixin object c which has object a's own properties and object b's .

Install

$ npm install mixin-merge

Usage

var mixin=require('mixin-merge');
Object.prototype.foobar=function(){};var a = { foo: 'bar' },
b = { bar: 'foos' }; 
mixin(a, b);
// => { foo: 'bar', bar: 'baz' }```

## Tests

    $ npm install
    $ npm test

[![Build Status](https://secure.travis-ci.org/softwareengineer99/mixin-merge.png)](http://travis-ci.org/softwareengineer99/mixin-merge)

## Credits

  - [Frank Mashraqi](http://github.com/softwareengineer99)

## License

[The MIT License](http://opensource.org/licenses/MIT)

Copyright (c) 2013 Frank Mashraqi <[http://mashraqi.com/](http://mashraqi.com/)>
1.0.6

10 years ago

1.0.5

10 years ago

1.0.4

10 years ago

1.0.3

10 years ago

1.0.2

10 years ago

1.0.1

10 years ago