|
|
||||
|---|---|---|---|---|
| .. | ||||
| index.js | 11e3a9652a | преди 7 години | ||
| license | 11e3a9652a | преди 7 години | ||
| package.json | 11e3a9652a | преди 7 години | ||
| readme.md | 11e3a9652a | преди 7 години | ||
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