peach a19a732be8 commit message | před 2 roky | |
---|---|---|
.. | ||
index.d.ts | před 2 roky | |
index.js | před 2 roky | |
license | před 2 roky | |
package.json | před 2 roky | |
readme.md | před 2 roky |
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