No Description

FFIB: 11e3a9652a first 7 years ago
..
index.js 11e3a9652a first 7 years ago
license 11e3a9652a first 7 years ago
package.json 11e3a9652a first 7 years ago
readme.md 11e3a9652a first 7 years ago

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