Caridy Patiño
Caridy Patiño
we should probably update https://github.com/snabbdom/snabbdom/blob/master/src/modules/dataset.ts#L21, using `in` might be better here... but then we have the issue of `null` and `undefined` as values that will be stringify, which is the...
Just taking into consideration the value of the property during the diffing algo for `value`, `checked` and other special properties is problematic. From the top of my head, using the...
Reading from the vnode is just a ECMAScript member expression (it is all in JS), while a DOM property requires calling a getter (each DOM property is a descriptor with...
@cornerman 10x is best case scenario! Normally is more folds depending on how complex is the getter for the property. Also, this is one of the most common operations during...
@lescientifik feel free to take the first stash at this, and send us a PR. additionally, we have been debated (in few other open issues), whether or not we want...
> I think we have another issue Not directly related to this fix but we can try to fix it too: > > currently, the membrane `unwrapProxy()` method does not...
As for this PR specifically, I believe it was fixed by PR #49, @ahmedkandel can you double check and close this one?
We need a brave soul to work on this before we go to the committee for this.
@ljharb > To clarify the polyfill scenario: I must be able to write code that can mutate, overwrite, or freeze, a built-in module, just like I can do right now...
Two things: - You can certainly use a Set internally as part of the logic, but let's stick to an array for arguments, I haven't seen any precedent of using...