You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
blockvote/node_modules/is-generator-function
STRIV1 f8251e172e
1
1 year ago
..
test 1 1 year ago
.eslintignore 1 1 year ago
.eslintrc 1 1 year ago
.nvmrc 1 1 year ago
.nycrc 1 1 year ago
CHANGELOG.md 1 1 year ago
LICENSE 1 1 year ago
README.md 1 1 year ago
index.js 1 1 year ago
package.json 1 1 year ago

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