lihai 8d6c751f49 feat: push před 2 roky
..
index.js 8d6c751f49 feat: push před 2 roky
license 8d6c751f49 feat: push před 2 roky
package.json 8d6c751f49 feat: push před 2 roky
readme.md 8d6c751f49 feat: push před 2 roky

readme.md

is-generator-fn Build Status

Check if something is a generator function

Install

$ npm install --save is-generator-fn

Usage

const isGeneratorFn = require('is-generator-fn');

isGeneratorFn(function * () {});
//=> true

isGeneratorFn(function () {});
//=> false

License

MIT © Sindre Sorhus