ghaction-upx/node_modules/is-generator-fn
2020-01-23 08:49:02 +00:00
..
index.d.ts Update node_modules 2020-01-23 08:49:02 +00:00
index.js Update node_modules 2020-01-23 08:49:02 +00:00
license Update node_modules 2020-01-23 08:49:02 +00:00
package.json Update node_modules 2020-01-23 08:49:02 +00:00
readme.md Update node_modules 2020-01-23 08:49:02 +00: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