Repository URL to install this package:
Version:
0.6.0 ▾
|
.. |
index.d.ts |
index.js |
license |
package.json |
readme.md |
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