学习?学个屁 06c63c15cc 初始化提交 преди 3 седмици
..
index.d.ts 06c63c15cc 初始化提交 преди 3 седмици
index.js 06c63c15cc 初始化提交 преди 3 седмици
license 06c63c15cc 初始化提交 преди 3 седмици
package.json 06c63c15cc 初始化提交 преди 3 седмици
readme.md 06c63c15cc 初始化提交 преди 3 седмици

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