JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 565774
  • Score
    100M100P100Q179499F
  • License MIT

Check whether a function is a generator

Package Exports

  • is-generator

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (is-generator) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

is-generator

Check whether a given value is a generator function.

Installation

npm install is-generator --save

Usage

var isGenerator = require('is-generator');

isGenerator(null);            //=> false
isGenerator(function () {});  //=> false
isGenerator(function* () {}); //=> true

License

MIT