yield* - JavaScript | MDN

The yield* operator can be used within generator (sync or async) functions to delegate to another iterable object, such as a Generator. Inside async generator functions, it can additionally be used to delegate to another async iterable object, such as an AsyncGenerator.