Understanding the use of yield* with functions in generators

I see in a lot of places where a generator is used, we are using yield* fn without calling the function. How does that really work? Why are we not actually calling the function?
Was this page helpful?