mirror of
https://github.com/actions/setup-python.git
synced 2024-11-09 01:03:33 -05:00
.. | ||
index.d.ts | ||
index.js | ||
license | ||
package.json | ||
readme.md |
is-generator-fn
Check if something is a generator function
Install
$ npm install is-generator-fn
Usage
const isGeneratorFn = require('is-generator-fn');
isGeneratorFn(function * () {});
//=> true
isGeneratorFn(function () {});
//=> false
Related
- is - Type check values
License
MIT © Sindre Sorhus