UNPKG

rambdax

Version:

Extended version of Rambda - a 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 }