|
лет назад: 5 | |
---|---|---|
.. | ||
test | лет назад: 5 | |
.eslintrc | лет назад: 5 | |
.jscs.json | лет назад: 5 | |
.npmignore | лет назад: 5 | |
.nvmrc | лет назад: 5 | |
.travis.yml | лет назад: 5 | |
CHANGELOG.md | лет назад: 5 | |
LICENSE | лет назад: 5 | |
Makefile | лет назад: 5 | |
README.md | лет назад: 5 | |
index.js | лет назад: 5 | |
package.json | лет назад: 5 | |
testling.html | лет назад: 5 |
Is this a native generator function?
var isGeneratorFunction = require('is-generator-function');
assert(!isGeneratorFunction(function () {}));
assert(!isGeneratorFunction(null));
assert(isGeneratorFunction(function* () { yield 42; return Infinity; });
Simply clone the repo, npm install
, and run npm test