Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.
nitowa 1dae68b1c7 init vor 1 Jahr
..
test init vor 1 Jahr
.eslintignore init vor 1 Jahr
.eslintrc init vor 1 Jahr
.nvmrc init vor 1 Jahr
.nycrc init vor 1 Jahr
CHANGELOG.md init vor 1 Jahr
LICENSE init vor 1 Jahr
README.md init vor 1 Jahr
index.js init vor 1 Jahr
package.json init vor 1 Jahr

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