Skip to content

Commit

Permalink
refactor(groupBy): remove unnecessary return
Browse files Browse the repository at this point in the history
  • Loading branch information
benlesh committed Sep 23, 2020
1 parent 6241024 commit 33ec81c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/internal/operators/groupBy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ export function groupBy<T, K, R>(
);

// Subscribe to the source
return source.subscribe(groupBySourceSubscriber);
source.subscribe(groupBySourceSubscriber);

/**
* Creates the actual grouped observable returned.
Expand Down

0 comments on commit 33ec81c

Please sign in to comment.