Files
30-seconds-of-code/snippets/js/s/is-generator-function.md
2023-05-07 16:07:29 +03:00

24 lines
581 B
Markdown

---
title: Value is generator function
type: snippet
language: javascript
tags: [type,function]
author: chalarangelo
cover: interior-4
dateModified: 2020-10-20T11:21:07+03:00
---
Checks if the given argument is a generator function.
- Use `Object.prototype.toString()` and `Function.prototype.call()` and check if the result is `'[object GeneratorFunction]'`.
```js
const isGeneratorFunction = val =>
Object.prototype.toString.call(val) === '[object GeneratorFunction]';
```
```js
isGeneratorFunction(function() {}); // false
isGeneratorFunction(function*() {}); // true
```