Files
sign-android-release/node_modules/is-generator-fn
Drew Heavner 8b97d1195a Adding updated node_modules
Bumping version to v1.0.3
Removing yarn.lock as this should be built with NPM
2020-11-13 16:28:52 -05:00
..
2019-11-08 09:40:34 -05:00
2019-11-08 09:40:34 -05:00
2019-11-08 09:40:34 -05:00
2020-11-13 16:28:52 -05:00
2019-11-08 09:40:34 -05: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