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