login/node_modules/is-generator-fn/readme.md
Balaga Gayatri 8ab7113acc changes
2021-10-25 18:21:32 +05:30

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