login/node_modules/is-generator-fn
Balaga Gayatri 74dd83c7c8 node_modules
2021-10-22 12:50:18 +05:30
..
index.d.ts node_modules 2021-10-22 12:50:18 +05:30
index.js node_modules 2021-10-22 12:50:18 +05:30
license node_modules 2021-10-22 12:50:18 +05:30
package.json node_modules 2021-10-22 12:50:18 +05:30
readme.md node_modules 2021-10-22 12:50:18 +05:30

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