DevYK 8466310f0c update README.md 3 năm trước cách đây
..
test 8466310f0c update README.md 3 năm trước cách đây
.eslintignore 8466310f0c update README.md 3 năm trước cách đây
.eslintrc 8466310f0c update README.md 3 năm trước cách đây
.nvmrc 8466310f0c update README.md 3 năm trước cách đây
.nycrc 8466310f0c update README.md 3 năm trước cách đây
CHANGELOG.md 8466310f0c update README.md 3 năm trước cách đây
LICENSE 8466310f0c update README.md 3 năm trước cách đây
README.md 8466310f0c update README.md 3 năm trước cách đây
index.js 8466310f0c update README.md 3 năm trước cách đây
package.json 8466310f0c update README.md 3 năm trước cách đây

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