Евгения Акиншина 52274d6dab HW<react> done 3 years ago
..
index.d.ts 52274d6dab HW<react> done 3 years ago
index.js 52274d6dab HW<react> done 3 years ago
license 52274d6dab HW<react> done 3 years ago
package.json 52274d6dab HW<react> done 3 years ago
readme.md 52274d6dab HW<react> done 3 years ago

readme.md

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

Related

  • is - Type check values

License

MIT © Sindre Sorhus