Files
login/node_modules/is-generator-fn
2020-10-12 14:50:25 +05:30
..
2020-10-12 14:50:25 +05:30
2020-10-12 14:50:25 +05:30
2020-10-12 14:50:25 +05:30
2020-10-12 14:50:25 +05:30
2020-10-12 14:50:25 +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