lhl 2bdf874dbb create il y a 2 mois
..
index.js 2bdf874dbb create il y a 2 mois
license 2bdf874dbb create il y a 2 mois
package.json 2bdf874dbb create il y a 2 mois
readme.md 2bdf874dbb create il y a 2 mois

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