Socket
Socket
Sign inDemoInstall

is-es6-generator-function

Package Overview
Dependencies
1
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    is-es6-generator-function

Check that given value is `GeneratorFunction`


Version published
Maintainers
1
Install size
24.1 kB
Created

Changelog

Source

1.0.0 - 2015-05-26

  • Release v1.0.0 / npm@v1.0.0
  • fix readme
  • implement and release

Readme

Source

is-es6-generator-function npmjs.com The MIT License

Check that given value is GeneratorFunction

code climate standard code style travis build status coverage status dependency status

Install

npm i is-es6-generator-function --save
npm test

Usage

For more use-cases see the tests

var isGeneratorFunction = require('is-es6-generator-function')

var generator = (function * () {})()
var genFunction = function * () { yield 42 }

isGeneratorFunction(null) //=> false
isGeneratorFunction(undefined) //=> false
isGeneratorFunction(42) //=> false
isGeneratorFunction('foo') //=> false
isGeneratorFunction(function fn () {}) //=> false
isGeneratorFunction(genFunction) //=> true
isGeneratorFunction(generator) //=> false

See also

  • apidocs-cli: Async CLI for automatically generating API docs from code comments
  • is-es6-generators: Check whether a value is a generator or generator function.
  • is-es6-generator: Check that given value is Generator
  • is-generator-function-name: Check that given value have GeneratorFunction name… more.
  • is-generator-function: Determine if a function is an ES6 generator function or not.
  • is-generator: Check whether a value is a generator or generator function
  • is-hybrid: Check whether an object looks like Hybrid which is promises-a+ promise and callback api
  • is-promise: Test whether an object looks like a promises-a+ promise
  • is-missing: Check that given name or user/repo exists in npm registry or in github as… more
  • is-installed: Checks that given package is installed on the system - globally or locally.
  • is-kindof: Thin wrapper around kind-of and in bonus functional api.
  • npm-related: Thin wrapper on top of helper-related for generating a list of links to the… more

Contributing

Pull requests and stars are always welcome. For bugs and feature requests, please create an issue.
But before doing anything, please read the CONTRIBUTING.md guidelines.

Charlike Make Reagent new message to charlike freenode #charlike

tunnckocore.tk keybase tunnckocore tunnckoCore npm tunnckoCore twitter tunnckoCore github

Keywords

FAQs

Last updated on 26 May 2015

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc