spa/.claude/skills/thread-manager/node_modules/is-generator-fn
Yvan 6584c91ed1 init 2025-12-30 15:44:36 +08:00
..
index.d.ts init 2025-12-30 15:44:36 +08:00
index.js init 2025-12-30 15:44:36 +08:00
license init 2025-12-30 15:44:36 +08:00
package.json init 2025-12-30 15:44:36 +08:00
readme.md init 2025-12-30 15:44:36 +08:00

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

License

MIT © Sindre Sorhus