|
|
1 bulan lalu | |
|---|---|---|
| .. | ||
| index.js | 1 bulan lalu | |
| license | 1 bulan lalu | |
| package.json | 1 bulan lalu | |
| readme.md | 1 bulan lalu | |
Check if something is a generator function
$ npm install --save is-generator-fn
const isGeneratorFn = require('is-generator-fn');
isGeneratorFn(function * () {});
//=> true
isGeneratorFn(function () {});
//=> false
MIT © Sindre Sorhus