|
vor 5 Jahren | |
---|---|---|
.. | ||
test | vor 5 Jahren | |
.eslintrc | vor 5 Jahren | |
.jscs.json | vor 5 Jahren | |
.npmignore | vor 5 Jahren | |
.nvmrc | vor 5 Jahren | |
.travis.yml | vor 5 Jahren | |
CHANGELOG.md | vor 5 Jahren | |
LICENSE | vor 5 Jahren | |
Makefile | vor 5 Jahren | |
README.md | vor 5 Jahren | |
index.js | vor 5 Jahren | |
package.json | vor 5 Jahren | |
testling.html | vor 5 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