facebook / regenerator

Source transformer enabling ECMAScript 6 generator functions in JavaScript-of-today.
http://facebook.github.io/regenerator/
MIT License
3.83k stars 1.16k forks source link

Fix: `yield*` should throw if not iterable #636

Closed SuperSodaSea closed 1 year ago

SuperSodaSea commented 1 year ago

yield* an non-iterable value should throw TypeError, rather than treating it as an iterator with no values.

Fixes #202. See also: babel/babel#1648, babel/babel#15172