caoge c760052ff9 机车状态修改 | před 8 měsíci | |
---|---|---|
.. | ||
index.d.ts | před 8 měsíci | |
index.js | před 8 měsíci | |
license | před 8 měsíci | |
package.json | před 8 měsíci | |
readme.md | před 8 měsíci |
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