#Changelog
- Support yielding array / object of generator functions without initiating them:
yield [myGeneratorFunction, myGeneratorFunction()]; // Both works!- Support yielding generator functions and initialized generators with a simple
yield:
// All of the below works!
yield* myGeneratorFunction();
yield myGeneratorFunction;
yield myGeneratorFunction();yield* is still preferable since it performs a native delegation.
- Add browser support with browserify
- Initial release