1 | # extend-shallow [![NPM version](https://img.shields.io/npm/v/extend-shallow.svg?style=flat)](https://www.npmjs.com/package/extend-shallow) [![NPM monthly downloads](https://img.shields.io/npm/dm/extend-shallow.svg?style=flat)](https://npmjs.org/package/extend-shallow) [![NPM total downloads](https://img.shields.io/npm/dt/extend-shallow.svg?style=flat)](https://npmjs.org/package/extend-shallow) [![Linux Build Status](https://img.shields.io/travis/jonschlinkert/extend-shallow.svg?style=flat&label=Travis)](https://travis-ci.org/jonschlinkert/extend-shallow)
|
---|
2 |
|
---|
3 | > Extend an object with the properties of additional objects. node.js/javascript util.
|
---|
4 |
|
---|
5 | Please consider following this project's author, [Jon Schlinkert](https://github.com/jonschlinkert), and consider starring the project to show your :heart: and support.
|
---|
6 |
|
---|
7 | ## Install
|
---|
8 |
|
---|
9 | Install with [npm](https://www.npmjs.com/):
|
---|
10 |
|
---|
11 | ```sh
|
---|
12 | $ npm install --save extend-shallow
|
---|
13 | ```
|
---|
14 |
|
---|
15 | ## Usage
|
---|
16 |
|
---|
17 | ```js
|
---|
18 | var extend = require('extend-shallow');
|
---|
19 |
|
---|
20 | extend({a: 'b'}, {c: 'd'})
|
---|
21 | //=> {a: 'b', c: 'd'}
|
---|
22 | ```
|
---|
23 |
|
---|
24 | Pass an empty object to shallow clone:
|
---|
25 |
|
---|
26 | ```js
|
---|
27 | var obj = {};
|
---|
28 | extend(obj, {a: 'b'}, {c: 'd'})
|
---|
29 | //=> {a: 'b', c: 'd'}
|
---|
30 | ```
|
---|
31 |
|
---|
32 | ## About
|
---|
33 |
|
---|
34 | <details>
|
---|
35 | <summary><strong>Contributing</strong></summary>
|
---|
36 |
|
---|
37 | Pull requests and stars are always welcome. For bugs and feature requests, [please create an issue](../../issues/new).
|
---|
38 |
|
---|
39 | </details>
|
---|
40 |
|
---|
41 | <details>
|
---|
42 | <summary><strong>Running Tests</strong></summary>
|
---|
43 |
|
---|
44 | Running and reviewing unit tests is a great way to get familiarized with a library and its API. You can install dependencies and run tests with the following command:
|
---|
45 |
|
---|
46 | ```sh
|
---|
47 | $ npm install && npm test
|
---|
48 | ```
|
---|
49 |
|
---|
50 | </details>
|
---|
51 |
|
---|
52 | <details>
|
---|
53 | <summary><strong>Building docs</strong></summary>
|
---|
54 |
|
---|
55 | _(This project's readme.md is generated by [verb](https://github.com/verbose/verb-generate-readme), please don't edit the readme directly. Any changes to the readme must be made in the [.verb.md](.verb.md) readme template.)_
|
---|
56 |
|
---|
57 | To generate the readme, run the following command:
|
---|
58 |
|
---|
59 | ```sh
|
---|
60 | $ npm install -g verbose/verb#dev verb-generate-readme && verb
|
---|
61 | ```
|
---|
62 |
|
---|
63 | </details>
|
---|
64 |
|
---|
65 | ### Related projects
|
---|
66 |
|
---|
67 | You might also be interested in these projects:
|
---|
68 |
|
---|
69 | * [extend-shallow](https://www.npmjs.com/package/extend-shallow): Extend an object with the properties of additional objects. node.js/javascript util. | [homepage](https://github.com/jonschlinkert/extend-shallow "Extend an object with the properties of additional objects. node.js/javascript util.")
|
---|
70 | * [for-in](https://www.npmjs.com/package/for-in): Iterate over the own and inherited enumerable properties of an object, and return an object… [more](https://github.com/jonschlinkert/for-in) | [homepage](https://github.com/jonschlinkert/for-in "Iterate over the own and inherited enumerable properties of an object, and return an object with properties that evaluate to true from the callback. Exit early by returning `false`. JavaScript/Node.js")
|
---|
71 | * [for-own](https://www.npmjs.com/package/for-own): Iterate over the own enumerable properties of an object, and return an object with properties… [more](https://github.com/jonschlinkert/for-own) | [homepage](https://github.com/jonschlinkert/for-own "Iterate over the own enumerable properties of an object, and return an object with properties that evaluate to true from the callback. Exit early by returning `false`. JavaScript/Node.js.")
|
---|
72 | * [is-plain-object](https://www.npmjs.com/package/is-plain-object): Returns true if an object was created by the `Object` constructor. | [homepage](https://github.com/jonschlinkert/is-plain-object "Returns true if an object was created by the `Object` constructor.")
|
---|
73 | * [isobject](https://www.npmjs.com/package/isobject): Returns true if the value is an object and not an array or null. | [homepage](https://github.com/jonschlinkert/isobject "Returns true if the value is an object and not an array or null.")
|
---|
74 | * [kind-of](https://www.npmjs.com/package/kind-of): Get the native type of a value. | [homepage](https://github.com/jonschlinkert/kind-of "Get the native type of a value.")
|
---|
75 |
|
---|
76 | ### Contributors
|
---|
77 |
|
---|
78 | | **Commits** | **Contributor** |
|
---|
79 | | --- | --- |
|
---|
80 | | 33 | [jonschlinkert](https://github.com/jonschlinkert) |
|
---|
81 | | 1 | [pdehaan](https://github.com/pdehaan) |
|
---|
82 |
|
---|
83 | ### Author
|
---|
84 |
|
---|
85 | **Jon Schlinkert**
|
---|
86 |
|
---|
87 | * [github/jonschlinkert](https://github.com/jonschlinkert)
|
---|
88 | * [twitter/jonschlinkert](https://twitter.com/jonschlinkert)
|
---|
89 |
|
---|
90 | ### License
|
---|
91 |
|
---|
92 | Copyright © 2017, [Jon Schlinkert](https://github.com/jonschlinkert).
|
---|
93 | Released under the [MIT License](LICENSE).
|
---|
94 |
|
---|
95 | ***
|
---|
96 |
|
---|
97 | _This file was generated by [verb-generate-readme](https://github.com/verbose/verb-generate-readme), v0.6.0, on November 19, 2017._ |
---|