xiongzhu abfe06b311 first commit há 2 anos atrás
..
test abfe06b311 first commit há 2 anos atrás
.eslintignore abfe06b311 first commit há 2 anos atrás
.eslintrc abfe06b311 first commit há 2 anos atrás
.nvmrc abfe06b311 first commit há 2 anos atrás
.nycrc abfe06b311 first commit há 2 anos atrás
CHANGELOG.md abfe06b311 first commit há 2 anos atrás
LICENSE abfe06b311 first commit há 2 anos atrás
README.md abfe06b311 first commit há 2 anos atrás
index.js abfe06b311 first commit há 2 anos atrás
package.json abfe06b311 first commit há 2 anos atrás

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