Ian Wright
Ian Wright
I also think this would be a really great idea. I want to leverage `esprint` during pre-commit hooks etc, but linting files unnecessarily seems a waste. IDE's/Editors such as VSCode...
@elganzua124 You should put this information in the Wiki for now. I've been trying to figure out for quite some time why it wasn't working/how to provide my passwords for...
Nice @perliedman! I left the company where I needed to use it, but was quite a nice library to use! I seem to recall I added a lot of comments...
I see this too, but only since I re-installed
No, the other way round. We've got a "placeholder" view model which has some values in it which is bound to the UI. I've using a `ko.toJS` call on the...
I think I might be able to get away with some of the `withMergeConstructor` stuff, although I was hoping to not have to write any custom logic to do the...
The way I made it work arrays is that for any `new` object that is to be merged, it simply calls the `exports.fromJS` function passing in an empty object as...
I was thinking something similar... bearing in mind the object you're looking at isn't an array itself, it's just an item that needs to sit within the array. So something...
No the `koModel` is the placeholder I mentioned, which gets initialized as an empty object. `export.fromJS` is actually copying the properties on one of the elements, rather than copying the...
Yeah, that's the sort of pattern I was thinking, so you specify the behavior at the high level merge call. I guess if you wanted to change the options for...