|
пре 4 недеља | |
---|---|---|
.. | ||
index.d.ts | пре 4 недеља | |
index.js | пре 4 недеља | |
license | пре 4 недеља | |
package.json | пре 4 недеља | |
readme.md | пре 4 недеља |
Check if something is a generator function
$ npm install is-generator-fn
const isGeneratorFn = require('is-generator-fn');
isGeneratorFn(function * () {});
//=> true
isGeneratorFn(function () {});
//=> false
MIT © Sindre Sorhus