Skip to main content
Module

x/rambda/immutable.d.ts>mergeDeepRight

Faster and smaller alternative to Ramda
Go to Latest
function mergeDeepRight
import { mergeDeepRight } from "https://deno.land/x/rambda@v7.0.1/immutable.d.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 second object will be used.

Parameters

target: object
newProps: object

Parameters

target: object

Returns

(newProps: object) => Output