Home

Awesome

is-es6-generators npmjs.com The MIT License

Check whether a value is a Generator or GeneratorFunction. The co() way, more strict checking. Always return boolean true or false, never null or undefined.

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

Install

npm i is-es6-generators --save
npm test

Usage

For more use-cases see the tests

var isGenerator = require('is-es6-generators')
var isGeneratorFunction = require('is-es6-generators').fn

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

isGenerator(null) //=> false
isGenerator(undefined) //=> false
isGenerator([1, 2, 3]) //=> false
isGenerator({name: 'GeneratorFunction'}) //=> false
isGenerator(25) //=> false
isGenerator('test') //=> false
isGenerator(generatorFunction) //=> false
isGenerator(generator), true)

isGeneratorFunction(null) //=> false
isGeneratorFunction(generatorFunction) //=> true
isGeneratorFunction(generator) //=> false

See also

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