mergeMaps
Takes a list(array) of maps and merges them into a singular branching model
Arguments
Returns
Usage
const foo = new Map([['a', 'hello']])
const bar = new Map([['b', 'goodbye']])
mergeMaps([foo, bar])
// => Map { 'a' => 'hello' 'b' => 'goodbye' }
Last updated
Was this helpful?