1
0
Fork 0
mirror of synced 2026-06-05 19:18:19 +00:00
login/node_modules/is-generator-fn
2023-11-20 14:12:35 +08:00
..
index.d.ts prepare release 1.5.0 2023-11-20 14:12:35 +08:00
index.js prepare release 1.5.0 2023-11-20 14:12:35 +08:00
license prepare release 1.5.0 2023-11-20 14:12:35 +08:00
package.json prepare release 1.5.0 2023-11-20 14:12:35 +08:00
readme.md prepare release 1.5.0 2023-11-20 14:12:35 +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