prc b6c02717e6 Upload complete no-internet building environment. 1 年間 前
..
test b6c02717e6 Upload complete no-internet building environment. 1 年間 前
.eslintignore b6c02717e6 Upload complete no-internet building environment. 1 年間 前
.eslintrc b6c02717e6 Upload complete no-internet building environment. 1 年間 前
.nvmrc b6c02717e6 Upload complete no-internet building environment. 1 年間 前
.nycrc b6c02717e6 Upload complete no-internet building environment. 1 年間 前
CHANGELOG.md b6c02717e6 Upload complete no-internet building environment. 1 年間 前
LICENSE b6c02717e6 Upload complete no-internet building environment. 1 年間 前
README.md b6c02717e6 Upload complete no-internet building environment. 1 年間 前
index.js b6c02717e6 Upload complete no-internet building environment. 1 年間 前
package.json b6c02717e6 Upload complete no-internet building environment. 1 年間 前

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