setup-node/node_modules/is-generator-fn
eric sciple 422b9fdb15 .
2020-01-24 12:21:24 -05:00
..
index.d.ts . 2020-01-24 12:21:24 -05:00
index.js . 2020-01-24 12:21:24 -05:00
license . 2020-01-24 12:21:24 -05:00
package.json . 2020-01-24 12:21:24 -05:00
readme.md . 2020-01-24 12:21:24 -05:00

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
  • is - Type check values

License

MIT © Sindre Sorhus