Skip to content

Generators-Should-Yield

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.

Avoid writing generators that don’t yield any values.

function* wrongGen(x) {
let val = 0;
val += x;
}

Generators without yield statements are confusing, since they defy a reader’s expectations.