mirror of
https://github.com/barkeser2002/node-minecraft-data.git
synced 2026-09-25 15:06:10 +03:00
9 lines
235 B
JavaScript
9 lines
235 B
JavaScript
module.exports={
|
|
buildIndexFromObject:
|
|
function(object,fieldToIndex) {
|
|
return Object.keys(object).reduce(function(index,key){
|
|
index[object[key][fieldToIndex]]=object[key];
|
|
return index;
|
|
},{});
|
|
}
|
|
}; |