You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The current implementation of [Symbol.asyncIterator]() on ReactiveArray and ReactivePrimitive is very sketchy. However, this doesn't seem to be practically fixable until browsers support ReadableStream::getIterator():
// for ReactiveArrayasync*[Symbol.asyncIterator](){yield*newReadableStream<[number,number, ...IArrayValueType<InputType>[]]>({start: controller=>this.#callbacks.add((
...args: [number,number, ...IArrayValueType<InputType>[]])=>controller.enqueue(args)),}).getIterator();}
The current implementation of
[Symbol.asyncIterator]()
onReactiveArray
andReactivePrimitive
is very sketchy. However, this doesn't seem to be practically fixable until browsers supportReadableStream::getIterator()
:Depends on:
The text was updated successfully, but these errors were encountered: