zhibo/live-streaming/node_modules/is-generator-fn
2025-12-15 11:34:49 +08:00
..
index.d.ts 初始化 2025-12-15 11:34:49 +08:00
index.js 初始化 2025-12-15 11:34:49 +08:00
license 初始化 2025-12-15 11:34:49 +08:00
package.json 初始化 2025-12-15 11:34:49 +08:00
readme.md 初始化 2025-12-15 11:34:49 +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