ljubi a81aaebda8 3 tests 3 months ago
..
index.d.ts a81aaebda8 3 tests 3 months ago
index.js a81aaebda8 3 tests 3 months ago
license a81aaebda8 3 tests 3 months ago
package.json a81aaebda8 3 tests 3 months ago
readme.md a81aaebda8 3 tests 3 months ago

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