The async generator generator polyfill introduced 0.18.8 causes crashes in "older" browsers (such as Hermes) because it assumes that Symbol.asyncIterator exists:
|
export var __yieldStar = value => { |
|
var obj = value[__knownSymbol('asyncIterator')] |
We've worked around the crash by polyfilling the symbol, but it feels like I'm missing something. It works for now, but I don't know if this causes other issues or whether there's a proper solution.
The async generator generator polyfill introduced 0.18.8 causes crashes in "older" browsers (such as Hermes) because it assumes that
Symbol.asyncIteratorexists:esbuild/internal/runtime/runtime.go
Lines 392 to 393 in a7fcc43
We've worked around the crash by polyfilling the symbol, but it feels like I'm missing something. It works for now, but I don't know if this causes other issues or whether there's a proper solution.