install-nix-action/node_modules/is-generator-fn
Domen Kožar 08403cd828
v5
2019-11-13 17:14:48 +01:00
..
index.d.ts v5 2019-11-13 17:14:48 +01:00
index.js v5 2019-11-13 17:14:48 +01:00
license v5 2019-11-13 17:14:48 +01:00
package.json v5 2019-11-13 17:14:48 +01:00
readme.md v5 2019-11-13 17:14:48 +01: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