# is-gen-fn

check if the value is a generator function. pulled from [co](https://github.com/visionmedia/co).

## Installation

    npm install is-gen-fn

## Usage

```js
isGenFn(function *() { ... }) // true
isGenFn(function () { ... }) // false
```

## License

MIT
