Irina Glushko 2389e7160b HW1 done %!s(int64=3) %!d(string=hai) anos
..
index.d.ts 2389e7160b HW1 done %!s(int64=3) %!d(string=hai) anos
index.js 2389e7160b HW1 done %!s(int64=3) %!d(string=hai) anos
license 2389e7160b HW1 done %!s(int64=3) %!d(string=hai) anos
package.json 2389e7160b HW1 done %!s(int64=3) %!d(string=hai) anos
readme.md 2389e7160b HW1 done %!s(int64=3) %!d(string=hai) anos

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

Related

  • is - Type check values

License

MIT © Sindre Sorhus