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