aoc/node_modules/is-generator-fn
alex ab688f8b38 solutions 2022-12-03 17:11:42 -05:00
..
index.d.ts solutions 2022-12-03 17:11:42 -05:00
index.js solutions 2022-12-03 17:11:42 -05:00
license solutions 2022-12-03 17:11:42 -05:00
package.json solutions 2022-12-03 17:11:42 -05:00
readme.md solutions 2022-12-03 17:11:42 -05:00

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
  • is - Type check values

License

MIT © Sindre Sorhus