- Complete React app with 7 developer tools - JSON Tool with visual structured editor - Serialize Tool with visual structured editor - URL, Base64, CSV/JSON, Beautifier, Diff tools - Responsive navigation with dropdown menu - Dark/light mode toggle - Mobile-responsive design with sticky header - All tools working with copy/paste functionality
34 lines
645 B
Markdown
34 lines
645 B
Markdown
# is-generator-fn [](https://travis-ci.org/sindresorhus/is-generator-fn)
|
|
|
|
> Check if something is a [generator function](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/function*)
|
|
|
|
|
|
## Install
|
|
|
|
```
|
|
$ npm install is-generator-fn
|
|
```
|
|
|
|
|
|
## Usage
|
|
|
|
```js
|
|
const isGeneratorFn = require('is-generator-fn');
|
|
|
|
isGeneratorFn(function * () {});
|
|
//=> true
|
|
|
|
isGeneratorFn(function () {});
|
|
//=> false
|
|
```
|
|
|
|
|
|
## Related
|
|
|
|
- [is](https://github.com/sindresorhus/is) - Type check values
|
|
|
|
|
|
## License
|
|
|
|
MIT © [Sindre Sorhus](https://sindresorhus.com)
|