mirror of
				https://github.com/actions/setup-node.git
				synced 2025-11-04 04:43:35 +00:00 
			
		
		
		
	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