|
hai 1 ano | |
---|---|---|
.. | ||
.npmignore | hai 1 ano | |
.travis.yml | hai 1 ano | |
LICENSE | hai 1 ano | |
README.md | hai 1 ano | |
is-generator.js | hai 1 ano | |
package.json | hai 1 ano | |
test.js | hai 1 ano |
Check whether a value is a generator or generator function.
Generator: A specific type of iterator object. Reference.
Generator Function: A function*
declaration, returns a generator object. Reference.
npm install is-generator --save
var isGenerator = require('is-generator')
var isGeneratorFn = require('is-generator').fn
isGenerator(null) //=> false
isGenerator(function * () {}) //=> false
isGenerator((function * () {})()) //=> true
isGeneratorFn(null) //=> false
isGeneratorFn(function () {}) //=> false
isGeneratorFn(function * () {}) //=> true
MIT