An open API service indexing awesome lists of open source software.

https://github.com/youngwind/array-to-hash-object

将数组转换成对象(可自定义hash key)
https://github.com/youngwind/array-to-hash-object

Last synced: 25 days ago
JSON representation

将数组转换成对象(可自定义hash key)

Awesome Lists containing this project

README

          

# What this package do?
Transform array to object with a custom hash key.
For example.

```
var before = [
{
id:1,
name:"youngwind',
age:24
},
{
id:2,
name:"xiaoye",
age:30
}
];

```

```
// after
{
1:{
name:"youngwind",
age:24
},
2:{
name:"xiaoye",
age:30
}
}
```

# Install
```
npm install array-to-hash-object --save
```

# Usage
```
var arrayToHash = require('array-to-hash-object');
var after = arrayToHash(before,'id');
console.log(after);
```