|
||||
---|---|---|---|---|
.. | ||||
index.js | 11e3a9652a | 7 年之前 | ||
license | 11e3a9652a | 7 年之前 | ||
package.json | 11e3a9652a | 7 年之前 | ||
readme.md | 11e3a9652a | 7 年之前 |
Check if something is a generator function
$ npm install --save is-generator-fn
const isGeneratorFn = require('is-generator-fn');
isGeneratorFn(function * () {});
//=> true
isGeneratorFn(function () {});
//=> false
MIT © Sindre Sorhus