cmy 02a04f55a0 2023-3-15 2 лет назад
..
index.js 02a04f55a0 2023-3-15 2 лет назад
license 02a04f55a0 2023-3-15 2 лет назад
package.json 02a04f55a0 2023-3-15 2 лет назад
readme.md 02a04f55a0 2023-3-15 2 лет назад

readme.md

is-generator-fn Build Status

Check if something is a generator function

Install

$ npm install --save is-generator-fn

Usage

const isGeneratorFn = require('is-generator-fn');

isGeneratorFn(function * () {});
//=> true

isGeneratorFn(function () {});
//=> false

License

MIT © Sindre Sorhus