Elliott Sprehn
Elliott Sprehn
I think what we want to support here is assignment of (NodeList or Array), and make the return value FrozenArray, so these constructs could work: ``` js n.controls = e.querySelectorAll("...")...
Sure! How would I do that?
@ivogabe Sorry I didn't get a chance to look at this. We switched all our projects to calling tsc directly instead since it was so much faster. I'll see if...
That completes in 100ms for me. Testing it looks like tsc 2.7.2 takes the same amount of time (if not longer) on the first compile, and then is nearly instant...
How is this web observable? The native string type used inside Blink and WebKit is immutable, so is the JS string. As long as specs never expose the mutability in...
We'd also like this because we use npm root to find the root directory to add .bin to our path inside shell scripts. ``` PATH="$(git rev-parse --show-toplevel)/tools":"$(npm root)/.bin":$PATH ```
I'm seeing this as well, I just built master and it's insanely slow on Chrome now. 0.1.6 was not slow though.
What's that status of this? Should folks move to the fork?
It leaves out setAttribute, etc. on purpose. Async append isn't a patch operation over the DOM, you can only insert/remove subtrees. It should have: append insertBefore remove innerHTML insertAdjacentHTML It's...
That is to say, I think we can consider operations like that someday, but it's vastly more complicated than the insert/remove operations and it's not clear to me that we...