sensordb2 e64a8defe5 3.17 | před 1 rokem | |
---|---|---|
.. | ||
test | před 1 rokem | |
.eslintignore | před 1 rokem | |
.eslintrc | před 1 rokem | |
.nvmrc | před 1 rokem | |
.nycrc | před 1 rokem | |
CHANGELOG.md | před 1 rokem | |
LICENSE | před 1 rokem | |
README.md | před 1 rokem | |
index.js | před 1 rokem | |
package.json | před 1 rokem |
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