DevYK 8466310f0c update README.md 3 år sedan
..
test 8466310f0c update README.md 3 år sedan
.eslintignore 8466310f0c update README.md 3 år sedan
.eslintrc 8466310f0c update README.md 3 år sedan
.nvmrc 8466310f0c update README.md 3 år sedan
.nycrc 8466310f0c update README.md 3 år sedan
CHANGELOG.md 8466310f0c update README.md 3 år sedan
LICENSE 8466310f0c update README.md 3 år sedan
README.md 8466310f0c update README.md 3 år sedan
index.js 8466310f0c update README.md 3 år sedan
package.json 8466310f0c update README.md 3 år sedan

README.md

is-generator-function Version Badge

github actions coverage dependency status dev dependency status License Downloads

npm badge

Is this a native generator function?

Example

var isGeneratorFunction = require('is-generator-function');
assert(!isGeneratorFunction(function () {}));
assert(!isGeneratorFunction(null));
assert(isGeneratorFunction(function* () { yield 42; return Infinity; }));

Tests

Simply clone the repo, npm install, and run npm test