Skip to main content
Module

x/rambda/mergeAll.js

Faster and smaller alternative to Ramda
Go to Latest
File
import { map } from './map'import { merge } from './merge'
export function mergeAll(arr){ let willReturn = {} map(val => { willReturn = merge(willReturn, val) }, arr)
return willReturn}