> ## Documentation Index
> Fetch the complete documentation index at: https://docs.sourcery.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Yield-Outside-Generator

#### Sourcery rule id: `yield-outside-generator`

#### Description

Cannot use `yield` outside a generator function


#### Match

```javascript
yield
```



#### Explanation

The `yield` keyword is used to pause and resume a generator function.
If `yield` is used outside a generator function or method it will throw a `SyntaxError`
