is-generator-function-name

1.0.0 • Public • Published

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

Check that given value have GeneratorFunction name or displayName.

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

Install

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

Usage

For more use-cases see the tests

var isGeneratorFunctionName = require('is-generator-function-name')
 
isGeneratorFunctionName({name: 'GeneratorFunction'})
//=> false
 
isGeneratorFunctionName(function () {})
//=> false
 
isGeneratorFunctionName(function GeneratorFunction () {})
//=> false
 
isGeneratorFunctionName(function * () {})
//=> true
 
isGeneratorFunctionName(function * () { yield 42 })
//=> true

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

Dependents (2)

Package Sidebar

Install

npm i is-generator-function-name

Weekly Downloads

585

Version

1.0.0

License

MIT

Last publish

Collaborators

  • vanchoy
  • tunnckocore