Skip to content

tunnckoCore/is-generator-function-name

Repository files navigation

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.

tunnckocore.tk keybase tunnckocore tunnckoCore npm tunnckoCore twitter tunnckoCore github

About

Check that given value have `GeneratorFunction` name or displayName.

Resources

License

Code of conduct

Security policy

Stars

Watchers

Forks

Packages

No packages published