caoge c760052ff9 机车状态修改 7 months ago
..
index.d.ts c760052ff9 机车状态修改 7 months ago
index.js c760052ff9 机车状态修改 7 months ago
license c760052ff9 机车状态修改 7 months ago
package.json c760052ff9 机车状态修改 7 months ago
readme.md c760052ff9 机车状态修改 7 months ago

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

Related

  • is - Type check values

License

MIT © Sindre Sorhus