# grouparrayobject

> This Package will group the array of object by key name with comma

Latest version **1.0.1** (published 2022-06-02) · ISC license · 0 weekly downloads

## Install

```sh
npm install grouparrayobject
pnpm add grouparrayobject
yarn add grouparrayobject
bun add grouparrayobject
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.0.1 |
| Published | 2022-06-02 |
| First published | 2022-06-02 |
| Weekly downloads | 0 |
| License | ISC |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Unpacked size | 1.2 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| Author | Rajat Gupta |
| Maintainers | rajat42059 |
| Keywords | arrayobjectgroup, groupbykey-arrayobject |

## Links

- npm: https://www.npmjs.com/package/grouparrayobject
- npm.io page: https://npm.io/package/grouparrayobject

## Recent versions

- 1.0.1 (latest) — 2022-06-02
- 1.0.0 — 2022-06-02

## README

This Package will group the Array of objects on the basis of key with comma seperated values.


const grouparrayobject = require('grouparrayobject') 

  let arrObject = [
      { "name":"Rohan", "age":12},
      { "name":"Mohit", "age":22},
      { "name":"Shawn", "age":18},
      { "name":"Michael", "age":19},
   ];




    console.log(grouparrayobject(arrObject));


will output-

[
  {
	name: 'Rohan,Mohit,Shawn,Michael',
	age: '12,22,18,19'
 }
]

---
_Source: https://npm.io/package/grouparrayobject · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
