mirror of
https://github.com/Azure/k8s-deploy.git
synced 2026-07-30 14:49:27 +08:00
d7506e9702
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