caoge c760052ff9 机车状态修改 | пре 8 месеци | |
---|---|---|
.. | ||
index.d.ts | пре 8 месеци | |
index.js | пре 8 месеци | |
license | пре 8 месеци | |
package.json | пре 8 месеци | |
readme.md | пре 8 месеци |
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