rangement/node_modules/is-generator-fn
2023-07-01 12:46:34 +02:00
..
index.d.ts add packages and scripts in package.json 2023-07-01 12:46:34 +02:00
index.js add packages and scripts in package.json 2023-07-01 12:46:34 +02:00
license add packages and scripts in package.json 2023-07-01 12:46:34 +02:00
package.json add packages and scripts in package.json 2023-07-01 12:46:34 +02:00
readme.md add packages and scripts in package.json 2023-07-01 12:46:34 +02: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