mirror of
https://github.com/Azure/setup-kubectl.git
synced 2026-07-30 10:29:28 +08:00
7f7e5ba5ea
Co-authored-by: Oliver King <oking3@uncc.edu>
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