Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
nitowa 1dae68b1c7 init 1 år sedan
..
test init 1 år sedan
.eslintignore init 1 år sedan
.eslintrc init 1 år sedan
.nvmrc init 1 år sedan
.nycrc init 1 år sedan
CHANGELOG.md init 1 år sedan
LICENSE init 1 år sedan
README.md init 1 år sedan
index.js init 1 år sedan
package.json init 1 år sedan

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