app php01 790c53caa0 最后一版uniaiim il y a 4 mois
..
index.d.ts 790c53caa0 最后一版uniaiim il y a 4 mois
index.js 790c53caa0 最后一版uniaiim il y a 4 mois
license 790c53caa0 最后一版uniaiim il y a 4 mois
package.json 790c53caa0 最后一版uniaiim il y a 4 mois
readme.md 790c53caa0 最后一版uniaiim il y a 4 mois

readme.md

is-generator-fn Build Status

Check if something is a generator function

Install

$ npm install is-generator-fn

Usage

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

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

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

Related

  • is - Type check values

License

MIT © Sindre Sorhus