caoge c760052ff9 机车状态修改 | il y a 8 mois | |
---|---|---|
.. | ||
index.d.ts | il y a 8 mois | |
index.js | il y a 8 mois | |
license | il y a 8 mois | |
package.json | il y a 8 mois | |
readme.md | il y a 8 mois |
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