make-generator-function
v2.1.0
Published
Returns an arbitrary generator function, or undefined if generator syntax is unsupported.
Maintainers
Readme
make-generator-function 
Returns an array of arbitrary generator functions, which will be empty if generator syntax is unsupported.
Example
var generatorFunctions = require('make-async-generator-function');
assert(typeof generatorFunctions === 'function');
var funcs = generatorFunctions();
assert(Array.isArray(funcs), true);Tests
Simply clone the repo, npm install, and run npm test

