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

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