Maga D. Zandaqo

Results 29 comments of Maga D. Zandaqo

@annevk I cannot think of a use case for shadow tree capabilities. If we are building tree structures out of these custom EventTargets solely to propagate events, having a capability...

```js { path: "/welcome/*", render: () => html`` }, ``` Not sure about the router, but custom elements cannot be self-closing, try `` instead.

Yes, that's what browsers not supporting it do. It would be really nice if we could support it in jsdom though. For now, just adding `_document` pointing to `window.document` seem...

On a related note, calling EventTarget's methods (addEventListeners etc) in a context that differs from EventTarget instance doesn't cause error in jsdom, but does so in browsers that implement EventTarget...

> You've also probably noticed that updates to this repository have been rather slow for a while, and I'm happy to say that we can finally announce that the two...

From [HN](https://news.ycombinator.com/item?id=31220586): > It's definitely something I would like to implement. I haven't found a parser that would be good for formatting yet so maybe I will have to write...

@AnthumChris Thanks, this is exactly what I was looking for. Under this scenario (guessing required bytes), aside from total size and duration, do we need any other data to decode/play...

@AnthumChris To sum up, for streaming we need the header pages and file's total length and duration. Can `libopusfile` isolate those header pages given a chunk of data? I can...

@AnthumChris That sounds great! This would indeed simplify my case immensely. I assume under the hood it will have to make at least two range requests for `decodeAt`: one for...

I'm getting this in Node 13.2 & Jest 25.4: `ES Modules are only supported if your test environment has the `getVmContext` function` What am I missing?