Package Exports
- obj-from-arr
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (obj-from-arr) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
Create object from array 
Convert an array to an object based on the return value of an iteratee.
Install
npm install obj-from-arrUsage
const objFromArr = require("obj-from-arr");
objFromArr(["a", "b", "c"], val => {
// Handle array here. I'm going to use some simple handling logic as an example.
if (val === "a") return 1;
if (val === "b") return 2;
if (val === "c") return 3;
});
//=> { "a": 1, "b": 2, "c": 3 }API
objFromArr(array, iteratee)
arr
Type: array
The array to convert.
iteratee
Type: function<Array.map>
The iteratee to use when iterating through the array.
