Lawsun d230cfbce0 first commit 1 rok temu
..
test d230cfbce0 first commit 1 rok temu
.eslintignore d230cfbce0 first commit 1 rok temu
.eslintrc d230cfbce0 first commit 1 rok temu
.nvmrc d230cfbce0 first commit 1 rok temu
.nycrc d230cfbce0 first commit 1 rok temu
CHANGELOG.md d230cfbce0 first commit 1 rok temu
LICENSE d230cfbce0 first commit 1 rok temu
README.md d230cfbce0 first commit 1 rok temu
index.js d230cfbce0 first commit 1 rok temu
package.json d230cfbce0 first commit 1 rok temu

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