fromPairs.js 608 B

12345678910111213141516171819202122232425262728
  1. /**
  2. * The inverse of `_.toPairs`; this method returns an object composed
  3. * from key-value `pairs`.
  4. *
  5. * @static
  6. * @memberOf _
  7. * @since 4.0.0
  8. * @category Array
  9. * @param {Array} pairs The key-value pairs.
  10. * @returns {Object} Returns the new object.
  11. * @example
  12. *
  13. * _.fromPairs([['fred', 30], ['barney', 40]]);
  14. * // => { 'fred': 30, 'barney': 40 }
  15. */
  16. function fromPairs(pairs) {
  17. var index = -1,
  18. length = pairs ? pairs.length : 0,
  19. result = {};
  20. while (++index < length) {
  21. var pair = pairs[index];
  22. result[pair[0]] = pair[1];
  23. }
  24. return result;
  25. }
  26. module.exports = fromPairs;