Mohammad Asif cf937194cb Removed un-waned things 1. | 5 ヶ月 前 | |
---|---|---|
.. | ||
test | 5 ヶ月 前 | |
.eslintignore | 5 ヶ月 前 | |
.eslintrc | 5 ヶ月 前 | |
.nvmrc | 5 ヶ月 前 | |
.nycrc | 5 ヶ月 前 | |
CHANGELOG.md | 5 ヶ月 前 | |
LICENSE | 5 ヶ月 前 | |
README.md | 5 ヶ月 前 | |
index.js | 5 ヶ月 前 | |
package.json | 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