Changelog
v1.2.0
yield [myGeneratorFunction, myGeneratorFunction()]; // Both works!
yield
:// All of the below works!
yield* myGeneratorFunction();
yield myGeneratorFunction;
yield myGeneratorFunction();
yield*
is still preferable since it performs a native delegation.