|
vor 3 Jahren | |
---|---|---|
.. | ||
test | vor 3 Jahren | |
.eslintignore | vor 3 Jahren | |
.eslintrc | vor 3 Jahren | |
.nvmrc | vor 3 Jahren | |
.nycrc | vor 3 Jahren | |
CHANGELOG.md | vor 3 Jahren | |
LICENSE | vor 3 Jahren | |
README.md | vor 3 Jahren | |
index.js | vor 3 Jahren | |
package.json | vor 3 Jahren |
Is this a native generator function?
var isGeneratorFunction = require('is-generator-function');
assert(!isGeneratorFunction(function () {}));
assert(!isGeneratorFunction(null));
assert(isGeneratorFunction(function* () { yield 42; return Infinity; }));
Simply clone the repo, npm install
, and run npm test