Skip to content

Commit

Permalink
use explicit undefined to ensure that all code points are covered
Browse files Browse the repository at this point in the history
  • Loading branch information
yaacovCR committed Sep 28, 2022
1 parent 3250ac3 commit 55c0056
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/execution/execute.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2056,8 +2056,8 @@ async function executeStreamIterator(

function filterSubsequentPayloads(
exeContext: ExecutionContext,
nullPath?: Path,
currentAsyncRecord?: AsyncPayloadRecord,
nullPath: Path | undefined,
currentAsyncRecord: AsyncPayloadRecord | undefined,
): void {
const nullPathArray = pathToArray(nullPath);
exeContext.subsequentPayloads.forEach((asyncRecord) => {
Expand Down

0 comments on commit 55c0056

Please sign in to comment.