merge-deeper-object 0.1.0 → 0.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -2
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -3,7 +3,7 @@ Combine the attributes of objects deeply. Compatible with both CommonJS (CJS) an
|
|
|
3
3
|
|
|
4
4
|
## Install
|
|
5
5
|
```
|
|
6
|
-
npm install --save
|
|
6
|
+
npm install --save merge-deeper-object
|
|
7
7
|
```
|
|
8
8
|
|
|
9
9
|
## Running tests
|
|
@@ -14,7 +14,7 @@ npm run test
|
|
|
14
14
|
|
|
15
15
|
## Usage
|
|
16
16
|
```javascript
|
|
17
|
-
var mergeDeeper = require('
|
|
17
|
+
var mergeDeeper = require('merge-deeper-object')
|
|
18
18
|
|
|
19
19
|
var obj1 = { a: { b: { c: 1 } }, d: "d", e: { f: true } }
|
|
20
20
|
var obj2 = { a: { g: "g" }, d: "dd", e: { f: false } }
|
package/package.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "0.1.
|
|
2
|
+
"version": "0.1.1",
|
|
3
3
|
"author": "Ilyass Mabrouk",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"name": "merge-deeper-object",
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
"url": "https://github.com/work-state/merge-deeper-object/issues"
|
|
14
14
|
},
|
|
15
15
|
"types": "./lib/cjs/types/index.d.ts",
|
|
16
|
-
"main": "
|
|
16
|
+
"main": "index.js",
|
|
17
17
|
"module": "./lib/esm/index.msj",
|
|
18
18
|
"files": [
|
|
19
19
|
"lib/**/*"
|