mysql/node_modules/is-generator-function
Ashish Ranjan d1dc6cc9a7
Azure MySql action v1 (#6)
2019-11-05 13:43:02 +05:30
..
test Azure MySql action v1 (#6) 2019-11-05 13:43:02 +05:30
.editorconfig Azure MySql action v1 (#6) 2019-11-05 13:43:02 +05:30
.eslintrc Azure MySql action v1 (#6) 2019-11-05 13:43:02 +05:30
.jscs.json Azure MySql action v1 (#6) 2019-11-05 13:43:02 +05:30
.nvmrc Azure MySql action v1 (#6) 2019-11-05 13:43:02 +05:30
.travis.yml Azure MySql action v1 (#6) 2019-11-05 13:43:02 +05:30
CHANGELOG.md Azure MySql action v1 (#6) 2019-11-05 13:43:02 +05:30
LICENSE Azure MySql action v1 (#6) 2019-11-05 13:43:02 +05:30
Makefile Azure MySql action v1 (#6) 2019-11-05 13:43:02 +05:30
README.md Azure MySql action v1 (#6) 2019-11-05 13:43:02 +05:30
index.js Azure MySql action v1 (#6) 2019-11-05 13:43:02 +05:30
package.json Azure MySql action v1 (#6) 2019-11-05 13:43:02 +05:30

README.md

is-generator-function Version Badge

Build Status dependency status dev dependency status License Downloads

npm badge

browser support

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