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