DevYK 8466310f0c update README.md 3 vuotta sitten
..
test 8466310f0c update README.md 3 vuotta sitten
.eslintignore 8466310f0c update README.md 3 vuotta sitten
.eslintrc 8466310f0c update README.md 3 vuotta sitten
.nvmrc 8466310f0c update README.md 3 vuotta sitten
.nycrc 8466310f0c update README.md 3 vuotta sitten
CHANGELOG.md 8466310f0c update README.md 3 vuotta sitten
LICENSE 8466310f0c update README.md 3 vuotta sitten
README.md 8466310f0c update README.md 3 vuotta sitten
index.js 8466310f0c update README.md 3 vuotta sitten
package.json 8466310f0c update README.md 3 vuotta sitten

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