mirror of
https://github.com/actions/setup-python.git
synced 2024-11-10 05:41:06 +07:00
645 B
645 B
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