David Gamero 9860cfe0c2
release v1.5 (#162)
Co-authored-by: David Gamero <davidgamero@microsoft.com>
2021-12-09 16:44:30 -05:00

645 B

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