Skip to main content
Module

x/lodash_es/mod.ts>merge

lodash for deno use
Latest
variable merge
import { merge } from "https://deno.land/x/lodash_es@v0.0.2/mod.ts";

This method is like _.assign except that it recursively merges own and inherited enumerable string keyed properties of source objects into the destination object. Source properties that resolve to undefined are skipped if a destination value exists. Array and plain object properties are merged recursively. Other objects and value types are overridden by assignment. Source objects are applied from left to right. Subsequent sources overwrite property assignments of previous sources.

Note: This method mutates object.