Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
nitowa 1dae68b1c7 init 2 лет назад
..
test init 2 лет назад
.eslintignore init 2 лет назад
.eslintrc init 2 лет назад
.nvmrc init 2 лет назад
.nycrc init 2 лет назад
CHANGELOG.md init 2 лет назад
LICENSE init 2 лет назад
README.md init 2 лет назад
index.js init 2 лет назад
package.json init 2 лет назад

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