Fix license issues
[sdnc/oam.git] / dgbuilder / dgeflows / node_modules / express / node_modules / utils-merge / README.md
1 # utils-merge
2
3 Merges the properties from a source object into a destination object.
4
5 ## Install
6
7     $ npm install utils-merge
8
9 ## Usage
10
11 ```javascript
12 var a = { foo: 'bar' }
13   , b = { bar: 'baz' };
14
15 merge(a, b);
16 // => { foo: 'bar', bar: 'baz' }
17 ```
18
19 ## Tests
20
21     $ npm install
22     $ npm test
23
24 [![Build Status](https://secure.travis-ci.org/jaredhanson/utils-merge.png)](http://travis-ci.org/jaredhanson/utils-merge)
25
26 ## Credits
27
28   - [Jared Hanson](http://github.com/jaredhanson)
29
30 ## License
31
32 [The MIT License](http://opensource.org/licenses/MIT)
33
34 Copyright (c) 2013 Jared Hanson <[http://jaredhanson.net/](http://jaredhanson.net/)>