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