unboundedpress/node_modules/is-generator-fn
2019-07-23 04:28:47 +00:00
..
index.js initial commit 2019-07-23 04:28:47 +00:00
license initial commit 2019-07-23 04:28:47 +00:00
package.json initial commit 2019-07-23 04:28:47 +00:00
readme.md initial commit 2019-07-23 04:28:47 +00:00

is-generator-fn Build Status

Check if something is a generator function

Install

$ npm install --save is-generator-fn

Usage

const isGeneratorFn = require('is-generator-fn');

isGeneratorFn(function * () {});
//=> true

isGeneratorFn(function () {});
//=> false

License

MIT © Sindre Sorhus