object-merge icon indicating copy to clipboard operation
object-merge copied to clipboard

Merges JavaScript objects recursively without altering the objects merged.

Results 4 object-merge issues
Sort by recently updated
recently updated
newest added

Weird edge case, so feel free to say you won't fix it, but here's what I observed. ``` let object = { a: {}, b: {} }; let object2 =...

Hi, I was trying to merge objects that contain RegExp objects inside, and it doesn't work correctly. The culprit seems to be the objectForEach method from object-foreach, which is checking...