Skip to main content
Module

x/ramda/mod.ts>mergeDeepLeft

:ram: Practical functional Javascript
Latest
variable mergeDeepLeft
import { mergeDeepLeft } from "https://deno.land/x/ramda@v0.27.2/mod.ts";

Creates a new object with the own properties of the first object merged with the own properties of the second object. If a key exists in both objects:

  • and both values are objects, the two values will be recursively merged
  • otherwise the value from the first object will be used.