setup-go/node_modules/is-generator-fn
Stephen Franceschelli a966e84ff9 Fix.
2019-07-30 13:30:32 -04:00
..
index.d.ts Fix. 2019-07-30 13:30:32 -04:00
index.js Fix. 2019-07-30 13:30:32 -04:00
license Fix. 2019-07-30 13:30:32 -04:00
package.json Fix. 2019-07-30 13:30:32 -04:00
readme.md Fix. 2019-07-30 13:30:32 -04: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