vending-machine/mobile/node_modules/is-generator-fn
2026-04-03 06:07:13 +08:00
..
index.d.ts 1 2026-04-03 06:07:13 +08:00
index.js 1 2026-04-03 06:07:13 +08:00
license 1 2026-04-03 06:07:13 +08:00
package.json 1 2026-04-03 06:07:13 +08:00
readme.md 1 2026-04-03 06:07:13 +08: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