source: trip-planner-front/node_modules/extend-shallow/README.md@ e29cc2e

Last change on this file since e29cc2e was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago

initial commit

  • Property mode set to 100644
File size: 4.5 KB
Line 
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
5Please 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
9Install with [npm](https://www.npmjs.com/):
10
11```sh
12$ npm install --save extend-shallow
13```
14
15## Usage
16
17```js
18var extend = require('extend-shallow');
19
20extend({a: 'b'}, {c: 'd'})
21//=> {a: 'b', c: 'd'}
22```
23
24Pass an empty object to shallow clone:
25
26```js
27var obj = {};
28extend(obj, {a: 'b'}, {c: 'd'})
29//=> {a: 'b', c: 'd'}
30```
31
32## About
33
34<details>
35<summary><strong>Contributing</strong></summary>
36
37Pull 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
44Running 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
57To 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
67You 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
92Copyright © 2017, [Jon Schlinkert](https://github.com/jonschlinkert).
93Released 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._
Note: See TracBrowser for help on using the repository browser.