Simon Warta
Simon Warta
I see. We also found a handful of different cases during our testing so far. But wouldn't it be worth fixing them one-by-one to get more visibility of the remaining...
Do I understand correctly that the problem is `crypto.subtle.importKey` taking a `type BufferSource = ArrayBufferView | ArrayBuffer;` and now `Uint8Array` is not an `ArrayBuffer` anymore? In that case the solution...
You can also create a `fit` function like that which does not perform a copy in the majority of use cases and avoids an potentially unsafe cast: ```ts function fit(source:...