knockout.merge icon indicating copy to clipboard operation
knockout.merge copied to clipboard

Adds basic merging functionality into knockout js mapping namespace

Results 3 knockout.merge issues
Sort by recently updated
recently updated
newest added

Hi, maybe i'm missing if there is a way to initialize an observable array with data, at least for performance improvement. Actually, i'm doing that with a patch like this...

Hey guys. I was using the library by trying to merge an object with many observable array properties. The issue is that the merge actually does an array merge. I...

If you take an object like: ``` { title: ko.observable("A") } ``` and merge it with an object like: ``` { title: "A", value: "a" } ``` Then the newly...

enhancement