UNPKG

147 BJavaScriptView Raw
1"use strict";
2
3module.exports = function(that, index) {
4 let out = {};
5 that.forEach(function(v) {
6 out[v[index]] = v;
7 });
8 return out;
9};