chensenlai 10988628a0 语音房项目初始化 5 éve
..
test 10988628a0 语音房项目初始化 5 éve
.eslintrc 10988628a0 语音房项目初始化 5 éve
.jscs.json 10988628a0 语音房项目初始化 5 éve
.npmignore 10988628a0 语音房项目初始化 5 éve
.nvmrc 10988628a0 语音房项目初始化 5 éve
.travis.yml 10988628a0 语音房项目初始化 5 éve
CHANGELOG.md 10988628a0 语音房项目初始化 5 éve
LICENSE 10988628a0 语音房项目初始化 5 éve
Makefile 10988628a0 语音房项目初始化 5 éve
README.md 10988628a0 语音房项目初始化 5 éve
index.js 10988628a0 语音房项目初始化 5 éve
package.json 10988628a0 语音房项目初始化 5 éve
testling.html 10988628a0 语音房项目初始化 5 éve

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