UNPKG

rambda

Version:

Lightweight faster alternative to Ramda

7 lines (5 loc) 152 B
export function fromPairs(listOfPairs){ const toReturn = {} listOfPairs.forEach(([ prop, value ]) => toReturn[ prop ] = value) return toReturn }