Skip to content

Commit 85ea692

Browse files
committed
updated README.md
1 parent 2543b3c commit 85ea692

File tree

2 files changed

+11
-4
lines changed

2 files changed

+11
-4
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
> Groups JavaScript objects array by a key and returns grouped array.
1010
11-
Groups the scattered objects in an array based on a `groupByKey` (e.g. id). For the given `groupByKey` value, if there is a multiple occurrence of same key (e.g., contact key for id: 3) but with unique values, then the values will be grouped into an array.
11+
> Groups the scattered objects in an array based on a `groupByKey` (e.g. id). For the given `groupByKey` value, if there is a multiple occurrence of same key (e.g., contact key for id: 3) but with unique values, then the values will be grouped into an array.
1212
1313
## Installation
1414

package.json

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,13 @@
77
"test": "node ./tests/groupObjectArrayByKey.spec.js"
88
},
99
"keywords": [
10-
"objects",
10+
"group",
11+
"object",
1112
"array",
1213
"key",
13-
"group"
14+
"merge",
15+
"unique",
16+
"deduplicated"
1417
],
1518
"author": "Jana Rangasamy <janagr7@gmail.com>",
1619
"license": "ISC",
@@ -21,5 +24,9 @@
2124
"homepage": "https://github.com/grjan7/group-objects-array#readme",
2225
"bugs": {
2326
"url": "https://github.com/grjan7/group-objects-array/issues"
24-
}
27+
},
28+
"files": [
29+
"index.js",
30+
"lib/"
31+
]
2532
}

0 commit comments

Comments
 (0)