Giter Site home page Giter Site logo

Comments (11)

JamesMGreene avatar JamesMGreene commented on May 23, 2024

+1

from amd-utils.

millermedeiros avatar millermedeiros commented on May 23, 2024

this is indeed useful and not hard to implement. +1

from amd-utils.

millermedeiros avatar millermedeiros commented on May 23, 2024

one thing I realized while coding it is that since objects are passed by reference they will end up being updated/edited during the merge, so the proper way of implementing it to avoid undesired side-effects is to clone the object before merging...

what do you guys think? should it also clone arrays?

Current behavior:

var obj1 = {a: 1, b : { c: 1}};
var obj2 = {a: 2, b : { c : { d : 2 } }};
var obj3 = { b : { e : 3 } };

merge(obj1, obj2, obj3); // { a: 2, b : { c : { d : 2 }, e : 3 } }

// since objects are passed by reference this weird behavior happens
// obj2 is also affected during merge
obj1.b === obj2.b; // true
obj2.b.e === 3;    // true

PS: I didn't merged this into master yet since current behavior is funky

from amd-utils.

JamesMGreene avatar JamesMGreene commented on May 23, 2024

Yes, I would say both objects and arrays should be cloned. Some people would then say, "what about object/class instances?"; I, however, have never found myself wanting to merge any structure that contains such things... only plain data objects.

from amd-utils.

JamesMGreene avatar JamesMGreene commented on May 23, 2024

Also, you may find some of the discussion interesting in this JSFixed thread: https://github.com/JSFixed/JSFixed/issues/16

from amd-utils.

satazor avatar satazor commented on May 23, 2024

bump!

from amd-utils.

millermedeiros avatar millermedeiros commented on May 23, 2024

@satazor thanks for the "bump!", I've been busy lately and forgot about it. Merged into master.

from amd-utils.

JamesMGreene avatar JamesMGreene commented on May 23, 2024

@millermedeiros Is the committed behavior still funky?

from amd-utils.

millermedeiros avatar millermedeiros commented on May 23, 2024

@JamesMGreene now it clones all the Object/Array/Date/RegExp, so it shouldn't cause any side-effects. see specs for more info

from amd-utils.

JamesMGreene avatar JamesMGreene commented on May 23, 2024

Greats, thanks!

from amd-utils.

satazor avatar satazor commented on May 23, 2024

@millermedeiros no problem! I was long waiting for this function :D

from amd-utils.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.