UNPKG

is-gen-fn

Version:

determine if a function is a generator function

19 lines (11 loc) 268 B
# 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